hammer_cli_foreman 3.7.0 → 3.8.0

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.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/doc/release_notes.md +7 -0
  3. data/lib/hammer_cli_foreman/version.rb +1 -1
  4. data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  5. data/locale/cs_CZ/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  6. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  7. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  8. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  9. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  10. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  11. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  12. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  13. data/locale/ka/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  14. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  15. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  16. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  17. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  18. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  19. data/test/functional/associating_commands_test.rb +2 -2
  20. data/test/functional/commands/list_test.rb +4 -4
  21. data/test/functional/report_template_test.rb +4 -4
  22. data/test/functional/virtual_machine_test.rb +4 -4
  23. data/test/test_helper.rb +0 -1
  24. data/test/unit/api/interactive_basic_auth_test.rb +2 -2
  25. data/test/unit/api/oauth/oauth_authentication_code_grant_test.rb +2 -2
  26. data/test/unit/api/oauth/oauth_password_grant_test.rb +2 -2
  27. data/test/unit/api/session_authenticator_wrapper_test.rb +6 -6
  28. data/test/unit/architecture_test.rb +12 -12
  29. data/test/unit/audit_test.rb +6 -6
  30. data/test/unit/auth_source_external.rb +5 -5
  31. data/test/unit/auth_source_ldap_test.rb +12 -12
  32. data/test/unit/bookmark_test.rb +12 -12
  33. data/test/unit/commands_test.rb +5 -5
  34. data/test/unit/common_parameter_test.rb +10 -10
  35. data/test/unit/compute_profile_test.rb +12 -12
  36. data/test/unit/compute_resource_test.rb +18 -18
  37. data/test/unit/config_report_test.rb +7 -7
  38. data/test/unit/domain_test.rb +16 -16
  39. data/test/unit/exception_handler_test.rb +1 -1
  40. data/test/unit/external_usergroup_test.rb +15 -15
  41. data/test/unit/fact_test.rb +3 -3
  42. data/test/unit/filter_test.rb +18 -18
  43. data/test/unit/helpers/command.rb +1 -1
  44. data/test/unit/helpers/resource_disabled.rb +1 -1
  45. data/test/unit/host_test.rb +35 -35
  46. data/test/unit/hostgroup_test.rb +18 -18
  47. data/test/unit/image_test.rb +15 -15
  48. data/test/unit/location_test.rb +12 -12
  49. data/test/unit/mail_notification_test.rb +6 -6
  50. data/test/unit/media_test.rb +12 -12
  51. data/test/unit/model_test.rb +12 -12
  52. data/test/unit/operating_system_test.rb +16 -16
  53. data/test/unit/option_builders_test.rb +2 -2
  54. data/test/unit/organization_test.rb +12 -12
  55. data/test/unit/output/formatters_test.rb +4 -4
  56. data/test/unit/param_filters_test.rb +2 -2
  57. data/test/unit/partition_table_test.rb +14 -14
  58. data/test/unit/realm_test.rb +12 -12
  59. data/test/unit/role_test.rb +14 -14
  60. data/test/unit/settings_test.rb +5 -5
  61. data/test/unit/smart_proxy_test.rb +14 -14
  62. data/test/unit/subnet_test.rb +12 -12
  63. data/test/unit/template_test.rb +16 -16
  64. data/test/unit/user_test.rb +12 -12
  65. data/test/unit/usergroup_test.rb +12 -12
  66. metadata +29 -27
@@ -8,7 +8,7 @@ describe HammerCLIForeman::Location do
8
8
  include CommandTestHelper
9
9
  extend ResourceDisabled
10
10
 
11
- context "ListCommand" do
11
+ describe "ListCommand" do
12
12
 
13
13
  let(:cmd) { HammerCLIForeman::Location::ListCommand.new("", ctx) }
14
14
 
@@ -16,12 +16,12 @@ describe HammerCLIForeman::Location do
16
16
  ResourceMocks.locations_index
17
17
  end
18
18
 
19
- context "parameters" do
19
+ describe "parameters" do
20
20
  it_should_accept "no arguments"
21
21
  it_should_accept_search_params
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
@@ -34,7 +34,7 @@ describe HammerCLIForeman::Location do
34
34
  end
35
35
 
36
36
 
37
- context "InfoCommand" do
37
+ describe "InfoCommand" do
38
38
 
39
39
  let(:cmd) { HammerCLIForeman::Location::InfoCommand.new("", ctx) }
40
40
 
@@ -42,13 +42,13 @@ describe HammerCLIForeman::Location do
42
42
  ResourceMocks.locations_show
43
43
  end
44
44
 
45
- context "parameters" do
45
+ describe "parameters" do
46
46
  it_should_accept "id", ["--id=1"]
47
47
  it_should_accept "name", ["--name=arch"]
48
48
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
49
49
  end
50
50
 
51
- context "output" do
51
+ describe "output" do
52
52
  with_params ["--id=1"] do
53
53
  it_should_print_n_records 1
54
54
  it_should_print_column "Name"
@@ -65,11 +65,11 @@ describe HammerCLIForeman::Location do
65
65
  end
66
66
 
67
67
 
68
- context "CreateCommand" do
68
+ describe "CreateCommand" do
69
69
 
70
70
  let(:cmd) { HammerCLIForeman::Location::CreateCommand.new("", ctx) }
71
71
 
72
- context "parameters" do
72
+ describe "parameters" do
73
73
  it_should_accept "name", ["--name=org"]
74
74
  # it_should_fail_with "name missing", []
75
75
  # TODO: temporarily disabled, parameters are checked in the api
@@ -81,11 +81,11 @@ describe HammerCLIForeman::Location do
81
81
  end
82
82
 
83
83
 
84
- context "DeleteCommand" do
84
+ describe "DeleteCommand" do
85
85
 
86
86
  let(:cmd) { HammerCLIForeman::Location::DeleteCommand.new("", ctx) }
87
87
 
88
- context "parameters" do
88
+ describe "parameters" do
89
89
  it_should_accept "name", ["--name=org"]
90
90
  it_should_accept "id", ["--id=1"]
91
91
  # it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -97,11 +97,11 @@ describe HammerCLIForeman::Location do
97
97
  end
98
98
 
99
99
 
100
- context "UpdateCommand" do
100
+ describe "UpdateCommand" do
101
101
 
102
102
  let(:cmd) { HammerCLIForeman::Location::UpdateCommand.new("", ctx) }
103
103
 
104
- context "parameters" do
104
+ describe "parameters" do
105
105
  it_should_accept "name", ["--name=org", "--new-name=org2"]
106
106
  it_should_accept "id", ["--id=1", "--new-name=org2"]
107
107
  # it_should_fail_with "no params", []
@@ -8,20 +8,20 @@ require 'hammer_cli_foreman/mail_notification'
8
8
  describe HammerCLIForeman::MailNotification do
9
9
  include CommandTestHelper
10
10
 
11
- context 'ListCommand' do
11
+ describe 'ListCommand' do
12
12
  before :each do
13
13
  ResourceMocks.mail_notifications
14
14
  end
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::MailNotification::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::MailNotification do
30
30
  end
31
31
  end
32
32
 
33
- context 'InfoCommand' do
33
+ describe 'InfoCommand' do
34
34
  let(:cmd) { HammerCLIForeman::MailNotification::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'
@@ -7,19 +7,19 @@ describe HammerCLIForeman::Medium 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(:media, :index, [])
13
13
  end
14
14
 
15
15
  let(:cmd) { HammerCLIForeman::Medium::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
@@ -30,17 +30,17 @@ describe HammerCLIForeman::Medium do
30
30
 
31
31
  end
32
32
 
33
- context "InfoCommand" do
33
+ describe "InfoCommand" do
34
34
 
35
35
  let(:cmd) { HammerCLIForeman::Medium::InfoCommand.new("", ctx) }
36
36
 
37
- context "parameters" do
37
+ describe "parameters" do
38
38
  it_should_accept "id", ["--id=1"]
39
39
  it_should_accept "name", ["--name=medium_x"]
40
40
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
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 "Name"
@@ -54,11 +54,11 @@ describe HammerCLIForeman::Medium do
54
54
  end
55
55
  end
56
56
 
57
- context "CreateCommand" do
57
+ describe "CreateCommand" do
58
58
 
59
59
  let(:cmd) { HammerCLIForeman::Medium::CreateCommand.new("", ctx) }
60
60
 
61
- context "parameters" do
61
+ describe "parameters" do
62
62
  it_should_accept "name, path, os ids", ["--name=media", "--path=http://some.path/abc/$major/Fedora/$arch/", "--operatingsystem-ids=1,2"]
63
63
  # it_should_fail_with "name missing", ["--path=http://some.path/abc/$major/Fedora/$arch/"]
64
64
  # it_should_fail_with "path missing", ["--name=media"]
@@ -70,22 +70,22 @@ describe HammerCLIForeman::Medium do
70
70
  end
71
71
  end
72
72
 
73
- context "DeleteCommand" do
73
+ describe "DeleteCommand" do
74
74
 
75
75
  let(:cmd) { HammerCLIForeman::Medium::DeleteCommand.new("", ctx) }
76
76
 
77
- context "parameters" do
77
+ describe "parameters" do
78
78
  it_should_accept "name", ["--name=media"]
79
79
  it_should_accept "id", ["--id=1"]
80
80
  # it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
81
81
  end
82
82
  end
83
83
 
84
- context "UpdateCommand" do
84
+ describe "UpdateCommand" do
85
85
 
86
86
  let(:cmd) { HammerCLIForeman::Medium::UpdateCommand.new("", ctx) }
87
87
 
88
- context "parameters" do
88
+ describe "parameters" do
89
89
  it_should_accept "name", ["--name=medium"]
90
90
  it_should_accept "id", ["--id=1"]
91
91
  it_should_accept "os ids", ["--id=1", "--operatingsystem-ids=1,2"]
@@ -8,21 +8,21 @@ describe HammerCLIForeman::Model 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(:models, :index, [])
14
14
  end
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::Model::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
  it_should_accept 'organization', ['--organization-id=1']
22
22
  it_should_accept 'location', ['--location-id=1']
23
23
  end
24
24
 
25
- context 'output' do
25
+ describe 'output' do
26
26
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
27
27
 
28
28
  it_should_print_n_records
@@ -34,11 +34,11 @@ describe HammerCLIForeman::Model do
34
34
  end
35
35
 
36
36
 
37
- context 'InfoCommand' do
37
+ describe 'InfoCommand' do
38
38
 
39
39
  let(:cmd) { HammerCLIForeman::Model::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=model']
44
44
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -46,7 +46,7 @@ describe HammerCLIForeman::Model do
46
46
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
47
47
  end
48
48
 
49
- context 'output' do
49
+ describe 'output' do
50
50
  with_params ['--id=1'] do
51
51
  it_should_print_n_records 1
52
52
  it_should_print_column 'Name'
@@ -62,11 +62,11 @@ describe HammerCLIForeman::Model do
62
62
  end
63
63
 
64
64
 
65
- context 'CreateCommand' do
65
+ describe 'CreateCommand' do
66
66
 
67
67
  let(:cmd) { HammerCLIForeman::Model::CreateCommand.new('', ctx) }
68
68
 
69
- context 'parameters' do
69
+ describe 'parameters' do
70
70
  it_should_accept 'name, info, vendor-class, hardware-model, organization, location',
71
71
  %w[--name=model --info=description --vendor-class=class --hardware-model=model --organization-id=1 --location-id=1]
72
72
  # it_should_fail_with "name missing", ["--info=description", "--vendor-class=class", "--hardware-model=model"]
@@ -76,11 +76,11 @@ describe HammerCLIForeman::Model do
76
76
  end
77
77
 
78
78
 
79
- context 'DeleteCommand' do
79
+ describe 'DeleteCommand' do
80
80
 
81
81
  let(:cmd) { HammerCLIForeman::Model::DeleteCommand.new('', ctx) }
82
82
 
83
- context 'parameters' do
83
+ describe 'parameters' do
84
84
  it_should_accept 'name', ['--name=model']
85
85
  it_should_accept 'id', ['--id=1']
86
86
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -91,11 +91,11 @@ describe HammerCLIForeman::Model do
91
91
  end
92
92
 
93
93
 
94
- context 'UpdateCommand' do
94
+ describe 'UpdateCommand' do
95
95
 
96
96
  let(:cmd) { HammerCLIForeman::Model::UpdateCommand.new('', ctx) }
97
97
 
98
- context 'parameters' do
98
+ describe 'parameters' do
99
99
  it_should_accept 'name', ['--name=model', '--new-name=model2', '--info=description', '--vendor-class=class', '--hardware-model=model']
100
100
  it_should_accept 'id', ['--id=1', '--new-name=model2', '--info=description', '--vendor-class=class', '--hardware-model=model']
101
101
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -7,7 +7,7 @@ describe HammerCLIForeman::OperatingSystem do
7
7
 
8
8
  include CommandTestHelper
9
9
 
10
- context "ListCommand" do
10
+ describe "ListCommand" do
11
11
 
12
12
  before :each do
13
13
  ResourceMocks.operatingsystems
@@ -15,14 +15,14 @@ describe HammerCLIForeman::OperatingSystem do
15
15
 
16
16
  let(:cmd) { HammerCLIForeman::OperatingSystem::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
  it_should_accept 'organization', ['--organization-id=1']
22
22
  it_should_accept 'location', ['--location-id=1']
23
23
  end
24
24
 
25
- context "output" do
25
+ describe "output" do
26
26
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
27
27
 
28
28
  it_should_print_n_records
@@ -35,11 +35,11 @@ describe HammerCLIForeman::OperatingSystem do
35
35
  end
36
36
 
37
37
 
38
- context "InfoCommand" do
38
+ describe "InfoCommand" do
39
39
 
40
40
  let(:cmd) { HammerCLIForeman::OperatingSystem::InfoCommand.new("", ctx) }
41
41
 
42
- context "parameters" do
42
+ describe "parameters" do
43
43
  it_should_accept "id", ["--id=1"]
44
44
  it_should_accept "title", ["--title=Rhel 6.5"]
45
45
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -47,7 +47,7 @@ describe HammerCLIForeman::OperatingSystem do
47
47
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
48
48
  end
49
49
 
50
- context "output" do
50
+ describe "output" do
51
51
  with_params ["--id=1"] do
52
52
  it_should_print_n_records 1
53
53
  it_should_print_column "Name"
@@ -68,11 +68,11 @@ describe HammerCLIForeman::OperatingSystem do
68
68
  end
69
69
 
70
70
 
71
- context "CreateCommand" do
71
+ describe "CreateCommand" do
72
72
 
73
73
  let(:cmd) { HammerCLIForeman::OperatingSystem::CreateCommand.new("", ctx) }
74
74
 
75
- context "parameters" do
75
+ describe "parameters" do
76
76
  it_should_accept "name, major, minor, family, release name, organization, location",
77
77
  ["--name=media", "--major=1", "--minor=2", "--family=Red Hat", "--release-name=awesome", "--organization-id=1", "--location-id=1"]
78
78
  # it_should_fail_with "name missing", ["--major=1", "--minor=2", "--family=Red Hat", "--release-name=awesome"]
@@ -85,11 +85,11 @@ describe HammerCLIForeman::OperatingSystem do
85
85
  end
86
86
 
87
87
 
88
- context "DeleteCommand" do
88
+ describe "DeleteCommand" do
89
89
 
90
90
  let(:cmd) { HammerCLIForeman::OperatingSystem::DeleteCommand.new("", ctx) }
91
91
 
92
- context "parameters" do
92
+ describe "parameters" do
93
93
  it_should_accept "id", ["--id=1"]
94
94
  it_should_accept "title", ["--title=Rhel 6.5"]
95
95
  it_should_accept 'organization', %w[--id=1 --organization-id=1]
@@ -101,11 +101,11 @@ describe HammerCLIForeman::OperatingSystem do
101
101
  end
102
102
 
103
103
 
104
- context "UpdateCommand" do
104
+ describe "UpdateCommand" do
105
105
 
106
106
  let(:cmd) { HammerCLIForeman::OperatingSystem::UpdateCommand.new("", ctx) }
107
107
 
108
- context "parameters" do
108
+ describe "parameters" do
109
109
  it_should_accept "id", ["--id=1"]
110
110
  it_should_accept "title", ["--title=Rhel 6.5"]
111
111
  it_should_accept "name, major, minor, family, release name, organization, location",
@@ -122,7 +122,7 @@ describe HammerCLIForeman::OperatingSystem do
122
122
  end
123
123
 
124
124
 
125
- context "SetParameterCommand" do
125
+ describe "SetParameterCommand" do
126
126
 
127
127
  before :each do
128
128
  ResourceMocks.operatingsystems
@@ -130,7 +130,7 @@ describe HammerCLIForeman::OperatingSystem do
130
130
 
131
131
  let(:cmd) { HammerCLIForeman::OperatingSystem::SetParameterCommand.new("", ctx) }
132
132
 
133
- context "parameters" do
133
+ describe "parameters" do
134
134
  it_should_accept "name, value and os id", ["--name=domain", "--value=val", "--operatingsystem-id=1"]
135
135
  it_should_accept "name, value and os title", ["--name=domain", "--value=val", "--operatingsystem=Rhel 6.5"]
136
136
  it_should_accept "name, value, type and os id", ["--name=domain", "--value=val", "--parameter-type=string", "--operatingsystem-id=1"]
@@ -143,11 +143,11 @@ describe HammerCLIForeman::OperatingSystem do
143
143
  end
144
144
 
145
145
 
146
- context "DeleteParameterCommand" do
146
+ describe "DeleteParameterCommand" do
147
147
 
148
148
  let(:cmd) { HammerCLIForeman::OperatingSystem::DeleteParameterCommand.new("", ctx) }
149
149
 
150
- context "parameters" do
150
+ describe "parameters" do
151
151
  it_should_accept "name and os id", ["--name=domain", "--operatingsystem-id=1"]
152
152
  it_should_accept "name and os title", ["--name=domain", "--operatingsystem=Rhel 6.5"]
153
153
  # it_should_fail_with "name missing", ["--operatingsystem-id=id"]
@@ -175,7 +175,7 @@ describe HammerCLIForeman::ForemanOptionBuilder do
175
175
  end
176
176
 
177
177
 
178
- context "primary searchables options expansion" do
178
+ describe "primary searchables options expansion" do
179
179
  let(:option_switches) { container.build(@build_options).map(&:switches) }
180
180
 
181
181
  it "can remove original searchable builder" do
@@ -208,7 +208,7 @@ describe HammerCLIForeman::ForemanOptionBuilder do
208
208
 
209
209
  end
210
210
 
211
- context "dependent searchables options expansion" do
211
+ describe "dependent searchables options expansion" do
212
212
  let(:option_switches) do
213
213
  container.build(@build_options.merge(command: Class.new(HammerCLIForeman::Command))).map(&:switches)
214
214
  end
@@ -9,7 +9,7 @@ describe HammerCLIForeman::Organization do
9
9
  include CommandTestHelper
10
10
  extend ResourceDisabled
11
11
 
12
- context "ListCommand" do
12
+ describe "ListCommand" do
13
13
 
14
14
  before :each do
15
15
  ResourceMocks.organizations_index
@@ -17,12 +17,12 @@ describe HammerCLIForeman::Organization do
17
17
 
18
18
  let(:cmd) { HammerCLIForeman::Organization::ListCommand.new("", ctx) }
19
19
 
20
- context "parameters" do
20
+ describe "parameters" do
21
21
  it_should_accept "no arguments"
22
22
  it_should_accept_search_params
23
23
  end
24
24
 
25
- context "output" do
25
+ describe "output" do
26
26
  let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
27
27
 
28
28
  it_should_print_n_records
@@ -35,7 +35,7 @@ describe HammerCLIForeman::Organization do
35
35
  end
36
36
 
37
37
 
38
- context "InfoCommand" do
38
+ describe "InfoCommand" do
39
39
 
40
40
  before :each do
41
41
  ResourceMocks.organizations_show
@@ -43,13 +43,13 @@ describe HammerCLIForeman::Organization do
43
43
 
44
44
  let(:cmd) { HammerCLIForeman::Organization::InfoCommand.new("", ctx) }
45
45
 
46
- context "parameters" do
46
+ describe "parameters" do
47
47
  it_should_accept "id", ["--id=1"]
48
48
  it_should_accept "name", ["--name=arch"]
49
49
  # it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
50
50
  end
51
51
 
52
- context "output" do
52
+ describe "output" do
53
53
  with_params ["--id=1"] do
54
54
  it_should_print_n_records 1
55
55
  it_should_print_column "Name"
@@ -66,11 +66,11 @@ describe HammerCLIForeman::Organization do
66
66
  end
67
67
 
68
68
 
69
- context "CreateCommand" do
69
+ describe "CreateCommand" do
70
70
 
71
71
  let(:cmd) { HammerCLIForeman::Organization::CreateCommand.new("", ctx) }
72
72
 
73
- context "parameters" do
73
+ describe "parameters" do
74
74
  it_should_accept "name", ["--name=org"]
75
75
  # it_should_fail_with "name missing", []
76
76
  # TODO: temporarily disabled, parameters are checked in the api
@@ -82,11 +82,11 @@ describe HammerCLIForeman::Organization do
82
82
  end
83
83
 
84
84
 
85
- context "DeleteCommand" do
85
+ describe "DeleteCommand" do
86
86
 
87
87
  let(:cmd) { HammerCLIForeman::Organization::DeleteCommand.new("", ctx) }
88
88
 
89
- context "parameters" do
89
+ describe "parameters" do
90
90
  it_should_accept "name", ["--name=org"]
91
91
  it_should_accept "id", ["--id=1"]
92
92
 
@@ -100,11 +100,11 @@ describe HammerCLIForeman::Organization do
100
100
  end
101
101
 
102
102
 
103
- context "UpdateCommand" do
103
+ describe "UpdateCommand" do
104
104
 
105
105
  let(:cmd) { HammerCLIForeman::Organization::UpdateCommand.new("", ctx) }
106
106
 
107
- context "parameters" do
107
+ describe "parameters" do
108
108
  it_should_accept "name", ["--name=org", "--new-name=org2"]
109
109
  it_should_accept "id", ["--id=1", "--new-name=org2"]
110
110
  # it_should_fail_with "no params", [] # TODO: temporarily disabled, parameters are checked in the id resolver
@@ -16,7 +16,7 @@ describe HammerCLIForeman::Output::Formatters::StructuredReferenceFormatter do
16
16
  end
17
17
  end
18
18
 
19
- context 'with symbol keys' do
19
+ describe 'with symbol keys' do
20
20
  it 'formats name' do
21
21
  options = {:display_field_key => :server_name}
22
22
  _(formatter.format(reference, options)).must_equal('Name' => "#{reference_str_keys['server_name']}")
@@ -30,7 +30,7 @@ describe HammerCLIForeman::Output::Formatters::StructuredReferenceFormatter do
30
30
  end
31
31
  end
32
32
 
33
- context 'with string keys' do
33
+ describe 'with string keys' do
34
34
  it 'formats name' do
35
35
  options = {:display_field_key => :server_name}
36
36
  _(formatter.format(reference_str_keys, options)).must_equal('Name' => "#{reference_str_keys['server_name']}")
@@ -62,7 +62,7 @@ describe HammerCLIForeman::Output::Formatters::ReferenceFormatter do
62
62
  _(formatter.format(nil)).must_equal ''
63
63
  end
64
64
 
65
- context 'with symbol keys' do
65
+ describe 'with symbol keys' do
66
66
  let(:reference_sym_keys) do
67
67
  reference
68
68
  end
@@ -106,7 +106,7 @@ describe HammerCLIForeman::Output::Formatters::ReferenceFormatter do
106
106
  end
107
107
  end
108
108
 
109
- context 'with string keys' do
109
+ describe 'with string keys' do
110
110
  let(:reference_str_keys) do
111
111
  reference.inject({}) do |new_ref, (key, value)|
112
112
  new_ref.update(key.to_s => value)
@@ -74,7 +74,7 @@ describe HammerCLIForeman::IdParamsFilter do
74
74
  _(filter.for_action(action)).must_equal required_params
75
75
  end
76
76
 
77
- context "with hash params" do
77
+ describe "with hash params" do
78
78
 
79
79
  let(:action) {
80
80
  stub(:params => [hash_param])
@@ -139,7 +139,7 @@ describe HammerCLIForeman::IdArrayParamsFilter do
139
139
  _(filter.for_action(action)).must_equal required_params
140
140
  end
141
141
 
142
- context "with hash params" do
142
+ describe "with hash params" do
143
143
 
144
144
  let(:action) {
145
145
  stub(:params => [hash_param])