Skip to content

Commit a7a0393

Browse files
committed
Replace '-' with '_' in method names
When names of methods aren't conventional, a minor tweak can allow using the auto-generated methods. For instance, the CNI defines entity named NetworkAttachmentDefinition. Its resource is 'network-attachment-definition', so to access the resource a call should be made for: /apis/k8s.cni.cncf.io/v1/namespaces/default/network-attachment-definitions/ovs-foreman However, with the current code, the generated methods for that resource rely on the reported resource definition: { "name"=>"network-attachment-definitions", "singularName"=>"network-attachment-definition", "namespaced"=>true, "kind"=>"NetworkAttachmentDefinition", "verbs"=>["delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"], "shortNames"=>["net-attach-def"] } And by that, the stored information for the entity looks like: <OpenStruct entity_type="NetworkAttachmentDefinition", resource_name="network-attachment-definitions", method_names=["networkattachmentdefinition", "network-attachment-definitions"]> This produces unsupported generated method names such as 'get_network-attachment-definitions' and 'watch_network-attachment-definitions' which prevents client to access that resource. The PR proposes to replace dashes with underscores to allow generation of legal methods names, regardless of the weird naming.
1 parent 4ad560b commit a7a0393

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Kubeclient release versioning follows [SemVer](https://semver.org/).
66

77
## Unreleased
88

9+
- For resources that contain dashes in name, the generated method names will replace the dash in names with underscores.
10+
911
### Security
1012
- Really made `Kubeclient::Config.new(data, nil)` prevent external file lookups.
1113
README documented this since 3.1.1 (#334) but alas that was a lie — absolute paths always worked.

lib/kubeclient/common.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,9 @@ def self.parse_definition(kind, name)
155155
singular_underscores = ClientMixin.underscore_entity(kind) # "component_status"
156156
method_names = [singular_underscores, singular_underscores + plural_suffix]
157157
else
158-
# Something weird, can't infer underscores for plural so just give them up
159-
method_names = [singular_name, name]
158+
# Something weird, can't infer plural method name, mitigate dashes in name to
159+
# underscores to allow legal method names
160+
method_names = [singular_name, name.tr('-', '_')]
160161
end
161162
end
162163

test/test_common.rb

+7
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,11 @@ def test_format_datetime_with_time
7474
formatted = client.send(:format_datetime, value)
7575
assert_equal(formatted, '2018-04-30T19:20:33.000000000+00:00')
7676
end
77+
78+
def test_parse_definition_with_dashes_in_resource_name
79+
method_names = Kubeclient::ClientMixin.parse_definition('TestNameWithDash',\
80+
'test-name-with-dashes').method_names
81+
assert_equal(method_names[0], 'testnamewithdash')
82+
assert_equal(method_names[1], 'test_name_with_dashes')
83+
end
7784
end

0 commit comments

Comments
 (0)