hammer_cli_katello 0.11.4 → 0.11.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c7daca81957e1075d78b882142e6977c21c2a7e3
4
- data.tar.gz: 67235e007eb88ef416b84ca73dcfa970dd3e9ae0
3
+ metadata.gz: fc2a8fc17f230d1f7b33ba733d185cc5937845e0
4
+ data.tar.gz: b88aa839da9f19ba9e3145ee6f6c546c0ea6f37a
5
5
  SHA512:
6
- metadata.gz: f7e11cbfd899a41fe3a7b62c4f081a1efff0cbe9d9c86e58e0b379954287124dcdfcfb35dc4734a92f35dc43d805e83530220e77ba9fbd63ae70d205d2db9408
7
- data.tar.gz: 13ff2b952468f66d633df88c1db229ccb3b5b4b38367d9624daa9bc0226938787653e90d6acec3784a48d3a65565f298a896ad90504dafb008a2b649f9c77a9c
6
+ metadata.gz: c720b5cc0784c7067ff5f53a3a269dbb012b340423e0307786ab71797193d5067de3258f6ad4633ed41262dc56b97aadac03a256f091a947ead126b60dc9311a
7
+ data.tar.gz: c382f82363d5b952baecd4e9a598432d3da457575ddc039e038ac0ab5d18ee470118ae4658c6d2a551d070dce5a3e8d01bb34c21f45e5b02c587c0fc416e2b42
@@ -11,10 +11,10 @@ module HammerCLIKatello
11
11
  option "--content-label", "CONTENT_LABEL", _("Label of the content"),
12
12
  :attribute_name => :option_content_label, :required => true
13
13
 
14
- option "--name", "NAME", _("Name/Key to override. " \
15
- "To enable or disable a repo select 'enabled'." \
14
+ option "--override-name", "OVERRIDE_NAME", _("Override parameter key or name.\n" \
15
+ "To enable or disable a repo select 'enabled'.\n" \
16
16
  "Default value: enabled"),
17
- :attribute_name => :option_name, :default => "enabled"
17
+ :attribute_name => :option_override_name, :default => "enabled"
18
18
 
19
19
  option "--value", "VALUE", _("Override value. " \
20
20
  "Note for repo enablement you can use a boolean value"),
@@ -39,7 +39,7 @@ module HammerCLIKatello
39
39
  override = { 'content_label' => option_content_label }
40
40
  override['value'] = option_value if option_value
41
41
  override['remove'] = true if option_remove?
42
- override['name'] = option_name
42
+ override['name'] = option_override_name
43
43
  opts['content_overrides'] = [override]
44
44
  end
45
45
  end
@@ -14,7 +14,7 @@ module HammerCLIKatello
14
14
  field :gpgUrl, _("GPG Key")
15
15
  field :label, _("Label")
16
16
  end
17
- field :enabled, _("Enabled?"), Fields::Boolean
17
+ field :enabled, _("Default Enabled?"), Fields::Boolean
18
18
  field :override_description, _("Override")
19
19
  end
20
20
  build_options
@@ -1,5 +1,5 @@
1
1
  module HammerCLIKatello
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.11.4')
3
+ @version ||= Gem::Version.new('0.11.5')
4
4
  end
5
5
  end
@@ -28,7 +28,8 @@ describe 'activation-key content-override' do
28
28
  value = '1'
29
29
  id = 20
30
30
  name = 'protected'
31
- params = ["--id=#{id}", "--content-label=#{label}", "--value=#{value}", "--name=#{name}"]
31
+ params = ["--id=#{id}", "--content-label=#{label}", "--value=#{value}",
32
+ "--override-name=#{name}"]
32
33
  ex = api_expects(:activation_keys, :content_override) do |par|
33
34
  par['id'] == id && par["content_overrides"][0]['content_label'] == label &&
34
35
  par['content_overrides'][0]['value'] == value &&
@@ -63,7 +64,7 @@ describe 'activation-key content-override' do
63
64
  label = "foo"
64
65
  id = 20
65
66
  name = 'protected'
66
- params = ["--id=#{id}", "--content-label=#{label}", "--name=#{name}", "--remove"]
67
+ params = ["--id=#{id}", "--content-label=#{label}", "--override-name=#{name}", "--remove"]
67
68
  ex = api_expects(:activation_keys, :content_override) do |par|
68
69
  par['id'] == id && par["content_overrides"][0]['content_label'] == label &&
69
70
  par['content_overrides'][0]['remove'] == true &&
@@ -82,7 +83,7 @@ describe 'activation-key content-override' do
82
83
  label = "foo"
83
84
  id = 20
84
85
  name = 'protected'
85
- params = ["--id=#{id}", "--content-label=#{label}", "--name=#{name}"]
86
+ params = ["--id=#{id}", "--content-label=#{label}", "--override-name=#{name}"]
86
87
  result = run_cmd(@cmd + params)
87
88
 
88
89
  assert(result.err[/At least one of options --remove, --value is required/],
@@ -4,9 +4,9 @@ describe 'listing available product content' do
4
4
  let(:activation_key_id) { 1 }
5
5
  let(:empty_response_table) do
6
6
  <<eostring
7
- ---|------|------|-----|---------|-------|----------|---------
8
- ID | NAME | TYPE | URL | GPG KEY | LABEL | ENABLED? | OVERRIDE
9
- ---|------|------|-----|---------|-------|----------|---------
7
+ ---|------|------|-----|---------|-------|------------------|---------
8
+ ID | NAME | TYPE | URL | GPG KEY | LABEL | DEFAULT ENABLED? | OVERRIDE
9
+ ---|------|------|-----|---------|-------|------------------|---------
10
10
  eostring
11
11
  end
12
12
 
@@ -32,7 +32,8 @@ describe 'host subscription content-override' do
32
32
  value = '1'
33
33
  id = '20'
34
34
  name = 'protected'
35
- params = ["--host-id=#{id}", "--content-label=#{label}", "--value=#{value}", "--name=#{name}"]
35
+ params = ["--host-id=#{id}", "--content-label=#{label}", "--value=#{value}",
36
+ "--override-name=#{name}"]
36
37
  ex = api_expects(:host_subscriptions, :content_override, "content override") do |par|
37
38
  par['host_id'].to_s == id && par["content_overrides"][0]['content_label'] == label &&
38
39
  par['content_overrides'][0]['value'] == value &&
@@ -67,7 +68,7 @@ describe 'host subscription content-override' do
67
68
  label = "foo"
68
69
  id = '20'
69
70
  name = 'protected'
70
- params = ["--host-id=#{id}", "--content-label=#{label}", "--name=#{name}", "--remove"]
71
+ params = ["--host-id=#{id}", "--content-label=#{label}", "--override-name=#{name}", "--remove"]
71
72
  ex = api_expects(:host_subscriptions, :content_override, "content override") do |par|
72
73
  par['host_id'].to_s == id && par["content_overrides"][0]['content_label'] == label &&
73
74
  par['content_overrides'][0]['remove'] == true &&
@@ -86,7 +87,7 @@ describe 'host subscription content-override' do
86
87
  label = "foo"
87
88
  id = '20'
88
89
  name = 'protected'
89
- params = ["--host-id=#{id}", "--content-label=#{label}", "--name=#{name}"]
90
+ params = ["--host-id=#{id}", "--content-label=#{label}", "--override-name=#{name}"]
90
91
  result = run_cmd(@cmd + params)
91
92
 
92
93
  assert(result.err[/At least one of options --remove, --value is required/],
@@ -8,9 +8,9 @@ describe 'listing available product content' do
8
8
  let(:host_id) { 1 }
9
9
  let(:empty_response_table) do
10
10
  <<eostring
11
- ---|------|------|-----|---------|-------|----------|---------
12
- ID | NAME | TYPE | URL | GPG KEY | LABEL | ENABLED? | OVERRIDE
13
- ---|------|------|-----|---------|-------|----------|---------
11
+ ---|------|------|-----|---------|-------|------------------|---------
12
+ ID | NAME | TYPE | URL | GPG KEY | LABEL | DEFAULT ENABLED? | OVERRIDE
13
+ ---|------|------|-----|---------|-------|------------------|---------
14
14
  eostring
15
15
  end
16
16
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hammer_cli_katello
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.4
4
+ version: 0.11.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Price
@@ -34,7 +34,7 @@ authors:
34
34
  autorequire:
35
35
  bindir: bin
36
36
  cert_chain: []
37
- date: 2017-11-30 00:00:00.000000000 Z
37
+ date: 2018-02-02 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: hammer_cli