hammer_cli_foreman 3.7.0 → 3.9.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.
- checksums.yaml +4 -4
- data/doc/host_create.md +0 -6
- data/doc/release_notes.md +15 -0
- data/lib/hammer_cli_foreman/command_extensions/ping.rb +14 -0
- data/lib/hammer_cli_foreman/compute_resource/register_compute_resources.rb +0 -1
- data/lib/hammer_cli_foreman/ping.rb +6 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/cs_CZ/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ka/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/test/functional/associating_commands_test.rb +2 -2
- data/test/functional/commands/list_test.rb +4 -4
- data/test/functional/ping_test.rb +25 -0
- data/test/functional/report_template_test.rb +4 -4
- data/test/functional/virtual_machine_test.rb +4 -4
- data/test/test_helper.rb +0 -1
- data/test/unit/api/interactive_basic_auth_test.rb +2 -2
- data/test/unit/api/oauth/oauth_authentication_code_grant_test.rb +2 -2
- data/test/unit/api/oauth/oauth_password_grant_test.rb +2 -2
- data/test/unit/api/session_authenticator_wrapper_test.rb +6 -6
- data/test/unit/architecture_test.rb +12 -12
- data/test/unit/audit_test.rb +6 -6
- data/test/unit/auth_source_external.rb +5 -5
- data/test/unit/auth_source_ldap_test.rb +12 -12
- data/test/unit/bookmark_test.rb +12 -12
- data/test/unit/commands_test.rb +5 -5
- data/test/unit/common_parameter_test.rb +10 -10
- data/test/unit/compute_profile_test.rb +12 -12
- data/test/unit/compute_resource_test.rb +18 -18
- data/test/unit/config_report_test.rb +7 -7
- data/test/unit/domain_test.rb +16 -16
- data/test/unit/exception_handler_test.rb +1 -1
- data/test/unit/external_usergroup_test.rb +15 -15
- data/test/unit/fact_test.rb +3 -3
- data/test/unit/filter_test.rb +18 -18
- data/test/unit/helpers/command.rb +1 -1
- data/test/unit/helpers/resource_disabled.rb +1 -1
- data/test/unit/host_test.rb +35 -35
- data/test/unit/hostgroup_test.rb +18 -18
- data/test/unit/image_test.rb +15 -15
- data/test/unit/location_test.rb +12 -12
- data/test/unit/mail_notification_test.rb +6 -6
- data/test/unit/media_test.rb +12 -12
- data/test/unit/model_test.rb +12 -12
- data/test/unit/operating_system_test.rb +16 -16
- data/test/unit/option_builders_test.rb +2 -2
- data/test/unit/organization_test.rb +12 -12
- data/test/unit/output/formatters_test.rb +4 -4
- data/test/unit/param_filters_test.rb +2 -2
- data/test/unit/partition_table_test.rb +14 -14
- data/test/unit/realm_test.rb +12 -12
- data/test/unit/role_test.rb +14 -14
- data/test/unit/settings_test.rb +5 -5
- data/test/unit/smart_proxy_test.rb +14 -14
- data/test/unit/subnet_test.rb +12 -12
- data/test/unit/template_test.rb +16 -16
- data/test/unit/user_test.rb +12 -12
- data/test/unit/usergroup_test.rb +12 -12
- metadata +31 -30
- data/lib/hammer_cli_foreman/compute_resource/rackspace.rb +0 -25
@@ -175,7 +175,7 @@ describe HammerCLIForeman::ForemanOptionBuilder do
|
|
175
175
|
end
|
176
176
|
|
177
177
|
|
178
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
20
|
+
describe "parameters" do
|
21
21
|
it_should_accept "no arguments"
|
22
22
|
it_should_accept_search_params
|
23
23
|
end
|
24
24
|
|
25
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
69
|
+
describe "CreateCommand" do
|
70
70
|
|
71
71
|
let(:cmd) { HammerCLIForeman::Organization::CreateCommand.new("", ctx) }
|
72
72
|
|
73
|
-
|
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
|
-
|
85
|
+
describe "DeleteCommand" do
|
86
86
|
|
87
87
|
let(:cmd) { HammerCLIForeman::Organization::DeleteCommand.new("", ctx) }
|
88
88
|
|
89
|
-
|
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
|
-
|
103
|
+
describe "UpdateCommand" do
|
104
104
|
|
105
105
|
let(:cmd) { HammerCLIForeman::Organization::UpdateCommand.new("", ctx) }
|
106
106
|
|
107
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
142
|
+
describe "with hash params" do
|
143
143
|
|
144
144
|
let(:action) {
|
145
145
|
stub(:params => [hash_param])
|
@@ -14,19 +14,19 @@ describe HammerCLIForeman::PartitionTable do
|
|
14
14
|
::File.stubs(:read).returns("FILE_CONTENT")
|
15
15
|
end
|
16
16
|
|
17
|
-
|
17
|
+
describe "ListCommand" do
|
18
18
|
before do
|
19
19
|
ResourceMocks.mock_action_call(:ptables, :index, [])
|
20
20
|
end
|
21
21
|
|
22
22
|
let(:cmd) { HammerCLIForeman::PartitionTable::ListCommand.new("", ctx) }
|
23
23
|
|
24
|
-
|
24
|
+
describe "parameters" do
|
25
25
|
it_should_accept "no arguments"
|
26
26
|
it_should_accept_search_params
|
27
27
|
end
|
28
28
|
|
29
|
-
|
29
|
+
describe "output" do
|
30
30
|
let(:expected_record_count) { count_records(cmd.resource.call(:index)) }
|
31
31
|
|
32
32
|
it_should_print_n_records
|
@@ -36,18 +36,18 @@ describe HammerCLIForeman::PartitionTable do
|
|
36
36
|
end
|
37
37
|
|
38
38
|
|
39
|
-
|
39
|
+
describe "InfoCommand" do
|
40
40
|
|
41
41
|
let(:cmd) { HammerCLIForeman::PartitionTable::InfoCommand.new("", ctx) }
|
42
42
|
|
43
|
-
|
43
|
+
describe "parameters" do
|
44
44
|
it_should_accept "id", ["--id=1"]
|
45
45
|
it_should_accept "name", ["--name=ptable"]
|
46
46
|
|
47
47
|
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
48
48
|
end
|
49
49
|
|
50
|
-
|
50
|
+
describe "output" do
|
51
51
|
with_params ["--id=1"] do
|
52
52
|
it_should_print_n_records 1
|
53
53
|
it_should_print_columns ["Id", "Name", "OS Family", "Created at", "Updated at"]
|
@@ -65,11 +65,11 @@ describe HammerCLIForeman::PartitionTable do
|
|
65
65
|
end
|
66
66
|
|
67
67
|
|
68
|
-
|
68
|
+
describe "DumpCommand" do
|
69
69
|
|
70
70
|
let(:cmd) { HammerCLIForeman::PartitionTable::DumpCommand.new("", ctx) }
|
71
71
|
|
72
|
-
|
72
|
+
describe "parameters" do
|
73
73
|
it_should_accept "id", ["--id=1"]
|
74
74
|
it_should_accept "name", ["--name=ptable"]
|
75
75
|
# it_should_fail_with "id or name missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
@@ -86,7 +86,7 @@ describe HammerCLIForeman::PartitionTable do
|
|
86
86
|
end
|
87
87
|
|
88
88
|
|
89
|
-
|
89
|
+
describe "CreateCommand" do
|
90
90
|
|
91
91
|
let(:cmd) { HammerCLIForeman::PartitionTable::CreateCommand.new("", ctx) }
|
92
92
|
|
@@ -94,7 +94,7 @@ describe HammerCLIForeman::PartitionTable do
|
|
94
94
|
cmd.stubs(:template_kind_id).returns(1)
|
95
95
|
end
|
96
96
|
|
97
|
-
|
97
|
+
describe "parameters" do
|
98
98
|
it_should_accept "name, file, os family", ["--name=tpl", "--file=~/table.sh", "--os-family=RedHat"]
|
99
99
|
# it_should_fail_with "name missing", ["--file=~/table.sh", "--os-family=RedHat"]
|
100
100
|
# it_should_fail_with "file missing", ["--name=tpl", "--os-family=RedHat"]
|
@@ -108,11 +108,11 @@ describe HammerCLIForeman::PartitionTable do
|
|
108
108
|
end
|
109
109
|
|
110
110
|
|
111
|
-
|
111
|
+
describe "UpdateCommand" do
|
112
112
|
|
113
113
|
let(:cmd) { HammerCLIForeman::PartitionTable::UpdateCommand.new("", ctx) }
|
114
114
|
|
115
|
-
|
115
|
+
describe "parameters" do
|
116
116
|
it_should_accept "id, new-name, file, type, audit comment, os ids", ["--id=83", "--new-name=ptable","--file=~/table.sh", "--os-family=RedHat"]
|
117
117
|
it_should_accept "name, new-name, file, type, audit comment, os ids", ["--name=ptable", "--new-name=ptable2", "--file=~/table.sh", "--os-family=RedHat"]
|
118
118
|
# it_should_fail_with "id and name missing", ["--new-name=ptable","--file=~/table.sh", "--os-family=RedHat"]
|
@@ -126,11 +126,11 @@ describe HammerCLIForeman::PartitionTable do
|
|
126
126
|
end
|
127
127
|
|
128
128
|
|
129
|
-
|
129
|
+
describe "DeleteCommand" do
|
130
130
|
|
131
131
|
let(:cmd) { HammerCLIForeman::PartitionTable::DeleteCommand.new("", ctx) }
|
132
132
|
|
133
|
-
|
133
|
+
describe "parameters" do
|
134
134
|
it_should_accept "id", ["--id=1"]
|
135
135
|
it_should_accept "name", ["--name=ptable"]
|
136
136
|
# it_should_fail_with "id or name missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
data/test/unit/realm_test.rb
CHANGED
@@ -7,19 +7,19 @@ describe HammerCLIForeman::Realm do
|
|
7
7
|
|
8
8
|
include CommandTestHelper
|
9
9
|
|
10
|
-
|
10
|
+
describe "ListCommand" do
|
11
11
|
before do
|
12
12
|
ResourceMocks.mock_action_call(:realms, :index, [])
|
13
13
|
end
|
14
14
|
|
15
15
|
let(:cmd) { HammerCLIForeman::Realm::ListCommand.new("", ctx) }
|
16
16
|
|
17
|
-
|
17
|
+
describe "parameters" do
|
18
18
|
it_should_accept "no arguments"
|
19
19
|
it_should_accept_search_params
|
20
20
|
end
|
21
21
|
|
22
|
-
|
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,17 +29,17 @@ describe HammerCLIForeman::Realm do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
-
|
32
|
+
describe "InfoCommand" do
|
33
33
|
|
34
34
|
let(:cmd) { HammerCLIForeman::Realm::InfoCommand.new("", ctx) }
|
35
35
|
|
36
|
-
|
36
|
+
describe "parameters" do
|
37
37
|
it_should_accept "id", ["--id=1"]
|
38
38
|
it_should_accept "name", ["--name=arch"]
|
39
39
|
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
40
40
|
end
|
41
41
|
|
42
|
-
|
42
|
+
describe "output" do
|
43
43
|
with_params ["--id=1"] do
|
44
44
|
it_should_print_n_records 1
|
45
45
|
it_should_print_columns ["Id", "Name", "Created at", "Updated at"]
|
@@ -49,22 +49,22 @@ describe HammerCLIForeman::Realm do
|
|
49
49
|
|
50
50
|
end
|
51
51
|
|
52
|
-
|
52
|
+
describe "CreateCommand" do
|
53
53
|
|
54
54
|
let(:cmd) { HammerCLIForeman::Realm::CreateCommand.new("", ctx) }
|
55
55
|
|
56
|
-
|
56
|
+
describe "parameters" do
|
57
57
|
it_should_accept "name, type, proxy", ["--name=realm", "--realm-type=FreeIPA", "--realm-proxy-id=1"]
|
58
58
|
end
|
59
59
|
|
60
60
|
end
|
61
61
|
|
62
62
|
|
63
|
-
|
63
|
+
describe "DeleteCommand" do
|
64
64
|
|
65
65
|
let(:cmd) { HammerCLIForeman::Realm::DeleteCommand.new("", ctx) }
|
66
66
|
|
67
|
-
|
67
|
+
describe "parameters" do
|
68
68
|
it_should_accept "name", ["--name=realm"]
|
69
69
|
it_should_accept "id", ["--id=1"]
|
70
70
|
# it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
@@ -73,11 +73,11 @@ describe HammerCLIForeman::Realm do
|
|
73
73
|
end
|
74
74
|
|
75
75
|
|
76
|
-
|
76
|
+
describe "UpdateCommand" do
|
77
77
|
|
78
78
|
let(:cmd) { HammerCLIForeman::Realm::UpdateCommand.new("", ctx) }
|
79
79
|
|
80
|
-
|
80
|
+
describe "parameters" do
|
81
81
|
it_should_accept "name", ["--name=realm", "--new-name=realm2"]
|
82
82
|
it_should_accept "id", ["--id=1", "--new-name=realm2"]
|
83
83
|
# it_should_fail_with "no params", []
|
data/test/unit/role_test.rb
CHANGED
@@ -8,7 +8,7 @@ describe HammerCLIForeman::Role do
|
|
8
8
|
include CommandTestHelper
|
9
9
|
|
10
10
|
|
11
|
-
|
11
|
+
describe "ListCommand" do
|
12
12
|
|
13
13
|
let(:cmd) { HammerCLIForeman::Role::ListCommand.new("", ctx) }
|
14
14
|
|
@@ -16,12 +16,12 @@ describe HammerCLIForeman::Role do
|
|
16
16
|
ResourceMocks.mock_action_call(:roles, :index, [])
|
17
17
|
end
|
18
18
|
|
19
|
-
|
19
|
+
describe "parameters" do
|
20
20
|
it_should_accept "no arguments"
|
21
21
|
it_should_accept_search_params
|
22
22
|
end
|
23
23
|
|
24
|
-
|
24
|
+
describe "output" do
|
25
25
|
it_should_print_column "Id"
|
26
26
|
it_should_print_column "Name"
|
27
27
|
end
|
@@ -29,11 +29,11 @@ describe HammerCLIForeman::Role do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
-
|
32
|
+
describe "InfoCommand" do
|
33
33
|
|
34
34
|
let(:cmd) { HammerCLIForeman::Role::InfoCommand.new("", ctx) }
|
35
35
|
|
36
|
-
|
36
|
+
describe "output" do
|
37
37
|
|
38
38
|
with_params ["--name=role"] do
|
39
39
|
it_should_print_n_records 1
|
@@ -44,11 +44,11 @@ describe HammerCLIForeman::Role do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
|
47
|
-
|
47
|
+
describe "CreateCommand" do
|
48
48
|
|
49
49
|
let(:cmd) { HammerCLIForeman::Role::CreateCommand.new("", ctx) }
|
50
50
|
|
51
|
-
|
51
|
+
describe "parameters" do
|
52
52
|
it_should_accept "name", ["--name=role"]
|
53
53
|
end
|
54
54
|
|
@@ -57,21 +57,21 @@ describe HammerCLIForeman::Role do
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
|
60
|
+
describe "DeleteCommand" do
|
61
61
|
|
62
62
|
let(:cmd) { HammerCLIForeman::Role::DeleteCommand.new("", ctx) }
|
63
63
|
|
64
|
-
|
64
|
+
describe "parameters" do
|
65
65
|
it_should_accept "name", ["--name=role"]
|
66
66
|
it_should_accept "id", ["--id=1"]
|
67
67
|
end
|
68
68
|
end
|
69
69
|
|
70
|
-
|
70
|
+
describe "UpdateCommand" do
|
71
71
|
|
72
72
|
let(:cmd) { HammerCLIForeman::Role::UpdateCommand.new("", ctx) }
|
73
73
|
|
74
|
-
|
74
|
+
describe "parameters" do
|
75
75
|
it_should_accept "name", ["--name=role"]
|
76
76
|
it_should_accept "id", ["--id=1"]
|
77
77
|
it_should_accept "name and new name", ["--name=role", "--new-name=role2"]
|
@@ -83,7 +83,7 @@ describe HammerCLIForeman::Role do
|
|
83
83
|
|
84
84
|
end
|
85
85
|
|
86
|
-
|
86
|
+
describe "FiltersCommand" do
|
87
87
|
|
88
88
|
let(:cmd) { HammerCLIForeman::Role::FiltersCommand.new("", ctx) }
|
89
89
|
|
@@ -91,13 +91,13 @@ describe HammerCLIForeman::Role do
|
|
91
91
|
ResourceMocks.mock_action_call(:filters, :index, [])
|
92
92
|
end
|
93
93
|
|
94
|
-
|
94
|
+
describe "parameters" do
|
95
95
|
it_should_accept "name", ["--name=role"]
|
96
96
|
it_should_accept "id", ["--id=1"]
|
97
97
|
it_should_fail_with "no arguments"
|
98
98
|
end
|
99
99
|
|
100
|
-
|
100
|
+
describe "output" do
|
101
101
|
with_params ["--id=1"] do
|
102
102
|
it_should_print_column "Id"
|
103
103
|
it_should_print_column "Resource type"
|
data/test/unit/settings_test.rb
CHANGED
@@ -7,7 +7,7 @@ describe HammerCLIForeman::Settings do
|
|
7
7
|
|
8
8
|
include CommandTestHelper
|
9
9
|
|
10
|
-
|
10
|
+
describe "ListCommand" do
|
11
11
|
|
12
12
|
before do
|
13
13
|
ResourceMocks.mock_action_call(:settings, :index, [])
|
@@ -15,14 +15,14 @@ describe HammerCLIForeman::Settings do
|
|
15
15
|
|
16
16
|
let(:cmd) { HammerCLIForeman::Settings::ListCommand.new("", ctx) }
|
17
17
|
|
18
|
-
|
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
|
-
|
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,10 +34,10 @@ describe HammerCLIForeman::Settings do
|
|
34
34
|
|
35
35
|
end
|
36
36
|
|
37
|
-
|
37
|
+
describe "UpdateCommand" do
|
38
38
|
let(:cmd) { HammerCLIForeman::Settings::UpdateCommand.new("", ctx) }
|
39
39
|
|
40
|
-
|
40
|
+
describe "parameters" do
|
41
41
|
it_should_accept "name", ["--name=setting1", "--value=setting2"]
|
42
42
|
it_should_accept "id", ["--id=1", "--value=setting2"]
|
43
43
|
it_should_accept 'organization', %w[--id=1 --organization-id=1]
|
@@ -7,19 +7,19 @@ describe HammerCLIForeman::SmartProxy do
|
|
7
7
|
|
8
8
|
include CommandTestHelper
|
9
9
|
|
10
|
-
|
10
|
+
describe "ListCommand" do
|
11
11
|
before do
|
12
12
|
ResourceMocks.mock_action_call(:smart_proxies, :index, [])
|
13
13
|
end
|
14
14
|
|
15
15
|
let(:cmd) { HammerCLIForeman::SmartProxy::ListCommand.new("", ctx) }
|
16
16
|
|
17
|
-
|
17
|
+
describe "parameters" do
|
18
18
|
it_should_accept "no arguments"
|
19
19
|
it_should_accept_search_params
|
20
20
|
end
|
21
21
|
|
22
|
-
|
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,17 +29,17 @@ describe HammerCLIForeman::SmartProxy do
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
-
|
32
|
+
describe "InfoCommand" do
|
33
33
|
|
34
34
|
let(:cmd) { HammerCLIForeman::SmartProxy::InfoCommand.new("", ctx) }
|
35
35
|
|
36
|
-
|
36
|
+
describe "parameters" do
|
37
37
|
it_should_accept "id", ["--id=1"]
|
38
38
|
it_should_accept "name", ["--name=proxy"]
|
39
39
|
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
40
40
|
end
|
41
41
|
|
42
|
-
|
42
|
+
describe "output" do
|
43
43
|
with_params ["--id=1"] do
|
44
44
|
it_should_print_n_records 1
|
45
45
|
it_should_print_columns ["Id", "Name", "URL", "Features", "Created at", "Updated at"]
|
@@ -49,11 +49,11 @@ describe HammerCLIForeman::SmartProxy do
|
|
49
49
|
end
|
50
50
|
|
51
51
|
|
52
|
-
|
52
|
+
describe "CreateCommand" do
|
53
53
|
|
54
54
|
let(:cmd) { HammerCLIForeman::SmartProxy::CreateCommand.new("", ctx) }
|
55
55
|
|
56
|
-
|
56
|
+
describe "parameters" do
|
57
57
|
it_should_accept "name and url", ["--name=proxy", "--url=localhost"]
|
58
58
|
# it_should_fail_with "name missing", ["--url=localhost"]
|
59
59
|
# it_should_fail_with "url missing", ["--name=proxy"]
|
@@ -63,11 +63,11 @@ describe HammerCLIForeman::SmartProxy do
|
|
63
63
|
end
|
64
64
|
|
65
65
|
|
66
|
-
|
66
|
+
describe "DeleteCommand" do
|
67
67
|
|
68
68
|
let(:cmd) { HammerCLIForeman::SmartProxy::DeleteCommand.new("", ctx) }
|
69
69
|
|
70
|
-
|
70
|
+
describe "parameters" do
|
71
71
|
it_should_accept "id", ["--id=1"]
|
72
72
|
it_should_accept "name", ["--name=proxy"]
|
73
73
|
# it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
@@ -76,11 +76,11 @@ describe HammerCLIForeman::SmartProxy do
|
|
76
76
|
end
|
77
77
|
|
78
78
|
|
79
|
-
|
79
|
+
describe "UpdateCommand" do
|
80
80
|
|
81
81
|
let(:cmd) { HammerCLIForeman::SmartProxy::UpdateCommand.new("", ctx) }
|
82
82
|
|
83
|
-
|
83
|
+
describe "parameters" do
|
84
84
|
it_should_accept "id", ["--id=1", "--new-name=proxy2", "--url=localhost"]
|
85
85
|
it_should_accept "name", ["--name=proxy", "--new-name=proxy2", "--url=localhost"]
|
86
86
|
# it_should_fail_with "no params", []
|
@@ -90,11 +90,11 @@ describe HammerCLIForeman::SmartProxy do
|
|
90
90
|
|
91
91
|
end
|
92
92
|
|
93
|
-
|
93
|
+
describe "RefreshFeaturesCommand" do
|
94
94
|
|
95
95
|
let(:cmd) { HammerCLIForeman::SmartProxy::RefreshFeaturesCommand.new("", ctx) }
|
96
96
|
|
97
|
-
|
97
|
+
describe "parameters" do
|
98
98
|
it_should_accept "id", ["--id=1"]
|
99
99
|
it_should_accept "name", ["--name=proxy"]
|
100
100
|
# it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
data/test/unit/subnet_test.rb
CHANGED
@@ -7,19 +7,19 @@ describe HammerCLIForeman::Subnet do
|
|
7
7
|
|
8
8
|
include CommandTestHelper
|
9
9
|
|
10
|
-
|
10
|
+
describe "ListCommand" do
|
11
11
|
before do
|
12
12
|
ResourceMocks.mock_action_call(:subnets, :index, [])
|
13
13
|
end
|
14
14
|
|
15
15
|
let(:cmd) { HammerCLIForeman::Subnet::ListCommand.new("", ctx) }
|
16
16
|
|
17
|
-
|
17
|
+
describe "parameters" do
|
18
18
|
it_should_accept "no arguments"
|
19
19
|
it_should_accept_search_params
|
20
20
|
end
|
21
21
|
|
22
|
-
|
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::Subnet do
|
|
30
30
|
end
|
31
31
|
|
32
32
|
|
33
|
-
|
33
|
+
describe "InfoCommand" do
|
34
34
|
|
35
35
|
let(:cmd) { HammerCLIForeman::Subnet::InfoCommand.new("", ctx) }
|
36
36
|
|
37
|
-
|
37
|
+
describe "parameters" do
|
38
38
|
it_should_accept "id", ["--id=1"]
|
39
39
|
it_should_accept "name", ["--name=arch"]
|
40
40
|
# it_should_fail_with "no arguments" # TODO: temporarily disabled, parameters are checked in the id resolver
|
41
41
|
end
|
42
42
|
|
43
|
-
|
43
|
+
describe "output" do
|
44
44
|
|
45
45
|
with_params ["--name=subnet"] do
|
46
46
|
it_should_print_n_records 1
|
@@ -58,11 +58,11 @@ describe HammerCLIForeman::Subnet do
|
|
58
58
|
end
|
59
59
|
|
60
60
|
|
61
|
-
|
61
|
+
describe "CreateCommand" do
|
62
62
|
|
63
63
|
let(:cmd) { HammerCLIForeman::Subnet::CreateCommand.new("", ctx) }
|
64
64
|
|
65
|
-
|
65
|
+
describe "parameters" do
|
66
66
|
it_should_accept "name", ["--name=arch", "--network=192.168.83.0", "--mask=255.255.255.0"]
|
67
67
|
# it_should_fail_with "name missing", ["--network=192.168.83.0", "--mask=255.255.255.0"]
|
68
68
|
# it_should_fail_with "network missing", ["--name=arch", "--mask=255.255.255.0"]
|
@@ -73,11 +73,11 @@ describe HammerCLIForeman::Subnet do
|
|
73
73
|
end
|
74
74
|
|
75
75
|
|
76
|
-
|
76
|
+
describe "DeleteCommand" do
|
77
77
|
|
78
78
|
let(:cmd) { HammerCLIForeman::Subnet::DeleteCommand.new("", ctx) }
|
79
79
|
|
80
|
-
|
80
|
+
describe "parameters" do
|
81
81
|
it_should_accept "name", ["--name=arch"]
|
82
82
|
it_should_accept "id", ["--id=1"]
|
83
83
|
# it_should_fail_with "name or id missing", [] # TODO: temporarily disabled, parameters are checked in the id resolver
|
@@ -86,11 +86,11 @@ describe HammerCLIForeman::Subnet do
|
|
86
86
|
end
|
87
87
|
|
88
88
|
|
89
|
-
|
89
|
+
describe "UpdateCommand" do
|
90
90
|
|
91
91
|
let(:cmd) { HammerCLIForeman::Subnet::UpdateCommand.new("", ctx) }
|
92
92
|
|
93
|
-
|
93
|
+
describe "parameters" do
|
94
94
|
it_should_accept "name", ["--name=arch", "--new-name=arch2"]
|
95
95
|
it_should_accept "id", ["--id=1", "--new-name=arch2"]
|
96
96
|
# it_should_fail_with "no params", []
|