hammer_cli_foreman 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of hammer_cli_foreman might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/config/foreman.yml +1 -0
- data/doc/host_create.md +3 -3
- data/doc/release_notes.md +14 -0
- data/lib/hammer_cli_foreman.rb +0 -1
- data/lib/hammer_cli_foreman/api.rb +3 -0
- data/lib/hammer_cli_foreman/api/connection.rb +75 -0
- data/lib/hammer_cli_foreman/api/interactive_basic_auth.rb +49 -0
- data/lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb +120 -0
- data/lib/hammer_cli_foreman/auth.rb +16 -12
- data/lib/hammer_cli_foreman/commands.rb +4 -36
- data/lib/hammer_cli_foreman/compute_resource.rb +6 -6
- data/lib/hammer_cli_foreman/compute_resources/all.rb +7 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/gce.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb +22 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb +35 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb +23 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb +36 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb +20 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware.rb +9 -0
- data/lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb +62 -0
- data/lib/hammer_cli_foreman/filter.rb +1 -0
- data/lib/hammer_cli_foreman/host.rb +15 -140
- data/lib/hammer_cli_foreman/hosts/common_update_help.rb +53 -0
- data/lib/hammer_cli_foreman/hosts/common_update_options.rb +141 -0
- data/lib/hammer_cli_foreman/references.rb +13 -2
- data/lib/hammer_cli_foreman/role.rb +3 -7
- data/lib/hammer_cli_foreman/smart_class_parameter.rb +2 -2
- data/lib/hammer_cli_foreman/smart_variable.rb +1 -2
- data/lib/hammer_cli_foreman/user.rb +2 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ca/hammer-cli-foreman.edit.po +520 -318
- data/locale/ca/hammer-cli-foreman.po +253 -175
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/hammer-cli-foreman.edit.po +568 -358
- data/locale/de/hammer-cli-foreman.po +255 -177
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/hammer-cli-foreman.edit.po +446 -228
- data/locale/en/hammer-cli-foreman.po +208 -41
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/hammer-cli-foreman.edit.po +498 -307
- data/locale/en_GB/hammer-cli-foreman.po +254 -176
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/hammer-cli-foreman.edit.po +594 -388
- data/locale/es/hammer-cli-foreman.po +254 -176
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/hammer-cli-foreman.edit.po +542 -342
- data/locale/fr/hammer-cli-foreman.po +254 -176
- data/locale/hammer-cli-foreman.pot +503 -241
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/hammer-cli-foreman.edit.po +510 -295
- data/locale/it/hammer-cli-foreman.po +254 -176
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/hammer-cli-foreman.edit.po +590 -365
- data/locale/ja/hammer-cli-foreman.po +254 -176
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/hammer-cli-foreman.edit.po +591 -366
- data/locale/ko/hammer-cli-foreman.po +254 -176
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/hammer-cli-foreman.edit.po +588 -388
- data/locale/pt_BR/hammer-cli-foreman.po +254 -176
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/hammer-cli-foreman.edit.po +549 -336
- data/locale/ru/hammer-cli-foreman.po +254 -176
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/hammer-cli-foreman.edit.po +598 -373
- data/locale/zh_CN/hammer-cli-foreman.po +254 -176
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/hammer-cli-foreman.edit.po +592 -367
- data/locale/zh_TW/hammer-cli-foreman.po +254 -176
- data/test/test_helper.rb +7 -5
- data/test/unit/api/interactive_basic_auth_test.rb +87 -0
- data/test/unit/api/session_authenticator_wrapper_test.rb +263 -0
- data/test/unit/exception_handler_test.rb +1 -1
- data/test/unit/host_test.rb +2 -2
- metadata +314 -292
- data/lib/hammer_cli_foreman/credentials.rb +0 -67
- data/test/unit/credentials_test.rb +0 -59
data/test/test_helper.rb
CHANGED
@@ -15,13 +15,15 @@ require "minitest-spec-context"
|
|
15
15
|
require "mocha/setup"
|
16
16
|
|
17
17
|
require 'hammer_cli'
|
18
|
-
require 'hammer_cli_foreman/commands'
|
19
18
|
|
20
19
|
FOREMAN_VERSION = Gem::Version.new(ENV['TEST_API_VERSION'] || '1.10')
|
21
20
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
21
|
+
HammerCLI.context[:api_connection].create('foreman') do
|
22
|
+
HammerCLI::Apipie::ApiConnection.new({
|
23
|
+
:apidoc_cache_dir => 'test/data/' + FOREMAN_VERSION.to_s,
|
24
|
+
:apidoc_cache_name => 'foreman_api',
|
25
|
+
:dry_run => true
|
26
|
+
})
|
27
|
+
end
|
26
28
|
|
27
29
|
require 'hammer_cli_foreman'
|
@@ -0,0 +1,87 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), '../test_helper')
|
2
|
+
|
3
|
+
describe HammerCLIForeman::Api::InteractiveBasicAuth do
|
4
|
+
let(:request) { mock() }
|
5
|
+
let(:args) { {} }
|
6
|
+
|
7
|
+
context "interactive mode" do
|
8
|
+
before :each do
|
9
|
+
HammerCLI.stubs(:interactive?).returns true
|
10
|
+
end
|
11
|
+
|
12
|
+
it "asks for username and password when nothing was provided" do
|
13
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new(nil, nil)
|
14
|
+
auth.stubs(:ask_user).with("[Foreman] Username: ").returns('user1')
|
15
|
+
auth.stubs(:ask_user).with("[Foreman] Password for user1: ", true).returns('pass')
|
16
|
+
|
17
|
+
request.expects(:basic_auth).with('user1', 'pass')
|
18
|
+
auth.authenticate(request, args)
|
19
|
+
end
|
20
|
+
|
21
|
+
it "asks for the password when username wasn't provided" do
|
22
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new('user1', nil)
|
23
|
+
auth.stubs(:ask_user).with("[Foreman] Password for user1: ", true).returns('pass')
|
24
|
+
|
25
|
+
request.expects(:basic_auth).with('user1', 'pass')
|
26
|
+
auth.authenticate(request, args)
|
27
|
+
end
|
28
|
+
|
29
|
+
it "asks for the username when password wasn't provided" do
|
30
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new(nil, 'pass')
|
31
|
+
auth.stubs(:ask_user).with("[Foreman] Username: ").returns('user1')
|
32
|
+
|
33
|
+
request.expects(:basic_auth).with('user1', 'pass')
|
34
|
+
auth.authenticate(request, args)
|
35
|
+
end
|
36
|
+
|
37
|
+
it "sets provided credentials" do
|
38
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new('user1', 'pass')
|
39
|
+
|
40
|
+
request.expects(:basic_auth).with('user1', 'pass')
|
41
|
+
auth.authenticate(request, args)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context "non-interactive mode" do
|
46
|
+
it "desn't ask for credentials when tye're not provided" do
|
47
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new(nil, nil)
|
48
|
+
auth.expects(:ask_user).never
|
49
|
+
|
50
|
+
request.expects(:basic_auth).with(nil, nil)
|
51
|
+
auth.authenticate(request, args)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe '#user' do
|
56
|
+
it "asks for username whe it wasn't provided" do
|
57
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new(nil, nil)
|
58
|
+
auth.expects(:ask_user).with("[Foreman] Username: ").returns('user1')
|
59
|
+
|
60
|
+
assert_equal 'user1', auth.user
|
61
|
+
end
|
62
|
+
|
63
|
+
it "returns the username" do
|
64
|
+
auth = HammerCLIForeman::Api::InteractiveBasicAuth.new('user1', nil)
|
65
|
+
|
66
|
+
assert_equal 'user1', auth.user
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe '#error' do
|
71
|
+
let(:auth) { HammerCLIForeman::Api::InteractiveBasicAuth.new(nil, nil) }
|
72
|
+
|
73
|
+
it 'overrides exception message for unauthorized exception' do
|
74
|
+
ex = RestClient::Unauthorized.new
|
75
|
+
auth.error(ex)
|
76
|
+
|
77
|
+
assert_equal 'Invalid username or password', ex.message
|
78
|
+
end
|
79
|
+
|
80
|
+
it 'keeps the message for other exceptions' do
|
81
|
+
ex = RuntimeError.new('Some error')
|
82
|
+
auth.error(ex)
|
83
|
+
|
84
|
+
assert_equal 'Some error', ex.message
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,263 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), '../test_helper')
|
2
|
+
|
3
|
+
describe HammerCLIForeman::Api::SessionAuthenticatorWrapper do
|
4
|
+
|
5
|
+
let(:wrapped_auth) { mock() }
|
6
|
+
let(:url) { 'http://foreman.example.com' }
|
7
|
+
let(:args) { {} }
|
8
|
+
let(:request) { Net::HTTP::Get.new(URI(url), {}) }
|
9
|
+
|
10
|
+
def session_file(dir)
|
11
|
+
"#{dir}/http_foreman.example.com"
|
12
|
+
end
|
13
|
+
|
14
|
+
def write_session(dir, content, permissions=nil)
|
15
|
+
File.open(session_file(dir), 'w', permissions) do |f|
|
16
|
+
f.write(content)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def prepare_session_storage(options = {}, &block)
|
21
|
+
options[:dir_permissions] ||= 0700
|
22
|
+
options[:file_permissions] ||= 0600
|
23
|
+
options[:user_name] ||= 'admin'
|
24
|
+
|
25
|
+
out = err = ""
|
26
|
+
|
27
|
+
dir = Dir.mktmpdir
|
28
|
+
begin
|
29
|
+
FileUtils.chmod(options[:dir_permissions], dir)
|
30
|
+
|
31
|
+
if options[:session_id]
|
32
|
+
session = JSON.dump({
|
33
|
+
:session_id => options[:session_id],
|
34
|
+
:user_name => options[:user_name]
|
35
|
+
})
|
36
|
+
write_session(dir, session, options[:file_permissions])
|
37
|
+
end
|
38
|
+
|
39
|
+
out, err = capture_io do
|
40
|
+
auth = HammerCLIForeman::Api::SessionAuthenticatorWrapper.new(wrapped_auth, url, dir)
|
41
|
+
yield(auth, dir) if block_given?
|
42
|
+
end
|
43
|
+
ensure
|
44
|
+
FileUtils.remove_entry(dir)
|
45
|
+
end
|
46
|
+
|
47
|
+
return dir, out, err
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#initialize' do
|
51
|
+
context "when there's saved session" do
|
52
|
+
it 'warns when session directory has wrong permissions' do
|
53
|
+
dir, out, err = prepare_session_storage :dir_permissions => 0744
|
54
|
+
|
55
|
+
assert_match /Invalid permissions for #{dir}: 40744, expected 40700/, err
|
56
|
+
assert_match /Can't use session auth due to invalid permissions on session files/, err
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'warns when session file has wrong permissions' do
|
60
|
+
dir, out, err = prepare_session_storage :session_id => 'SOME_SESSION_ID', :file_permissions => 0644
|
61
|
+
|
62
|
+
assert_match /Invalid permissions for #{session_file(dir)}: 100644, expected 100600/, err
|
63
|
+
assert_match /Can't use session auth due to invalid permissions on session files/, err
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
describe '#authenticate' do
|
69
|
+
context "when there's saved session" do
|
70
|
+
it 'sets session id in cookies' do
|
71
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
72
|
+
wrapped_auth.expects(:user).returns('admin')
|
73
|
+
auth.authenticate(request, args)
|
74
|
+
|
75
|
+
assert_equal "_session_id=SOME_SESSION_ID", request['Cookie']
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
it 'ignores session when the session file has wrong permissions' do
|
80
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID', :file_permissions => 0644 do |auth, dir|
|
81
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
82
|
+
wrapped_auth.expects(:user).returns('admin')
|
83
|
+
auth.authenticate(request, args)
|
84
|
+
|
85
|
+
assert_nil request['Cookie']
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'ignores session when the directory has wrong permissions' do
|
90
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID', :dir_permissions => 0744 do |auth, dir|
|
91
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
92
|
+
wrapped_auth.expects(:user).returns('admin')
|
93
|
+
auth.authenticate(request, args)
|
94
|
+
|
95
|
+
assert_nil request['Cookie']
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
it "drops the session when usernames don't match" do
|
100
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
101
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
102
|
+
wrapped_auth.expects(:user).returns('other_user')
|
103
|
+
auth.authenticate(request, args)
|
104
|
+
|
105
|
+
refute File.exist?(session_file(dir))
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
context "when the session file is corrupted" do
|
111
|
+
it 'reports error' do
|
112
|
+
dir, out, err = prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
113
|
+
write_session(dir, '{not a valid: json')
|
114
|
+
|
115
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
116
|
+
wrapped_auth.expects(:user).returns('admin')
|
117
|
+
auth.authenticate(request, args)
|
118
|
+
end
|
119
|
+
|
120
|
+
assert_match /Invalid session file format/, err
|
121
|
+
end
|
122
|
+
|
123
|
+
it 'deletes the session file' do
|
124
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
125
|
+
write_session(dir, '{not a valid: json')
|
126
|
+
|
127
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
128
|
+
wrapped_auth.expects(:user).returns('admin')
|
129
|
+
auth.authenticate(request, args)
|
130
|
+
|
131
|
+
refute File.exist?(session_file(dir))
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
context "when no session is saved" do
|
137
|
+
it 'passes to wrapped authenticator' do
|
138
|
+
prepare_session_storage do |auth, dir|
|
139
|
+
wrapped_auth.expects(:authenticate).with(request, args)
|
140
|
+
wrapped_auth.expects(:user).returns('admin')
|
141
|
+
auth.authenticate(request, args)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
describe '#error' do
|
148
|
+
context 'when there is existing session' do
|
149
|
+
it 'deletes saved session on unauthorized exception' do
|
150
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
151
|
+
ex = RestClient::Unauthorized.new
|
152
|
+
|
153
|
+
auth.error(ex)
|
154
|
+
|
155
|
+
refute File.exist?(session_file(dir))
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
it 'overrides 401 error message' do
|
160
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
161
|
+
ex = RestClient::Unauthorized.new
|
162
|
+
auth.error(ex)
|
163
|
+
|
164
|
+
assert_equal 'Session has expired', ex.message
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
it 'keeps error message for other exceptions' do
|
169
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
170
|
+
ex = RuntimeError.new('Some error')
|
171
|
+
wrapped_auth.expects(:error).with(ex)
|
172
|
+
auth.error(ex)
|
173
|
+
|
174
|
+
assert_equal 'Some error', ex.message
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
it 'keeps sessione for other exceptions' do
|
179
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
180
|
+
ex = RuntimeError.new('Some error')
|
181
|
+
wrapped_auth.expects(:error).with(ex)
|
182
|
+
auth.error(ex)
|
183
|
+
|
184
|
+
assert File.exist?(session_file(dir))
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
189
|
+
context 'when there is no existing session' do
|
190
|
+
it 'passes exception to wrapped authenticator on unauthorized exception' do
|
191
|
+
prepare_session_storage do |auth, dir|
|
192
|
+
ex = RestClient::Unauthorized.new
|
193
|
+
|
194
|
+
wrapped_auth.expects(:error).with(ex)
|
195
|
+
auth.error(ex)
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
it 'keeps error message for other exceptions' do
|
200
|
+
prepare_session_storage do |auth, dir|
|
201
|
+
ex = RuntimeError.new('Some error')
|
202
|
+
wrapped_auth.expects(:error).with(ex)
|
203
|
+
auth.error(ex)
|
204
|
+
|
205
|
+
assert_equal 'Some error', ex.message
|
206
|
+
end
|
207
|
+
end
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
describe '#response' do
|
212
|
+
it "saves session id if it's in response cookies" do
|
213
|
+
prepare_session_storage :session_id => 'SOME_SESSION_ID' do |auth, dir|
|
214
|
+
resp = stub(:cookies => {'_session_id' => 'NEW_SESSION_ID'}, :code => 200)
|
215
|
+
|
216
|
+
wrapped_auth.expects(:response).with(resp)
|
217
|
+
wrapped_auth.expects(:user).returns('admin')
|
218
|
+
auth.response(resp)
|
219
|
+
|
220
|
+
session = JSON.parse(File.read(session_file(dir)))
|
221
|
+
|
222
|
+
assert_equal 'NEW_SESSION_ID', session['session_id']
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
it "saves username" do
|
227
|
+
prepare_session_storage do |auth, dir|
|
228
|
+
resp = stub(:cookies => {'_session_id' => 'NEW_SESSION_ID'}, :code => 200)
|
229
|
+
|
230
|
+
wrapped_auth.expects(:response).with(resp)
|
231
|
+
wrapped_auth.expects(:user).returns('admin')
|
232
|
+
auth.response(resp)
|
233
|
+
|
234
|
+
session = JSON.parse(File.read(session_file(dir)))
|
235
|
+
|
236
|
+
assert_equal 'admin', session['user_name']
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
it "ignores requests without session cookie" do
|
241
|
+
prepare_session_storage do |auth, dir|
|
242
|
+
resp = stub(:cookies => {}, :code => 200)
|
243
|
+
|
244
|
+
wrapped_auth.expects(:response).with(resp)
|
245
|
+
auth.response(resp)
|
246
|
+
|
247
|
+
refute File.exist?(session_file(dir))
|
248
|
+
end
|
249
|
+
end
|
250
|
+
|
251
|
+
it "ignores unauthorized requests" do
|
252
|
+
prepare_session_storage do |auth, dir|
|
253
|
+
resp = stub(:cookies => {}, :code => 401)
|
254
|
+
|
255
|
+
wrapped_auth.expects(:response).with(resp)
|
256
|
+
auth.response(resp)
|
257
|
+
|
258
|
+
refute File.exist?(session_file(dir))
|
259
|
+
end
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
end
|
@@ -116,7 +116,7 @@ describe HammerCLIForeman::ExceptionHandler do
|
|
116
116
|
end
|
117
117
|
|
118
118
|
context "redirects" do
|
119
|
-
let(:response) { HammerCLIForeman.foreman_api.send(:create_fake_response, 301, '', 'GET', 'http://foreman.example.com/api/architectures') }
|
119
|
+
let(:response) { HammerCLIForeman.foreman_api.api.send(:create_fake_response, 301, '', 'GET', 'http://foreman.example.com/api/architectures') }
|
120
120
|
it "should detect http to https redirection error" do
|
121
121
|
response.headers[:location] = 'https://foreman.example.com/api/architectures'
|
122
122
|
ex = RestClient::MovedPermanently.new(response)
|
data/test/unit/host_test.rb
CHANGED
@@ -191,7 +191,7 @@ describe HammerCLIForeman::Host do
|
|
191
191
|
let(:cmd) { HammerCLIForeman::Host::CreateCommand.new("", ctx) }
|
192
192
|
|
193
193
|
before :each do
|
194
|
-
HammerCLIForeman::
|
194
|
+
HammerCLIForeman::Hosts::CommonUpdateOptions.stubs(:ask_password).returns("password")
|
195
195
|
end
|
196
196
|
|
197
197
|
context "parameters" do
|
@@ -244,7 +244,7 @@ describe HammerCLIForeman::Host do
|
|
244
244
|
let(:cmd) { HammerCLIForeman::Host::UpdateCommand.new("", ctx) }
|
245
245
|
|
246
246
|
before :each do
|
247
|
-
HammerCLIForeman::
|
247
|
+
HammerCLIForeman::Hosts::CommonUpdateOptions.stubs(:ask_password).returns("password")
|
248
248
|
end
|
249
249
|
|
250
250
|
context "parameters" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hammer_cli_foreman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomáš Strachota
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-12-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hammer_cli
|
@@ -17,41 +17,42 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.9.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 0.9.0
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: apipie-bindings
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - ">="
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 0.0.
|
34
|
+
version: 0.0.19
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 0.0.
|
42
|
-
description:
|
43
|
-
|
41
|
+
version: 0.0.19
|
42
|
+
description: 'Foreman commands for Hammer CLI
|
43
|
+
|
44
|
+
'
|
44
45
|
email: tstracho@redhat.com
|
45
46
|
executables: []
|
46
47
|
extensions: []
|
47
48
|
extra_rdoc_files:
|
48
|
-
- doc/configuration.md
|
49
|
-
- doc/using_hammer_cli_foreman_command.md
|
50
49
|
- doc/developer_docs.md
|
51
|
-
- doc/
|
50
|
+
- doc/using_hammer_cli_foreman_command.md
|
51
|
+
- doc/configuration.md
|
52
52
|
- doc/host_create.md
|
53
|
-
- doc/name_id_resolution.md
|
54
53
|
- doc/release_notes.md
|
54
|
+
- doc/option_builder.md
|
55
|
+
- doc/name_id_resolution.md
|
55
56
|
- README.md
|
56
57
|
files:
|
57
58
|
- README.md
|
@@ -64,6 +65,10 @@ files:
|
|
64
65
|
- doc/release_notes.md
|
65
66
|
- doc/using_hammer_cli_foreman_command.md
|
66
67
|
- lib/hammer_cli_foreman.rb
|
68
|
+
- lib/hammer_cli_foreman/api.rb
|
69
|
+
- lib/hammer_cli_foreman/api/connection.rb
|
70
|
+
- lib/hammer_cli_foreman/api/interactive_basic_auth.rb
|
71
|
+
- lib/hammer_cli_foreman/api/session_authenticator_wrapper.rb
|
67
72
|
- lib/hammer_cli_foreman/architecture.rb
|
68
73
|
- lib/hammer_cli_foreman/associating_commands.rb
|
69
74
|
- lib/hammer_cli_foreman/auth.rb
|
@@ -72,7 +77,21 @@ files:
|
|
72
77
|
- lib/hammer_cli_foreman/commands.rb
|
73
78
|
- lib/hammer_cli_foreman/common_parameter.rb
|
74
79
|
- lib/hammer_cli_foreman/compute_resource.rb
|
75
|
-
- lib/hammer_cli_foreman/
|
80
|
+
- lib/hammer_cli_foreman/compute_resources/all.rb
|
81
|
+
- lib/hammer_cli_foreman/compute_resources/ec2.rb
|
82
|
+
- lib/hammer_cli_foreman/compute_resources/ec2/host_help_extenstion.rb
|
83
|
+
- lib/hammer_cli_foreman/compute_resources/gce.rb
|
84
|
+
- lib/hammer_cli_foreman/compute_resources/gce/host_help_extenstion.rb
|
85
|
+
- lib/hammer_cli_foreman/compute_resources/libvirt.rb
|
86
|
+
- lib/hammer_cli_foreman/compute_resources/libvirt/host_help_extenstion.rb
|
87
|
+
- lib/hammer_cli_foreman/compute_resources/openstack.rb
|
88
|
+
- lib/hammer_cli_foreman/compute_resources/openstack/host_help_extenstion.rb
|
89
|
+
- lib/hammer_cli_foreman/compute_resources/ovirt.rb
|
90
|
+
- lib/hammer_cli_foreman/compute_resources/ovirt/host_help_extenstion.rb
|
91
|
+
- lib/hammer_cli_foreman/compute_resources/rackspace.rb
|
92
|
+
- lib/hammer_cli_foreman/compute_resources/rackspace/host_help_extenstion.rb
|
93
|
+
- lib/hammer_cli_foreman/compute_resources/vmware.rb
|
94
|
+
- lib/hammer_cli_foreman/compute_resources/vmware/host_help_extenstion.rb
|
76
95
|
- lib/hammer_cli_foreman/defaults.rb
|
77
96
|
- lib/hammer_cli_foreman/dependency_resolver.rb
|
78
97
|
- lib/hammer_cli_foreman/domain.rb
|
@@ -84,6 +103,8 @@ files:
|
|
84
103
|
- lib/hammer_cli_foreman/filter.rb
|
85
104
|
- lib/hammer_cli_foreman/host.rb
|
86
105
|
- lib/hammer_cli_foreman/hostgroup.rb
|
106
|
+
- lib/hammer_cli_foreman/hosts/common_update_help.rb
|
107
|
+
- lib/hammer_cli_foreman/hosts/common_update_options.rb
|
87
108
|
- lib/hammer_cli_foreman/i18n.rb
|
88
109
|
- lib/hammer_cli_foreman/id_resolver.rb
|
89
110
|
- lib/hammer_cli_foreman/image.rb
|
@@ -427,6 +448,8 @@ files:
|
|
427
448
|
- test/reports/TEST-HammerCLIForeman-User.xml
|
428
449
|
- test/reports/TEST-MiniTest-Spec.xml
|
429
450
|
- test/test_helper.rb
|
451
|
+
- test/unit/api/interactive_basic_auth_test.rb
|
452
|
+
- test/unit/api/session_authenticator_wrapper_test.rb
|
430
453
|
- test/unit/api_test.rb
|
431
454
|
- test/unit/apipie_resource_mock.rb
|
432
455
|
- test/unit/architecture_test.rb
|
@@ -434,7 +457,6 @@ files:
|
|
434
457
|
- test/unit/commands_test.rb
|
435
458
|
- test/unit/common_parameter_test.rb
|
436
459
|
- test/unit/compute_resource_test.rb
|
437
|
-
- test/unit/credentials_test.rb
|
438
460
|
- test/unit/data/test_api.json
|
439
461
|
- test/unit/defaults_test.rb
|
440
462
|
- test/unit/dependency_resolver_test.rb
|
@@ -493,310 +515,310 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
493
515
|
version: '0'
|
494
516
|
requirements: []
|
495
517
|
rubyforge_project:
|
496
|
-
rubygems_version: 2.
|
518
|
+
rubygems_version: 2.5.1
|
497
519
|
signing_key:
|
498
520
|
specification_version: 4
|
499
521
|
summary: Foreman commands for Hammer
|
500
522
|
test_files:
|
501
|
-
- test/
|
502
|
-
- test/
|
503
|
-
- test/
|
504
|
-
- test/
|
505
|
-
- test/
|
523
|
+
- test/functional/smart_variable_test.rb
|
524
|
+
- test/functional/location_test.rb
|
525
|
+
- test/functional/test_helper.rb
|
526
|
+
- test/functional/smart_class_parameter_test.rb
|
527
|
+
- test/functional/organization_test.rb
|
528
|
+
- test/functional/commands/list_test.rb
|
529
|
+
- test/functional/hostgroup/create_test.rb
|
530
|
+
- test/functional/hostgroup/update_test.rb
|
531
|
+
- test/functional/template_test.rb
|
532
|
+
- test/functional/host_test.rb
|
533
|
+
- test/unit/common_parameter_test.rb
|
534
|
+
- test/unit/api_test.rb
|
535
|
+
- test/unit/subnet_test.rb
|
536
|
+
- test/unit/exception_handler_test.rb
|
537
|
+
- test/unit/dependency_resolver_test.rb
|
538
|
+
- test/unit/realm_test.rb
|
539
|
+
- test/unit/apipie_resource_mock.rb
|
540
|
+
- test/unit/smart_variable_test.rb
|
541
|
+
- test/unit/user_test.rb
|
542
|
+
- test/unit/id_resolver_test.rb
|
543
|
+
- test/unit/puppet_class_test.rb
|
544
|
+
- test/unit/location_test.rb
|
545
|
+
- test/unit/external_usergroup_test.rb
|
546
|
+
- test/unit/test_helper.rb
|
547
|
+
- test/unit/usergroup_test.rb
|
548
|
+
- test/unit/data/test_api.json
|
549
|
+
- test/unit/smart_class_parameter_test.rb
|
550
|
+
- test/unit/param_filters_test.rb
|
551
|
+
- test/unit/auth_source_ldap_test.rb
|
552
|
+
- test/unit/smart_proxy_test.rb
|
553
|
+
- test/unit/hostgroup_test.rb
|
554
|
+
- test/unit/organization_test.rb
|
555
|
+
- test/unit/helpers/resource_disabled.rb
|
556
|
+
- test/unit/helpers/command.rb
|
557
|
+
- test/unit/helpers/fake_searchables.rb
|
558
|
+
- test/unit/fact_test.rb
|
559
|
+
- test/unit/commands_test.rb
|
560
|
+
- test/unit/operating_system_test.rb
|
561
|
+
- test/unit/api/interactive_basic_auth_test.rb
|
562
|
+
- test/unit/api/session_authenticator_wrapper_test.rb
|
563
|
+
- test/unit/partition_table_test.rb
|
564
|
+
- test/unit/output/formatters_test.rb
|
565
|
+
- test/unit/role_test.rb
|
566
|
+
- test/unit/compute_resource_test.rb
|
567
|
+
- test/unit/report_test.rb
|
568
|
+
- test/unit/model_test.rb
|
569
|
+
- test/unit/defaults_test.rb
|
570
|
+
- test/unit/domain_test.rb
|
571
|
+
- test/unit/environment_test.rb
|
572
|
+
- test/unit/image_test.rb
|
573
|
+
- test/unit/template_test.rb
|
574
|
+
- test/unit/test_output_adapter.rb
|
575
|
+
- test/unit/option_builders_test.rb
|
576
|
+
- test/unit/media_test.rb
|
577
|
+
- test/unit/filter_test.rb
|
578
|
+
- test/unit/host_test.rb
|
579
|
+
- test/unit/architecture_test.rb
|
580
|
+
- test/test_helper.rb
|
581
|
+
- test/data/1.10/foreman_api.json
|
582
|
+
- test/data/README.md
|
583
|
+
- test/data/1.11/foreman_api.json
|
584
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-output.xml
|
506
585
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand.xml
|
507
|
-
- test/reports/TEST-HammerCLIForeman-
|
586
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
587
|
+
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
588
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
|
589
|
+
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand.xml
|
590
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
|
591
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
508
592
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand.xml
|
509
|
-
- test/reports/TEST-HammerCLIForeman-
|
510
|
-
- test/reports/TEST-HammerCLIForeman-
|
511
|
-
- test/reports/TEST-HammerCLIForeman-
|
593
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
|
594
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand-parameters.xml
|
595
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand-parameters.xml
|
596
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
|
597
|
+
- test/reports/TEST-HammerCLIForeman-Medium.xml
|
598
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand.xml
|
599
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-parameters.xml
|
600
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
601
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
|
602
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand.xml
|
603
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand-output.xml
|
604
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand.xml
|
605
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand.xml
|
606
|
+
- test/reports/TEST-MiniTest-Spec.xml
|
607
|
+
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
|
608
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand.xml
|
609
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand.xml
|
610
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
|
611
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
|
612
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand.xml
|
613
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-parameters.xml
|
614
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand.xml
|
615
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
|
616
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-resource-disabled.xml
|
512
617
|
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-resource-disabled.xml
|
513
|
-
- test/reports/TEST-HammerCLIForeman-
|
514
|
-
- test/reports/TEST-HammerCLIForeman-
|
515
|
-
- test/reports/TEST-HammerCLIForeman-
|
516
|
-
- test/reports/TEST-HammerCLIForeman-
|
517
|
-
- test/reports/TEST-HammerCLIForeman-
|
518
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-
|
618
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-output.xml
|
619
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
|
620
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
|
621
|
+
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
|
622
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
|
623
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
|
519
624
|
- test/reports/TEST-HammerCLIForeman-User-CreateCommand-parameters.xml
|
520
|
-
- test/reports/TEST-HammerCLIForeman-
|
521
|
-
- test/reports/TEST-HammerCLIForeman-
|
522
|
-
- test/reports/TEST-HammerCLIForeman-
|
523
|
-
- test/reports/TEST-HammerCLIForeman-
|
524
|
-
- test/reports/TEST-HammerCLIForeman-
|
525
|
-
- test/reports/TEST-HammerCLIForeman-
|
526
|
-
- test/reports/TEST-HammerCLIForeman-
|
527
|
-
- test/reports/TEST-HammerCLIForeman-
|
528
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand.xml
|
529
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
|
530
|
-
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
|
531
|
-
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
532
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-CreateCommand-parameters.xml
|
533
|
-
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand.xml
|
534
|
-
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
535
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
|
536
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
|
537
|
-
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
|
538
|
-
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
|
539
|
-
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand.xml
|
540
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
|
541
|
-
- test/reports/TEST-HammerCLIForeman-Location.xml
|
542
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
|
543
|
-
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
|
544
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
|
545
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
|
546
|
-
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
|
547
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
|
548
|
-
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
549
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
550
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
|
625
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup.xml
|
626
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
|
627
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
|
628
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
|
629
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand.xml
|
630
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
631
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
632
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
551
633
|
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-parameters.xml
|
552
|
-
- test/reports/TEST-HammerCLIForeman-
|
553
|
-
- test/reports/TEST-HammerCLIForeman-
|
554
|
-
- test/reports/TEST-HammerCLIForeman-
|
555
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
|
556
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
634
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
|
635
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
|
636
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
|
557
637
|
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-output.xml
|
558
|
-
- test/reports/TEST-HammerCLIForeman-
|
559
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable.xml
|
560
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand.xml
|
561
|
-
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
562
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
|
563
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
|
564
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
565
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
|
566
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
|
567
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
|
568
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
|
569
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
|
570
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
|
638
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
571
639
|
- test/reports/TEST-HammerCLIForeman-Hostgroup-SetParameterCommand-parameters.xml
|
572
|
-
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
|
573
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
574
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
575
|
-
- test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
|
576
640
|
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-parameters.xml
|
577
|
-
- test/reports/TEST-HammerCLIForeman-Organization
|
578
|
-
- test/reports/TEST-HammerCLIForeman-
|
579
|
-
- test/reports/TEST-HammerCLIForeman-
|
580
|
-
- test/reports/TEST-HammerCLIForeman-
|
581
|
-
- test/reports/TEST-HammerCLIForeman-
|
582
|
-
- test/reports/TEST-HammerCLIForeman-
|
583
|
-
- test/reports/TEST-HammerCLIForeman-
|
641
|
+
- test/reports/TEST-HammerCLIForeman-Organization.xml
|
642
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand.xml
|
643
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand-parameters.xml
|
644
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-output.xml
|
645
|
+
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand.xml
|
646
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand.xml
|
647
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand.xml
|
648
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-output.xml
|
649
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-parameters.xml
|
650
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
|
651
|
+
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand-parameters.xml
|
652
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand-parameters.xml
|
653
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand-parameters.xml
|
654
|
+
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand.xml
|
655
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand.xml
|
584
656
|
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand.xml
|
585
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
|
586
|
-
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
|
587
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
|
588
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
|
589
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem.xml
|
590
|
-
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand-parameters.xml
|
591
|
-
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
|
592
|
-
- test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
|
593
|
-
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
|
594
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand.xml
|
595
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
596
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
|
597
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
|
598
|
-
- test/reports/TEST-HammerCLIForeman-Template-CreateCommand.xml
|
599
|
-
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
|
600
|
-
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
|
601
657
|
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-output.xml
|
602
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
|
603
|
-
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand.xml
|
604
|
-
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-output.xml
|
605
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
|
606
|
-
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand-output.xml
|
607
658
|
- test/reports/TEST-HammerCLIForeman-Template-UpdateCommand-parameters.xml
|
608
|
-
- test/reports/TEST-HammerCLIForeman-
|
609
|
-
- test/reports/TEST-HammerCLIForeman-
|
610
|
-
- test/reports/TEST-HammerCLIForeman-
|
611
|
-
- test/reports/TEST-HammerCLIForeman-
|
612
|
-
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-resource-disabled.xml
|
613
|
-
- test/reports/TEST-HammerCLIForeman-Medium.xml
|
614
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
|
615
|
-
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
|
616
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
617
|
-
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-resource-disabled.xml
|
618
|
-
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
619
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
|
620
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
621
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
622
|
-
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
|
623
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand.xml
|
624
|
-
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand.xml
|
625
|
-
- test/reports/TEST-HammerCLIForeman-PartitionTable-UpdateCommand.xml
|
626
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
|
627
|
-
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-resource-disabled.xml
|
659
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
660
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand.xml
|
661
|
+
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand.xml
|
662
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand.xml
|
628
663
|
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand-parameters.xml
|
629
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
|
630
664
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-output.xml
|
631
|
-
- test/reports/TEST-HammerCLIForeman-
|
632
|
-
- test/reports/TEST-HammerCLIForeman-
|
633
|
-
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand-parameters.xml
|
634
|
-
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
635
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
|
636
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
637
|
-
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
|
638
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
639
|
-
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
|
640
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand-parameters.xml
|
641
|
-
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
|
642
|
-
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
|
643
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
|
665
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand.xml
|
666
|
+
- test/reports/TEST-HammerCLIForeman-Host-CreateCommand.xml
|
644
667
|
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand-parameters.xml
|
645
|
-
- test/reports/TEST-HammerCLIForeman-
|
646
|
-
- test/reports/TEST-HammerCLIForeman-
|
647
|
-
- test/reports/TEST-HammerCLIForeman-
|
648
|
-
- test/reports/TEST-HammerCLIForeman-
|
649
|
-
- test/reports/TEST-HammerCLIForeman-
|
650
|
-
- test/reports/TEST-HammerCLIForeman-
|
651
|
-
- test/reports/TEST-HammerCLIForeman-
|
652
|
-
- test/reports/TEST-HammerCLIForeman-
|
653
|
-
- test/reports/TEST-HammerCLIForeman-
|
654
|
-
- test/reports/TEST-HammerCLIForeman-
|
655
|
-
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
|
656
|
-
- test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
|
657
|
-
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand.xml
|
658
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
659
|
-
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
|
660
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-parameters.xml
|
661
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
|
662
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
|
663
|
-
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-resource-disabled.xml
|
664
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter-DeleteCommand-parameters.xml
|
665
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
668
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand.xml
|
669
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand.xml
|
670
|
+
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
|
671
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-parameters.xml
|
672
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand.xml
|
673
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-ListCommand-output.xml
|
674
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-output.xml
|
675
|
+
- test/reports/TEST-HammerCLIForeman-Host-PuppetRunCommand.xml
|
676
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-CreateCommand.xml
|
677
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand-output.xml
|
666
678
|
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand.xml
|
667
|
-
- test/reports/TEST-HammerCLIForeman-
|
668
|
-
- test/reports/TEST-HammerCLIForeman-
|
669
|
-
- test/reports/TEST-HammerCLIForeman-
|
670
|
-
- test/reports/TEST-HammerCLIForeman-
|
671
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
|
672
|
-
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
|
673
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
|
674
|
-
- test/reports/TEST-MiniTest-Spec.xml
|
675
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-output.xml
|
676
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
677
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
|
678
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
|
679
|
-
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
679
|
+
- test/reports/TEST-HammerCLIForeman-Medium-DeleteCommand.xml
|
680
|
+
- test/reports/TEST-HammerCLIForeman-User-CreateCommand.xml
|
681
|
+
- test/reports/TEST-HammerCLIForeman-Medium-UpdateCommand-parameters.xml
|
682
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand.xml
|
680
683
|
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-output.xml
|
681
|
-
- test/reports/TEST-HammerCLIForeman-
|
682
|
-
- test/reports/TEST-HammerCLIForeman-
|
683
|
-
- test/reports/TEST-HammerCLIForeman-
|
684
|
-
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
|
685
|
-
- test/reports/TEST-HammerCLIForeman-CommonParameter.xml
|
686
|
-
- test/reports/TEST-HammerCLIForeman-User.xml
|
687
|
-
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
|
688
|
-
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-output.xml
|
689
|
-
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
|
690
|
-
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
691
|
-
- test/reports/TEST-HammerCLIForeman-Template-DumpCommand-parameters.xml
|
692
|
-
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
693
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
|
694
|
-
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
|
695
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-parameters.xml
|
696
|
-
- test/reports/TEST-HammerCLIForeman-ComputeResource.xml
|
697
|
-
- test/reports/TEST-HammerCLIForeman-Template-InfoCommand-parameters.xml
|
698
|
-
- test/reports/TEST-HammerCLIForeman-Domain-ListCommand-output.xml
|
684
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-ListCommand.xml
|
685
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand-parameters.xml
|
686
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-InfoCommand-parameters.xml
|
699
687
|
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand-parameters.xml
|
700
|
-
- test/reports/TEST-HammerCLIForeman-
|
701
|
-
- test/reports/TEST-HammerCLIForeman-
|
702
|
-
- test/reports/TEST-HammerCLIForeman-
|
703
|
-
- test/reports/TEST-HammerCLIForeman-
|
704
|
-
- test/reports/TEST-HammerCLIForeman-
|
688
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-parameters.xml
|
689
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-output.xml
|
690
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand.xml
|
691
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DeleteCommand-parameters.xml
|
692
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand.xml
|
705
693
|
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand.xml
|
706
|
-
- test/reports/TEST-HammerCLIForeman-
|
694
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-DeleteCommand-parameters.xml
|
695
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-DeleteCommand.xml
|
696
|
+
- test/reports/TEST-HammerCLIForeman-User-DeleteCommand-parameters.xml
|
697
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-parameters.xml
|
707
698
|
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-parameters.xml
|
708
|
-
- test/reports/TEST-HammerCLIForeman-
|
709
|
-
- test/reports/TEST-HammerCLIForeman-
|
699
|
+
- test/reports/TEST-HammerCLIForeman-Host.xml
|
700
|
+
- test/reports/TEST-HammerCLIForeman-Location.xml
|
701
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-ListCommand-parameters.xml
|
702
|
+
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand-parameters.xml
|
703
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand.xml
|
704
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand-parameters.xml
|
705
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-parameters.xml
|
710
706
|
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand.xml
|
711
|
-
- test/reports/TEST-HammerCLIForeman-
|
712
|
-
- test/reports/TEST-HammerCLIForeman-
|
713
|
-
- test/reports/TEST-HammerCLIForeman-
|
714
|
-
- test/reports/TEST-HammerCLIForeman-
|
715
|
-
- test/reports/TEST-HammerCLIForeman-Subnet-
|
716
|
-
- test/reports/TEST-HammerCLIForeman-
|
717
|
-
- test/reports/TEST-HammerCLIForeman-
|
718
|
-
- test/reports/TEST-HammerCLIForeman-
|
719
|
-
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
|
720
|
-
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand.xml
|
707
|
+
- test/reports/TEST-HammerCLIForeman-User.xml
|
708
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource.xml
|
709
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteParameterCommand.xml
|
710
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand-parameters.xml
|
711
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand-parameters.xml
|
712
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-resource-disabled.xml
|
713
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand.xml
|
714
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-output.xml
|
721
715
|
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand-parameters.xml
|
722
|
-
- test/reports/TEST-HammerCLIForeman-
|
716
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand.xml
|
723
717
|
- test/reports/TEST-HammerCLIForeman-Domain.xml
|
724
|
-
- test/reports/TEST-HammerCLIForeman-
|
718
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-parameters.xml
|
719
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand.xml
|
720
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter.xml
|
721
|
+
- test/reports/TEST-HammerCLIForeman-Environment-CreateCommand-parameters.xml
|
722
|
+
- test/reports/TEST-HammerCLIForeman-Medium-CreateCommand.xml
|
723
|
+
- test/reports/TEST-HammerCLIForeman-User-UpdateCommand.xml
|
724
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable.xml
|
725
|
+
- test/reports/TEST-HammerCLIForeman-Location-UpdateCommand-parameters.xml
|
726
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand.xml
|
727
|
+
- test/reports/TEST-HammerCLIForeman-Environment-ListCommand-parameters.xml
|
728
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-UpdateCommand-parameters.xml
|
729
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-UpdateCommand.xml
|
730
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-ListCommand-output.xml
|
731
|
+
- test/reports/TEST-HammerCLIForeman-Host-ListCommand.xml
|
732
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand.xml
|
733
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteParameterCommand.xml
|
734
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-DeleteCommand-parameters.xml
|
735
|
+
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand-parameters.xml
|
736
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-CreateCommand-parameters.xml
|
737
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand-output.xml
|
738
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand-output.xml
|
739
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-UpdateCommand.xml
|
740
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand-parameters.xml
|
741
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand.xml
|
742
|
+
- test/reports/TEST-HammerCLIForeman-Organization-CreateCommand-parameters.xml
|
743
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-DumpCommand-parameters.xml
|
744
|
+
- test/reports/TEST-HammerCLIForeman-Host-StatusCommand.xml
|
745
|
+
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand-parameters.xml
|
746
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand-parameters.xml
|
747
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-UpdateCommand-parameters.xml
|
748
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand.xml
|
749
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-output.xml
|
750
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand.xml
|
751
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand-parameters.xml
|
752
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand.xml
|
725
753
|
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand-parameters.xml
|
726
|
-
- test/reports/TEST-HammerCLIForeman-
|
754
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand-parameters.xml
|
755
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-SetCommand-parameters.xml
|
756
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-output.xml
|
757
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-CreateCommand.xml
|
758
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-output.xml
|
759
|
+
- test/reports/TEST-HammerCLIForeman-OperatingSystem-SetParameterCommand.xml
|
760
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteCommand-parameters.xml
|
761
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-output.xml
|
762
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy.xml
|
763
|
+
- test/reports/TEST-HammerCLIForeman-Organization-DeleteCommand-resource-disabled.xml
|
764
|
+
- test/reports/TEST-HammerCLIForeman-Domain-UpdateCommand-parameters.xml
|
765
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-DeleteCommand.xml
|
766
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-UpdateCommand-parameters.xml
|
727
767
|
- test/reports/TEST-HammerCLIForeman-Environment-DeleteCommand.xml
|
728
|
-
- test/reports/TEST-HammerCLIForeman-
|
729
|
-
- test/reports/TEST-HammerCLIForeman-
|
730
|
-
- test/reports/TEST-HammerCLIForeman-
|
731
|
-
- test/reports/TEST-HammerCLIForeman-
|
732
|
-
- test/reports/TEST-HammerCLIForeman-
|
768
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand.xml
|
769
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-CreateCommand-parameters.xml
|
770
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-InfoCommand-parameters.xml
|
771
|
+
- test/reports/TEST-HammerCLIForeman-Template-DeleteCommand.xml
|
772
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand.xml
|
773
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteParameterCommand.xml
|
774
|
+
- test/reports/TEST-HammerCLIForeman-Location-DeleteCommand-parameters.xml
|
775
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-output.xml
|
776
|
+
- test/reports/TEST-HammerCLIForeman-ExceptionHandler.xml
|
777
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-UpdateCommand.xml
|
778
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-output.xml
|
779
|
+
- test/reports/TEST-HammerCLIForeman-Host-InfoCommand-parameters.xml
|
780
|
+
- test/reports/TEST-HammerCLIForeman-Domain-SetParameterCommand.xml
|
781
|
+
- test/reports/TEST-HammerCLIForeman-Domain-InfoCommand-parameters.xml
|
782
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand-parameters.xml
|
783
|
+
- test/reports/TEST-HammerCLIForeman-Architecture.xml
|
784
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand-parameters.xml
|
785
|
+
- test/reports/TEST-HammerCLIForeman-PartitionTable-InfoCommand-parameters.xml
|
786
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-output.xml
|
787
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand.xml
|
788
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListKindsCommand.xml
|
789
|
+
- test/reports/TEST-HammerCLIForeman-Environment-InfoCommand-output.xml
|
790
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-InfoCommand.xml
|
791
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand-parameters.xml
|
792
|
+
- test/reports/TEST-HammerCLIForeman-Medium-InfoCommand-parameters.xml
|
793
|
+
- test/reports/TEST-HammerCLIForeman-Domain-CreateCommand-parameters.xml
|
794
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-InfoCommand-parameters.xml
|
795
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-DeleteCommand-parameters.xml
|
796
|
+
- test/reports/TEST-HammerCLIForeman-Location-ListCommand-resource-disabled.xml
|
797
|
+
- test/reports/TEST-HammerCLIForeman-Subnet.xml
|
798
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand-parameters.xml
|
799
|
+
- test/reports/TEST-HammerCLIForeman-Hostgroup-ListCommand-output.xml
|
733
800
|
- test/reports/TEST-HammerCLIForeman-Template.xml
|
734
|
-
- test/reports/TEST-HammerCLIForeman-
|
735
|
-
- test/reports/TEST-HammerCLIForeman-
|
736
|
-
- test/reports/TEST-HammerCLIForeman-Template-
|
737
|
-
- test/reports/TEST-HammerCLIForeman-
|
738
|
-
- test/reports/TEST-HammerCLIForeman-
|
739
|
-
- test/reports/TEST-HammerCLIForeman-
|
740
|
-
- test/reports/TEST-HammerCLIForeman-
|
741
|
-
- test/reports/TEST-HammerCLIForeman-
|
742
|
-
- test/
|
743
|
-
- test/
|
744
|
-
- test/
|
745
|
-
- test/
|
746
|
-
- test/
|
747
|
-
- test/
|
748
|
-
- test/
|
749
|
-
- test/
|
750
|
-
- test/
|
751
|
-
- test/
|
752
|
-
- test/
|
753
|
-
- test/
|
754
|
-
- test/
|
755
|
-
- test/
|
756
|
-
- test/
|
757
|
-
- test/
|
758
|
-
- test/unit/api_test.rb
|
759
|
-
- test/unit/host_test.rb
|
760
|
-
- test/unit/smart_variable_test.rb
|
761
|
-
- test/unit/organization_test.rb
|
762
|
-
- test/unit/smart_proxy_test.rb
|
763
|
-
- test/unit/subnet_test.rb
|
764
|
-
- test/unit/location_test.rb
|
765
|
-
- test/unit/realm_test.rb
|
766
|
-
- test/unit/dependency_resolver_test.rb
|
767
|
-
- test/unit/helpers/command.rb
|
768
|
-
- test/unit/helpers/resource_disabled.rb
|
769
|
-
- test/unit/helpers/fake_searchables.rb
|
770
|
-
- test/unit/credentials_test.rb
|
771
|
-
- test/unit/operating_system_test.rb
|
772
|
-
- test/unit/template_test.rb
|
773
|
-
- test/unit/environment_test.rb
|
774
|
-
- test/unit/commands_test.rb
|
775
|
-
- test/unit/partition_table_test.rb
|
776
|
-
- test/unit/hostgroup_test.rb
|
777
|
-
- test/unit/smart_class_parameter_test.rb
|
778
|
-
- test/unit/auth_source_ldap_test.rb
|
779
|
-
- test/unit/param_filters_test.rb
|
780
|
-
- test/unit/report_test.rb
|
781
|
-
- test/unit/role_test.rb
|
782
|
-
- test/unit/output/formatters_test.rb
|
783
|
-
- test/unit/id_resolver_test.rb
|
784
|
-
- test/unit/test_output_adapter.rb
|
785
|
-
- test/unit/option_builders_test.rb
|
786
|
-
- test/unit/fact_test.rb
|
787
|
-
- test/unit/model_test.rb
|
788
|
-
- test/unit/compute_resource_test.rb
|
789
|
-
- test/unit/puppet_class_test.rb
|
790
|
-
- test/unit/usergroup_test.rb
|
791
|
-
- test/unit/apipie_resource_mock.rb
|
792
|
-
- test/unit/common_parameter_test.rb
|
793
|
-
- test/unit/test_helper.rb
|
794
|
-
- test/unit/architecture_test.rb
|
795
|
-
- test/unit/user_test.rb
|
796
|
-
- test/unit/external_usergroup_test.rb
|
797
|
-
- test/unit/data/test_api.json
|
798
|
-
- test/test_helper.rb
|
799
|
-
- test/data/README.md
|
800
|
-
- test/data/1.10/foreman_api.json
|
801
|
-
- test/data/1.11/foreman_api.json
|
802
|
-
has_rdoc:
|
801
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-ListCommand-parameters.xml
|
802
|
+
- test/reports/TEST-HammerCLIForeman-Organization-InfoCommand-parameters.xml
|
803
|
+
- test/reports/TEST-HammerCLIForeman-Template-ListCommand.xml
|
804
|
+
- test/reports/TEST-HammerCLIForeman-SmartProxy-InfoCommand.xml
|
805
|
+
- test/reports/TEST-HammerCLIForeman-Location-InfoCommand.xml
|
806
|
+
- test/reports/TEST-HammerCLIForeman-User-ListCommand-parameters.xml
|
807
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-DeleteCommand.xml
|
808
|
+
- test/reports/TEST-HammerCLIForeman-Location-CreateCommand-parameters.xml
|
809
|
+
- test/reports/TEST-HammerCLIForeman-Organization-UpdateCommand-resource-disabled.xml
|
810
|
+
- test/reports/TEST-HammerCLIForeman-Architecture-CreateCommand.xml
|
811
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand-output.xml
|
812
|
+
- test/reports/TEST-HammerCLIForeman-Domain-DeleteParameterCommand.xml
|
813
|
+
- test/reports/TEST-HammerCLIForeman-Medium-ListCommand-parameters.xml
|
814
|
+
- test/reports/TEST-HammerCLIForeman-Environment-UpdateCommand-parameters.xml
|
815
|
+
- test/reports/TEST-HammerCLIForeman-Host-SetParameterCommand.xml
|
816
|
+
- test/reports/TEST-HammerCLIForeman-Organization-ListCommand-parameters.xml
|
817
|
+
- test/reports/TEST-HammerCLIForeman-CommonParameter-ListCommand-parameters.xml
|
818
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-ListCommand.xml
|
819
|
+
- test/reports/TEST-HammerCLIForeman-Host-UpdateCommand-parameters.xml
|
820
|
+
- test/reports/TEST-HammerCLIForeman-Environment.xml
|
821
|
+
- test/reports/TEST-HammerCLIForeman-ComputeResource-CreateCommand-parameters.xml
|
822
|
+
- test/reports/TEST-HammerCLIForeman-Host-DeleteCommand-parameters.xml
|
823
|
+
- test/reports/TEST-HammerCLIForeman-User-InfoCommand.xml
|
824
|
+
- test/reports/TEST-HammerCLIForeman-Subnet-InfoCommand-output.xml
|