hammer_cli_foreman 3.6.0 → 3.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/doc/release_notes.md +13 -0
  3. data/lib/hammer_cli_foreman/command_extensions/update_common.rb +1 -1
  4. data/lib/hammer_cli_foreman/commands.rb +2 -4
  5. data/lib/hammer_cli_foreman/compute_resource/utils.rb +7 -7
  6. data/lib/hammer_cli_foreman/exception_handler.rb +2 -8
  7. data/lib/hammer_cli_foreman/external_usergroup.rb +0 -2
  8. data/lib/hammer_cli_foreman/resource_supported_test.rb +1 -1
  9. data/lib/hammer_cli_foreman/testing/api_expectations.rb +2 -2
  10. data/lib/hammer_cli_foreman/version.rb +1 -1
  11. data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  12. data/locale/cs_CZ/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  13. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  14. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  15. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  16. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  17. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  18. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  19. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  20. data/locale/ka/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  21. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  22. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  23. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  24. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  26. data/test/functional/associating_commands_test.rb +2 -2
  27. data/test/functional/bookmark_test.rb +2 -2
  28. data/test/functional/commands/list_test.rb +4 -4
  29. data/test/functional/filter_test.rb +1 -1
  30. data/test/functional/location_test.rb +1 -1
  31. data/test/functional/media_test.rb +2 -2
  32. data/test/functional/report_template_test.rb +4 -4
  33. data/test/functional/settings_test.rb +1 -1
  34. data/test/functional/virtual_machine_test.rb +4 -4
  35. data/test/test_helper.rb +0 -1
  36. data/test/unit/api/interactive_basic_auth_test.rb +2 -2
  37. data/test/unit/api/oauth/oauth_authentication_code_grant_test.rb +2 -2
  38. data/test/unit/api/oauth/oauth_password_grant_test.rb +2 -2
  39. data/test/unit/api/session_authenticator_wrapper_test.rb +7 -7
  40. data/test/unit/architecture_test.rb +12 -12
  41. data/test/unit/audit_test.rb +6 -6
  42. data/test/unit/auth_source_external.rb +5 -5
  43. data/test/unit/auth_source_ldap_test.rb +12 -12
  44. data/test/unit/bookmark_test.rb +12 -12
  45. data/test/unit/commands_test.rb +9 -9
  46. data/test/unit/common_parameter_test.rb +10 -10
  47. data/test/unit/compute_profile_test.rb +12 -12
  48. data/test/unit/compute_resource_test.rb +18 -18
  49. data/test/unit/config_report_test.rb +7 -7
  50. data/test/unit/domain_test.rb +16 -16
  51. data/test/unit/exception_handler_test.rb +1 -1
  52. data/test/unit/external_usergroup_test.rb +15 -15
  53. data/test/unit/fact_test.rb +3 -3
  54. data/test/unit/filter_test.rb +18 -18
  55. data/test/unit/helpers/command.rb +33 -33
  56. data/test/unit/helpers/resource_disabled.rb +1 -1
  57. data/test/unit/host_test.rb +35 -35
  58. data/test/unit/hostgroup_test.rb +18 -18
  59. data/test/unit/id_resolver_test.rb +1 -1
  60. data/test/unit/image_test.rb +15 -15
  61. data/test/unit/location_test.rb +12 -12
  62. data/test/unit/mail_notification_test.rb +6 -6
  63. data/test/unit/media_test.rb +12 -12
  64. data/test/unit/model_test.rb +12 -12
  65. data/test/unit/operating_system_test.rb +16 -16
  66. data/test/unit/option_builders_test.rb +2 -2
  67. data/test/unit/organization_test.rb +12 -12
  68. data/test/unit/output/formatters_test.rb +4 -4
  69. data/test/unit/param_filters_test.rb +2 -2
  70. data/test/unit/partition_table_test.rb +14 -14
  71. data/test/unit/realm_test.rb +12 -12
  72. data/test/unit/role_test.rb +14 -14
  73. data/test/unit/settings_test.rb +5 -5
  74. data/test/unit/smart_proxy_test.rb +14 -14
  75. data/test/unit/subnet_test.rb +12 -12
  76. data/test/unit/template_test.rb +16 -16
  77. data/test/unit/user_test.rb +12 -12
  78. data/test/unit/usergroup_test.rb +12 -12
  79. metadata +24 -22
@@ -7,20 +7,20 @@ describe HammerCLIForeman::AuthSourceExternal do
7
7
 
8
8
  include CommandTestHelper
9
9
 
10
- context 'ListCommand' do
10
+ describe 'ListCommand' do
11
11
  before :each do
12
12
  ResourceMocks.auth_source_external_index
13
13
  end
14
14
 
15
15
  let(:cmd) { HammerCLIForeman::AuthSourceExternal::ListCommand.new('', ctx) }
16
16
 
17
- context 'parameters' do
17
+ describe 'parameters' do
18
18
  it_should_accept 'no arguments'
19
19
  it_should_accept 'per page', ['--per-page=1']
20
20
  it_should_accept 'page', ['--page=2']
21
21
  end
22
22
 
23
- context 'output' do
23
+ describe 'output' do
24
24
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
25
25
 
26
26
  it_should_print_n_records 1
@@ -29,10 +29,10 @@ describe HammerCLIForeman::AuthSourceExternal do
29
29
  end
30
30
  end
31
31
 
32
- context 'UpdateCommand' do
32
+ describe 'UpdateCommand' do
33
33
  let(:cmd) { HammerCLIForeman::AuthSourceExternal::UpdateCommand.new('', ctx) }
34
34
 
35
- context 'parameters' do
35
+ describe 'parameters' do
36
36
  it_should_accept 'name', ['--name=External', '--new-name=auth-external-1']
37
37
  it_should_accept 'id', ['--id=11', '--new-name=auth-external-2']
38
38
  end
@@ -7,20 +7,20 @@ describe HammerCLIForeman::AuthSourceLdap do
7
7
 
8
8
  include CommandTestHelper
9
9
 
10
- context "ListCommand" do
10
+ describe "ListCommand" do
11
11
  before :each do
12
12
  ResourceMocks.auth_source_ldap_index
13
13
  end
14
14
 
15
15
  let(:cmd) { HammerCLIForeman::AuthSourceLdap::ListCommand.new("", ctx) }
16
16
 
17
- context "parameters" do
17
+ describe "parameters" do
18
18
  it_should_accept "no arguments"
19
19
  it_should_accept "per page", ["--per-page=1"]
20
20
  it_should_accept "page", ["--page=2"]
21
21
  end
22
22
 
23
- context "output" do
23
+ describe "output" do
24
24
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
25
25
 
26
26
  it_should_print_n_records 1
@@ -34,17 +34,17 @@ describe HammerCLIForeman::AuthSourceLdap do
34
34
  end
35
35
 
36
36
 
37
- context "InfoCommand" do
37
+ describe "InfoCommand" do
38
38
 
39
39
  let(:cmd) { HammerCLIForeman::AuthSourceLdap::InfoCommand.new("", ctx) }
40
40
 
41
- context "parameters" do
41
+ describe "parameters" do
42
42
  it_should_accept "id", ["--id=1"]
43
43
  it_should_accept "name", ["--name=arch"]
44
44
  #it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
45
45
  end
46
46
 
47
- context "output" do
47
+ describe "output" do
48
48
  with_params ["--id=1"] do
49
49
  it_should_print_n_records 1
50
50
  it_should_print_columns ["Server", "Account", "Attribute mappings", "Locations", "Organizations"]
@@ -54,11 +54,11 @@ describe HammerCLIForeman::AuthSourceLdap do
54
54
  end
55
55
 
56
56
 
57
- context "CreateCommand" do
57
+ describe "CreateCommand" do
58
58
 
59
59
  let(:cmd) { HammerCLIForeman::AuthSourceLdap::CreateCommand.new("", ctx) }
60
60
 
61
- context "parameters" do
61
+ describe "parameters" do
62
62
  it_should_accept "all required params", ["--name=arch", "--host=my.host"]
63
63
  # it_should_fail_with "name missing", []
64
64
  # TODO: temporarily disabled, parameters are checked in the api
@@ -67,11 +67,11 @@ describe HammerCLIForeman::AuthSourceLdap do
67
67
  end
68
68
 
69
69
 
70
- context "DeleteCommand" do
70
+ describe "DeleteCommand" do
71
71
 
72
72
  let(:cmd) { HammerCLIForeman::AuthSourceLdap::DeleteCommand.new("", ctx) }
73
73
 
74
- context "parameters" do
74
+ describe "parameters" do
75
75
  it_should_accept "name", ["--name=arch"]
76
76
  it_should_accept "id", ["--id=1"]
77
77
  # it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -80,11 +80,11 @@ describe HammerCLIForeman::AuthSourceLdap do
80
80
  end
81
81
 
82
82
 
83
- context "UpdateCommand" do
83
+ describe "UpdateCommand" do
84
84
 
85
85
  let(:cmd) { HammerCLIForeman::AuthSourceLdap::UpdateCommand.new("", ctx) }
86
86
 
87
- context "parameters" do
87
+ describe "parameters" do
88
88
  it_should_accept "name", ["--name=arch", "--new-name=arch2"]
89
89
  it_should_accept "id", ["--id=1", "--new-name=arch2"]
90
90
  # it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -8,20 +8,20 @@ require 'hammer_cli_foreman/bookmark'
8
8
  describe HammerCLIForeman::Bookmark do
9
9
  include CommandTestHelper
10
10
 
11
- context 'ListCommand' do
11
+ describe 'ListCommand' do
12
12
  before :each do
13
13
  ResourceMocks.bookmarks
14
14
  end
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::Bookmark::ListCommand.new('', ctx) }
17
17
 
18
- context 'parameters' do
18
+ describe 'parameters' do
19
19
  it_should_accept 'no arguments'
20
20
  it_should_accept 'organization', ['--organization-id=1']
21
21
  it_should_accept 'location', ['--location-id=1']
22
22
  end
23
23
 
24
- context 'output' do
24
+ describe 'output' do
25
25
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
26
26
 
27
27
  it_should_print_n_records
@@ -35,17 +35,17 @@ describe HammerCLIForeman::Bookmark do
35
35
  end
36
36
  end
37
37
 
38
- context 'InfoCommand' do
38
+ describe 'InfoCommand' do
39
39
  let(:cmd) { HammerCLIForeman::Bookmark::InfoCommand.new('', ctx) }
40
40
 
41
- context 'parameters' do
41
+ describe 'parameters' do
42
42
  it_should_accept 'id', ['--id=1']
43
43
  it_should_accept 'name', ['--name=active']
44
44
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
45
45
  it_should_accept 'location', %w[--id=1 --location-id=1]
46
46
  end
47
47
 
48
- context 'output' do
48
+ describe 'output' do
49
49
  with_params ['--id=1'] do
50
50
  it_should_print_n_records 1
51
51
  it_should_print_column 'Id'
@@ -59,10 +59,10 @@ describe HammerCLIForeman::Bookmark do
59
59
  end
60
60
  end
61
61
 
62
- context 'CreateCommand' do
62
+ describe 'CreateCommand' do
63
63
  let(:cmd) { HammerCLIForeman::Bookmark::CreateCommand.new('', ctx) }
64
64
 
65
- context 'parameters' do
65
+ describe 'parameters' do
66
66
  it_should_accept 'name, public, controller, query, organization, location',
67
67
  ['--name=active', '--public=1', '--controller=hosts', '--organization-id=1', '--location-id=1',
68
68
  '--query=last_report > "35 minutes ago" and (status.applied > 0 or status.restarted > 0)']
@@ -70,10 +70,10 @@ describe HammerCLIForeman::Bookmark do
70
70
 
71
71
  end
72
72
 
73
- context 'DeleteCommand' do
73
+ describe 'DeleteCommand' do
74
74
  let(:cmd) { HammerCLIForeman::Bookmark::DeleteCommand.new('', ctx) }
75
75
 
76
- context 'parameters' do
76
+ describe 'parameters' do
77
77
  it_should_accept 'id', ['--id=1']
78
78
  it_should_accept 'name', ['--name=active']
79
79
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -81,10 +81,10 @@ describe HammerCLIForeman::Bookmark do
81
81
  end
82
82
  end
83
83
 
84
- context 'UpdateCommand' do
84
+ describe 'UpdateCommand' do
85
85
  let(:cmd) { HammerCLIForeman::Bookmark::UpdateCommand.new('', ctx) }
86
86
 
87
- context 'parameters' do
87
+ describe 'parameters' do
88
88
  it_should_accept 'id', ['--id=1']
89
89
  it_should_accept 'name', ['--name=active']
90
90
  it_should_accept 'name, public, controller, query, organization, location',
@@ -7,7 +7,7 @@ describe HammerCLIForeman do
7
7
  HammerCLI::Settings.load({:_params => {:interactive => false}})
8
8
  end
9
9
 
10
- context "collection_to_common_format" do
10
+ describe "collection_to_common_format" do
11
11
 
12
12
  let(:kind) { { "name" => "PXELinux", "id" => 1 } }
13
13
 
@@ -57,7 +57,7 @@ describe HammerCLIForeman do
57
57
  end
58
58
 
59
59
 
60
- context "record_to_common_format" do
60
+ describe "record_to_common_format" do
61
61
 
62
62
  let(:arch) { { "name" => "x86_64", "id" => 1 } }
63
63
 
@@ -79,7 +79,7 @@ describe HammerCLIForeman do
79
79
  end
80
80
  end
81
81
 
82
- context "Create command" do
82
+ describe "Create command" do
83
83
  it "should format created entity in csv output" do
84
84
  ResourceMocks.mock_action_call(:architectures, :create, {
85
85
  "architecture" => {
@@ -91,12 +91,12 @@ describe HammerCLIForeman do
91
91
  }
92
92
  })
93
93
  arch = HammerCLIForeman::Architecture::CreateCommand.new("", { :adapter => :csv, :interactive => false })
94
- out, err = capture_io { arch.run(["--name='i386'"]) }
94
+ out, _ = capture_io { arch.run(["--name='i386'"]) }
95
95
  _(out).must_match("Message,Id,Name\nArchitecture created.,3,i386\n")
96
96
  end
97
97
  end
98
98
 
99
- context "AddAssociatedCommand" do
99
+ describe "AddAssociatedCommand" do
100
100
  it "should associate resource" do
101
101
  ResourceMocks.mock_action_calls(
102
102
  [:organizations, :show, { "id" => 1, "domain_ids" => [2] }],
@@ -132,7 +132,7 @@ describe HammerCLIForeman do
132
132
  end
133
133
  end
134
134
 
135
- context "ListSearchCommand" do
135
+ describe "ListSearchCommand" do
136
136
  it "should find correct results" do
137
137
  ResourceMocks.mock_action_calls(
138
138
  [:hosts, :index, [{ "id" => 2, "name" => "random-host", "ip" => "192.168.100.112", "mac" => "6e:4b:3c:2c:8a:0a" }]],
@@ -151,7 +151,7 @@ describe HammerCLIForeman do
151
151
  end
152
152
  end
153
153
  comm = DomainOuter::HostsCommand.new("", { :adapter => :csv, :interactive => false })
154
- out, err = capture_io { comm.run(["--id=5"]) }
154
+ out, _ = capture_io { comm.run(["--id=5"]) }
155
155
  _(out).must_equal "Id,Name,Operating System,Host Group,IP,MAC\n2,random-host,,,192.168.100.112,6e:4b:3c:2c:8a:0a\n"
156
156
  end
157
157
  end
@@ -180,7 +180,7 @@ describe HammerCLIForeman::Command do
180
180
  HammerCLIForeman.foreman_api_connection.api.resource(:locations)
181
181
  )
182
182
  )
183
- out, err = capture_io do
183
+ _, err = capture_io do
184
184
  _(com.run(['--location', 'loc'])).wont_equal HammerCLI::EX_OK
185
185
  end
186
186
  _(err).must_equal "Error: Could not find location, please set one of options --location-id, --location, --location-title.\n"
@@ -203,7 +203,7 @@ describe HammerCLIForeman::Command do
203
203
 
204
204
  ResourceMocks.mock_action_call(:domains, :index, [])
205
205
 
206
- out, err = capture_io do
206
+ _out, _err = capture_io do
207
207
  _(com.run([])).must_equal HammerCLI::EX_OK
208
208
  end
209
209
 
@@ -7,19 +7,19 @@ describe HammerCLIForeman::CommonParameter do
7
7
 
8
8
  include CommandTestHelper
9
9
 
10
- context "ListCommand" do
10
+ describe "ListCommand" do
11
11
  before do
12
12
  ResourceMocks.mock_action_call(:common_parameters, :index, [])
13
13
  end
14
14
 
15
15
  let(:cmd) { HammerCLIForeman::CommonParameter::ListCommand.new("", ctx) }
16
16
 
17
- context "parameters" do
17
+ describe "parameters" do
18
18
  it_should_accept "no arguments"
19
19
  it_should_accept_search_params
20
20
  end
21
21
 
22
- context "output" do
22
+ describe "output" do
23
23
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
24
24
 
25
25
  it_should_print_n_records
@@ -29,21 +29,21 @@ describe HammerCLIForeman::CommonParameter do
29
29
  end
30
30
 
31
31
 
32
- context "SetCommand" do
32
+ describe "SetCommand" do
33
33
  before do
34
34
  ResourceMocks.common_parameter_list
35
35
  end
36
36
 
37
37
  let(:cmd) { HammerCLIForeman::CommonParameter::SetCommand.new("", ctx) }
38
38
 
39
- context "parameters" do
39
+ describe "parameters" do
40
40
  it_should_accept "name, value, parameter-type and hidden-value", ["--name=param", "--value=val", "--parameter-type=string", "--hidden-value=true"]
41
41
  # it_should_fail_with "name missing", ["--value=val"]
42
42
  # it_should_fail_with "value missing", ["--name=param"]
43
43
  # TODO: temporarily disabled, parameters are checked by the api
44
44
  end
45
45
 
46
- context "adding params" do
46
+ describe "adding params" do
47
47
  before :each do
48
48
  ResourceMocks.mock_action_calls(
49
49
  [:common_parameters, :index, []],
@@ -56,7 +56,7 @@ describe HammerCLIForeman::CommonParameter do
56
56
  end
57
57
  end
58
58
 
59
- context "updating params" do
59
+ describe "updating params" do
60
60
  before :each do
61
61
  ResourceMocks.mock_action_calls(
62
62
  [:common_parameters, :index, [{'name' => 'param', 'value' => 'test'}]],
@@ -70,7 +70,7 @@ describe HammerCLIForeman::CommonParameter do
70
70
  end
71
71
  end
72
72
 
73
- context "adding params with parameter type" do
73
+ describe "adding params with parameter type" do
74
74
  before :each do
75
75
  ResourceMocks.mock_action_calls(
76
76
  [:common_parameters, :index, []],
@@ -85,11 +85,11 @@ describe HammerCLIForeman::CommonParameter do
85
85
  end
86
86
 
87
87
 
88
- context "DeleteCommand" do
88
+ describe "DeleteCommand" do
89
89
 
90
90
  let(:cmd) { HammerCLIForeman::CommonParameter::DeleteCommand.new("", ctx) }
91
91
 
92
- context "parameters" do
92
+ describe "parameters" do
93
93
  it_should_accept "name", ["--name=arch"]
94
94
  # it_should_fail_with "name missing", []
95
95
  # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -8,20 +8,20 @@ require 'hammer_cli_foreman/compute_profile'
8
8
  describe HammerCLIForeman::ComputeProfile do
9
9
  include CommandTestHelper
10
10
 
11
- context 'ListCommand' do
11
+ describe 'ListCommand' do
12
12
  before :each do
13
13
  ResourceMocks.compute_profiles
14
14
  end
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::ComputeProfile::ListCommand.new('', ctx) }
17
17
 
18
- context 'parameters' do
18
+ describe 'parameters' do
19
19
  it_should_accept 'no arguments'
20
20
  it_should_accept 'organization', ['--organization-id=1']
21
21
  it_should_accept 'location', ['--location-id=1']
22
22
  end
23
23
 
24
- context 'output' do
24
+ describe 'output' do
25
25
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
26
26
 
27
27
  it_should_print_n_records
@@ -30,17 +30,17 @@ describe HammerCLIForeman::ComputeProfile do
30
30
  end
31
31
  end
32
32
 
33
- context 'InfoCommand' do
33
+ describe 'InfoCommand' do
34
34
  let(:cmd) { HammerCLIForeman::ComputeProfile::InfoCommand.new('', ctx) }
35
35
 
36
- context 'parameters' do
36
+ describe 'parameters' do
37
37
  it_should_accept 'id', ['--id=1']
38
38
  it_should_accept 'name', ['--name=test']
39
39
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
40
40
  it_should_accept 'location', %w[--id=1 --location-id=1]
41
41
  end
42
42
 
43
- context 'output' do
43
+ describe 'output' do
44
44
  with_params ['--id=1'] do
45
45
  it_should_print_n_records 1
46
46
  it_should_print_column 'Id'
@@ -52,10 +52,10 @@ describe HammerCLIForeman::ComputeProfile do
52
52
  end
53
53
  end
54
54
 
55
- context 'CreateCommand' do
55
+ describe 'CreateCommand' do
56
56
  let(:cmd) { HammerCLIForeman::ComputeProfile::CreateCommand.new('', ctx) }
57
57
 
58
- context 'parameters' do
58
+ describe 'parameters' do
59
59
  it_should_accept 'name', ['--name=test']
60
60
  it_should_accept 'organization', %w[--name=test --organization-id=1]
61
61
  it_should_accept 'location', %w[--name=test --location-id=1]
@@ -63,10 +63,10 @@ describe HammerCLIForeman::ComputeProfile do
63
63
 
64
64
  end
65
65
 
66
- context 'DeleteCommand' do
66
+ describe 'DeleteCommand' do
67
67
  let(:cmd) { HammerCLIForeman::ComputeProfile::DeleteCommand.new('', ctx) }
68
68
 
69
- context 'parameters' do
69
+ describe 'parameters' do
70
70
  it_should_accept 'id', ['--id=1']
71
71
  it_should_accept 'name', ['--name=test']
72
72
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -74,10 +74,10 @@ describe HammerCLIForeman::ComputeProfile do
74
74
  end
75
75
  end
76
76
 
77
- context 'UpdateCommand' do
77
+ describe 'UpdateCommand' do
78
78
  let(:cmd) { HammerCLIForeman::ComputeProfile::UpdateCommand.new('', ctx) }
79
79
 
80
- context 'parameters' do
80
+ describe 'parameters' do
81
81
  it_should_accept 'id', ['--id=1']
82
82
  it_should_accept 'name', ['--name=test']
83
83
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -8,19 +8,19 @@ describe HammerCLIForeman::ComputeResource do
8
8
 
9
9
  include CommandTestHelper
10
10
 
11
- context "ListCommand" do
11
+ describe "ListCommand" do
12
12
  before do
13
13
  ResourceMocks.mock_action_call(:compute_resources, :index, [])
14
14
  end
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::ComputeResource::ListCommand.new("", ctx) }
17
17
 
18
- context "parameters" do
18
+ describe "parameters" do
19
19
  it_should_accept "no arguments"
20
20
  it_should_accept_search_params
21
21
  end
22
22
 
23
- context "output" do
23
+ describe "output" do
24
24
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
25
25
 
26
26
  it_should_print_n_records
@@ -30,20 +30,20 @@ describe HammerCLIForeman::ComputeResource do
30
30
  end
31
31
 
32
32
 
33
- context "InfoCommand" do
33
+ describe "InfoCommand" do
34
34
  before do
35
35
  ResourceMocks.compute_resource_show
36
36
  end
37
37
 
38
38
  let(:cmd) { HammerCLIForeman::ComputeResource::InfoCommand.new("", ctx) }
39
39
 
40
- context "parameters" do
40
+ describe "parameters" do
41
41
  it_should_accept "id", ["--id=1"]
42
42
  it_should_accept "name", ["--name=arch"]
43
43
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
44
44
  end
45
45
 
46
- context "output" do
46
+ describe "output" do
47
47
  with_params ["--id=1"] do
48
48
  it_should_print_n_records 1
49
49
  it_should_print_columns ["Name", "Id", "Provider", "Url"]
@@ -53,11 +53,11 @@ describe HammerCLIForeman::ComputeResource do
53
53
  end
54
54
 
55
55
 
56
- context "CreateCommand" do
56
+ describe "CreateCommand" do
57
57
 
58
58
  let(:cmd) { HammerCLIForeman::ComputeResource::CreateCommand.new("", ctx) }
59
59
 
60
- context "parameters" do
60
+ describe "parameters" do
61
61
  it_should_accept "name, url, provider", ["--name=arch", "--url=http://some.org", "--provider=Libvirt"]
62
62
  # it_should_fail_with "name missing", ["--url=http://some.org", "--provider=Libvirt"]
63
63
  # it_should_fail_with "url missing", ["--name=arch", "--provider=Libvirt"]
@@ -68,11 +68,11 @@ describe HammerCLIForeman::ComputeResource do
68
68
  end
69
69
 
70
70
 
71
- context "DeleteCommand" do
71
+ describe "DeleteCommand" do
72
72
 
73
73
  let(:cmd) { HammerCLIForeman::ComputeResource::DeleteCommand.new("", ctx) }
74
74
 
75
- context "parameters" do
75
+ describe "parameters" do
76
76
  it_should_accept "name", ["--name=arch"]
77
77
  it_should_accept "id", ["--id=1"]
78
78
  # it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -81,11 +81,11 @@ describe HammerCLIForeman::ComputeResource do
81
81
  end
82
82
 
83
83
 
84
- context "UpdateCommand" do
84
+ describe "UpdateCommand" do
85
85
 
86
86
  let(:cmd) { HammerCLIForeman::ComputeResource::UpdateCommand.new("", ctx) }
87
87
 
88
- context "parameters" do
88
+ describe "parameters" do
89
89
  it_should_accept "name", ["--name=arch", "--new-name=arch2"]
90
90
  it_should_accept "id", ["--id=1", "--new-name=arch2"]
91
91
  # it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -94,19 +94,19 @@ describe HammerCLIForeman::ComputeResource do
94
94
 
95
95
  end
96
96
 
97
- context "AvailableClustersCommand" do
97
+ describe "AvailableClustersCommand" do
98
98
  before do
99
99
  ResourceMocks.compute_resources_available_clusters
100
100
  end
101
101
 
102
102
  let(:cmd) { HammerCLIForeman::ComputeResource::AvailableClustersCommand.new("", ctx) }
103
103
 
104
- context "parameters" do
104
+ describe "parameters" do
105
105
  it_should_accept "id", ["--id=1"]
106
106
  it_should_accept "name", ["--name=domain-c7"]
107
107
  end
108
108
 
109
- context "output" do
109
+ describe "output" do
110
110
  let(:expected_record_count) { count_records(cmd.resource.call(:available_clusters)) }
111
111
 
112
112
  with_params ["--name=testcr"] do
@@ -116,21 +116,21 @@ describe HammerCLIForeman::ComputeResource do
116
116
  end
117
117
  end
118
118
 
119
- context "AvailableNetworksCommand" do
119
+ describe "AvailableNetworksCommand" do
120
120
  before do
121
121
  ResourceMocks.compute_resources_available_networks
122
122
  end
123
123
 
124
124
  let(:cmd) { HammerCLIForeman::ComputeResource::AvailableNetworksCommand.new("", ctx) }
125
125
 
126
- context "parameters" do
126
+ describe "parameters" do
127
127
  it_should_accept "id", ["--id=1"]
128
128
  it_should_accept "name", ["--name=arch"]
129
129
  # it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
130
130
  # it_should_fail_with "name or id missing", ["--new-name=arch2"] # TODO: temporarily disabled, parameters are checked in the id resolver
131
131
  end
132
132
 
133
- context "output" do
133
+ describe "output" do
134
134
  let(:expected_record_count) { count_records(cmd.resource.call(:available_networks)) }
135
135
 
136
136
  with_params ["--name=testcr"] do
@@ -7,19 +7,19 @@ describe HammerCLIForeman::ConfigReport do
7
7
 
8
8
  include CommandTestHelper
9
9
 
10
- context "ListCommand" do
10
+ describe "ListCommand" do
11
11
  before do
12
12
  ResourceMocks.mock_action_call(:config_reports, :index, [])
13
13
  end
14
14
 
15
15
  let(:cmd) { HammerCLIForeman::ConfigReport::ListCommand.new("", ctx) }
16
16
 
17
- context "parameters" do
17
+ describe "parameters" do
18
18
  it_should_accept "no arguments"
19
19
  it_should_accept_search_params
20
20
  end
21
21
 
22
- context "output" do
22
+ describe "output" do
23
23
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
24
24
 
25
25
  it_should_print_n_records
@@ -38,11 +38,11 @@ describe HammerCLIForeman::ConfigReport do
38
38
  end
39
39
 
40
40
 
41
- context "InfoCommand" do
41
+ describe "InfoCommand" do
42
42
 
43
43
  let(:cmd) { HammerCLIForeman::ConfigReport::InfoCommand.new("", ctx) }
44
44
 
45
- context "parameters" do
45
+ describe "parameters" do
46
46
  it_should_accept "id", ["--id=1"]
47
47
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
48
48
  end
@@ -50,11 +50,11 @@ describe HammerCLIForeman::ConfigReport do
50
50
  end
51
51
 
52
52
 
53
- context "DeleteCommand" do
53
+ describe "DeleteCommand" do
54
54
 
55
55
  let(:cmd) { HammerCLIForeman::ConfigReport::DeleteCommand.new("", ctx) }
56
56
 
57
- context "parameters" do
57
+ describe "parameters" do
58
58
  it_should_accept "id", ["--id=1"]
59
59
  # it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
60
60
  end