puppet_litmus 0.34.1 → 0.34.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/exe/matrix_from_metadata_v2 +1 -1
- data/lib/puppet_litmus/rake_tasks.rb +88 -83
- data/lib/puppet_litmus/version.rb +1 -1
- data/spec/lib/puppet_litmus/inventory_manipulation_spec.rb +3 -4
- data/spec/lib/puppet_litmus/puppet_helpers_spec.rb +20 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21b176fc42e18b27c2ce84b87c2a622b58f7de8e61eea8b1f259e27b98e59fdd
|
4
|
+
data.tar.gz: f96badf41e2e98d41742697cf1c9fa450ad179fb3ef40ba7cacdf6f1f5161b14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d5239cfd399477beac0da9d42e861ced3b312c265b2f9551db64d18276329350c840c5c1733d542d0c129e254f7c426dbc6f5d2ea182ea39536044d774752d6
|
7
|
+
data.tar.gz: 858ccb6e2726c3fb5f23d05747037082c82a4871b22695ced1284bd79fe845b4387163a79e219d4898ff5593d11adf5dd608ae36d1666cddb07b57dc81b7e4fa
|
data/README.md
CHANGED
@@ -48,7 +48,7 @@ In order to use this new functionality just simply run:
|
|
48
48
|
|
49
49
|
## Documentation
|
50
50
|
|
51
|
-
For documentation, see our [Litmus Docs Site](https://puppetlabs.github.io/litmus/).
|
51
|
+
For documentation, see our [Litmus Docs Site](https://puppetlabs.github.io/content-and-tooling-team/docs/litmus/).
|
52
52
|
|
53
53
|
## Other Resources
|
54
54
|
|
data/exe/matrix_from_metadata_v2
CHANGED
@@ -11,7 +11,7 @@ IMAGE_TABLE = {
|
|
11
11
|
'RedHat-9' => 'rhel-9',
|
12
12
|
'SLES-12' => 'sles-12',
|
13
13
|
'SLES-15' => 'sles-15',
|
14
|
-
'Windows-2012 R2' => 'windows-2012-r2-core',
|
14
|
+
# 'Windows-2012 R2' => 'windows-2012-r2-core',
|
15
15
|
'Windows-2016' => 'windows-2016',
|
16
16
|
'Windows-2019' => 'windows-2019-core',
|
17
17
|
'Windows-2022' => 'windows-2022',
|
@@ -336,104 +336,109 @@ namespace :litmus do
|
|
336
336
|
|
337
337
|
namespace :acceptance do
|
338
338
|
require 'rspec/core/rake_task'
|
339
|
-
|
339
|
+
|
340
|
+
# Run acceptance tests against all machines in the inventory file in parallel.
|
341
|
+
desc 'Run tests in parallel against all machines in the inventory file'
|
342
|
+
task :parallel, [:tag] do |_task, args|
|
343
|
+
args.with_defaults(tag: nil)
|
344
|
+
|
340
345
|
inventory_hash = inventory_hash_from_inventory_file
|
341
346
|
targets = find_targets(inventory_hash, nil)
|
342
347
|
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
},
|
365
|
-
}
|
366
|
-
payloads << [title, test, options]
|
367
|
-
end
|
348
|
+
if targets.empty?
|
349
|
+
puts 'No targets found'
|
350
|
+
exit 0
|
351
|
+
end
|
352
|
+
tag_value = if args[:tag].nil?
|
353
|
+
nil
|
354
|
+
else
|
355
|
+
"--tag #{args[:tag]}"
|
356
|
+
end
|
357
|
+
payloads = []
|
358
|
+
# Generate list of targets to provision
|
359
|
+
targets.each do |target|
|
360
|
+
test = "bundle exec rspec ./spec/acceptance #{tag_value} --format progress --require rspec_honeycomb_formatter --format RSpecHoneycombFormatter"
|
361
|
+
title = "#{target}, #{facts_from_node(inventory_hash, target)['platform']}"
|
362
|
+
options = {
|
363
|
+
env: {
|
364
|
+
'TARGET_HOST' => target,
|
365
|
+
},
|
366
|
+
}
|
367
|
+
payloads << [title, test, options]
|
368
|
+
end
|
368
369
|
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
end
|
370
|
+
results = []
|
371
|
+
success_list = []
|
372
|
+
failure_list = []
|
373
|
+
# Provision targets depending on what environment we're in
|
374
|
+
if ENV['CI'] == 'true'
|
375
|
+
# CI systems are strange beasts, we only output a '.' every wee while to keep the terminal alive.
|
376
|
+
puts "Running against #{targets.size} targets.\n"
|
377
|
+
progress = Thread.new do
|
378
|
+
loop do
|
379
|
+
printf '.'
|
380
|
+
sleep(10)
|
381
381
|
end
|
382
|
+
end
|
382
383
|
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
384
|
+
require 'parallel'
|
385
|
+
results = Parallel.map(payloads) do |title, test, options|
|
386
|
+
# avoid sending the parent process' main span in the sub-processes
|
387
|
+
# https://www.ruby-forum.com/t/at-exit-inherited-across-fork/122473/2
|
388
|
+
at_exit { exit! }
|
388
389
|
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
390
|
+
env = options[:env].nil? ? {} : options[:env]
|
391
|
+
env['HONEYCOMB_TRACE'] = Honeycomb.current_span.to_trace_header
|
392
|
+
stdout, stderr, status = Open3.capture3(env, test)
|
393
|
+
["\n================\n#{title}\n", stdout, stderr, status]
|
394
|
+
end
|
395
|
+
# because we cannot modify variables inside of Parallel
|
396
|
+
results.each do |result|
|
397
|
+
if result.last.to_i.zero?
|
398
|
+
success_list.push(result.first.scan(%r{.*})[3])
|
399
|
+
else
|
400
|
+
failure_list.push(result.first.scan(%r{.*})[3])
|
393
401
|
end
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
402
|
+
end
|
403
|
+
Thread.kill(progress)
|
404
|
+
else
|
405
|
+
require 'tty-spinner'
|
406
|
+
spinners = TTY::Spinner::Multi.new("[:spinner] Running against #{targets.size} targets.")
|
407
|
+
payloads.each do |title, test, options|
|
408
|
+
env = options[:env].nil? ? {} : options[:env]
|
409
|
+
env['HONEYCOMB_TRACE'] = Honeycomb.current_span.to_trace_header
|
410
|
+
spinners.register("[:spinner] #{title}") do |sp|
|
411
|
+
stdout, stderr, status = Open3.capture3(env, test)
|
412
|
+
if status.to_i.zero?
|
413
|
+
sp.success
|
414
|
+
success_list.push(title)
|
398
415
|
else
|
399
|
-
|
400
|
-
|
401
|
-
end
|
402
|
-
Thread.kill(progress)
|
403
|
-
else
|
404
|
-
require 'tty-spinner'
|
405
|
-
spinners = TTY::Spinner::Multi.new("[:spinner] Running against #{targets.size} targets.")
|
406
|
-
payloads.each do |title, test, options|
|
407
|
-
env = options[:env].nil? ? {} : options[:env]
|
408
|
-
env['HONEYCOMB_TRACE'] = Honeycomb.current_span.to_trace_header
|
409
|
-
spinners.register("[:spinner] #{title}") do |sp|
|
410
|
-
stdout, stderr, status = Open3.capture3(env, test)
|
411
|
-
if status.to_i.zero?
|
412
|
-
sp.success
|
413
|
-
success_list.push(title)
|
414
|
-
else
|
415
|
-
sp.error
|
416
|
-
failure_list.push(title)
|
417
|
-
end
|
418
|
-
results.push(["================\n#{title}\n", stdout, stderr, status])
|
416
|
+
sp.error
|
417
|
+
failure_list.push(title)
|
419
418
|
end
|
419
|
+
results.push(["================\n#{title}\n", stdout, stderr, status])
|
420
420
|
end
|
421
|
-
spinners.auto_spin
|
422
|
-
spinners.success
|
423
|
-
end
|
424
|
-
|
425
|
-
# output test results
|
426
|
-
results.each do |result|
|
427
|
-
puts result
|
428
421
|
end
|
422
|
+
spinners.auto_spin
|
423
|
+
spinners.success
|
424
|
+
end
|
429
425
|
|
430
|
-
|
431
|
-
|
432
|
-
puts
|
433
|
-
Rake::Task['litmus:check_connectivity'].invoke
|
434
|
-
exit 1 if failure_list.any?
|
426
|
+
# output test results
|
427
|
+
results.each do |result|
|
428
|
+
puts result
|
435
429
|
end
|
436
430
|
|
431
|
+
# output test summary
|
432
|
+
puts "Successful on #{success_list.size} nodes: #{success_list}" if success_list.any?
|
433
|
+
puts "Failed on #{failure_list.size} nodes: #{failure_list}" if failure_list.any?
|
434
|
+
Rake::Task['litmus:check_connectivity'].invoke
|
435
|
+
exit 1 if failure_list.any?
|
436
|
+
end
|
437
|
+
|
438
|
+
if File.file?('spec/fixtures/litmus_inventory.yaml')
|
439
|
+
inventory_hash = inventory_hash_from_inventory_file
|
440
|
+
targets = find_targets(inventory_hash, nil)
|
441
|
+
|
437
442
|
targets.each do |target|
|
438
443
|
desc "Run serverspec against #{target}"
|
439
444
|
next if target == 'litmus_localhost'
|
@@ -7,8 +7,8 @@ RSpec.describe PuppetLitmus::InventoryManipulation do
|
|
7
7
|
let(:inventory_full_path) { 'spec/data/inventory.yaml' }
|
8
8
|
|
9
9
|
context 'with config_from_node' do
|
10
|
-
it 'no matching node,
|
11
|
-
expect
|
10
|
+
it 'no matching node, returns nil' do
|
11
|
+
expect(config_from_node(config_hash, 'not.here')).to eq(nil)
|
12
12
|
end
|
13
13
|
|
14
14
|
it 'no config section, returns nil' do
|
@@ -16,8 +16,7 @@ RSpec.describe PuppetLitmus::InventoryManipulation do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
it 'config exists, and returns' do
|
19
|
-
expect(config_from_node(config_hash, 'test.delivery.puppetlabs.net')).to eq('transport' => 'ssh', 'ssh' =>
|
20
|
-
{ 'user' => 'root', 'password' => 'Qu@lity!', 'host-key-check' => false })
|
19
|
+
expect(config_from_node(config_hash, 'test.delivery.puppetlabs.net')).to eq('transport' => 'ssh', 'ssh' => { 'user' => 'root', 'password' => 'Qu@lity!', 'host-key-check' => false })
|
21
20
|
end
|
22
21
|
|
23
22
|
it 'facts exists, and returns' do
|
@@ -41,6 +41,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
41
41
|
it 'passes the --hiera_config flag if the :hiera_config opt is specified' do
|
42
42
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
43
43
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
44
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
44
45
|
expect(self).to receive(:create_manifest_file).with(manifest).and_return('/bla.pp')
|
45
46
|
expect(self).to receive(:run_command).with(command, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
46
47
|
apply_manifest(manifest, hiera_config: '/hiera.yaml')
|
@@ -60,6 +61,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
60
61
|
it 'uses detailed-exitcodes with expect_failures' do
|
61
62
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
62
63
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
64
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
63
65
|
expect(self).to receive(:create_manifest_file).with(manifest).and_return('/bla.pp')
|
64
66
|
expect(self).to receive(:run_command).with(command, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
65
67
|
expect { apply_manifest(manifest, expect_failures: true) }.to raise_error(RuntimeError)
|
@@ -68,6 +70,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
68
70
|
it 'uses detailed-exitcodes with catch_failures' do
|
69
71
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
70
72
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
73
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
71
74
|
expect(self).to receive(:create_manifest_file).with(manifest).and_return('/bla.pp')
|
72
75
|
expect(self).to receive(:run_command).with(command, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
73
76
|
apply_manifest(manifest, catch_failures: true)
|
@@ -76,6 +79,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
76
79
|
it 'uses detailed-exitcodes with expect_changes' do
|
77
80
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
78
81
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
82
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
79
83
|
expect(self).to receive(:create_manifest_file).with(manifest).and_return('/bla.pp')
|
80
84
|
expect(self).to receive(:run_command).with(command, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
81
85
|
expect { apply_manifest(manifest, expect_changes: true) }.to raise_error(RuntimeError)
|
@@ -84,6 +88,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
84
88
|
it 'uses detailed-exitcodes with catch_changes' do
|
85
89
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
86
90
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
91
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
87
92
|
expect(self).to receive(:create_manifest_file).with(manifest).and_return('/bla.pp')
|
88
93
|
expect(self).to receive(:run_command).with(command, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
89
94
|
apply_manifest(manifest, catch_changes: true)
|
@@ -109,6 +114,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
109
114
|
stub_const('ENV', ENV.to_hash.merge('TARGET_HOST' => 'localhost'))
|
110
115
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
111
116
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
117
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
112
118
|
expect(self).to receive(:run_command).with(command_to_run, 'litmus_localhost', config: nil, inventory: localhost_inventory_hash).and_return(result)
|
113
119
|
expect { run_shell(command_to_run) }.not_to raise_error
|
114
120
|
end
|
@@ -120,6 +126,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
120
126
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
121
127
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
122
128
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
129
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
123
130
|
expect(self).to receive(:run_command).with(command_to_run, 'some.host', config: nil, inventory: inventory_hash).and_return(result)
|
124
131
|
expect { run_shell(command_to_run) }.not_to raise_error
|
125
132
|
end
|
@@ -145,6 +152,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
145
152
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
146
153
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
147
154
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
155
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
148
156
|
expect(self).to receive(:upload_file).with(local, remote, 'some.host', options: {}, config: nil, inventory: inventory_hash).and_return(result_success)
|
149
157
|
expect { bolt_upload_file(local, remote) }.not_to raise_error
|
150
158
|
end
|
@@ -154,6 +162,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
154
162
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
155
163
|
expect(self).not_to receive(:inventory_hash_from_inventory_file)
|
156
164
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
165
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
157
166
|
expect(self).to receive(:upload_file).with(local, remote, 'litmus_localhost', options: {}, config: nil, inventory: localhost_inventory_hash).and_return(result_success)
|
158
167
|
expect { bolt_upload_file(local, remote) }.not_to raise_error
|
159
168
|
end
|
@@ -165,6 +174,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
165
174
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
166
175
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
167
176
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
177
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
168
178
|
expect(self).to receive(:upload_file).with(local, remote, 'some.host', options: {}, config: nil, inventory: inventory_hash).and_return(result_failure)
|
169
179
|
expect { bolt_upload_file(local, remote) }.to raise_error(RuntimeError, %r{upload file failed})
|
170
180
|
end
|
@@ -174,6 +184,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
174
184
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
175
185
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
176
186
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
187
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
177
188
|
expect(self).to receive(:upload_file).with(local, remote, 'some.host', options: {}, config: nil, inventory: inventory_hash).and_return(result_failure)
|
178
189
|
method_result = bolt_upload_file(local, remote, expect_failures: true)
|
179
190
|
expect(method_result.exit_code).to be(255)
|
@@ -196,6 +207,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
196
207
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
197
208
|
expect(self).not_to receive(:inventory_hash_from_inventory_file)
|
198
209
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
210
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
199
211
|
expect(self).to receive(:run_script).with(script, 'litmus_localhost', [], options: {}, config: nil, inventory: localhost_inventory_hash).and_return(result)
|
200
212
|
expect { bolt_run_script(script) }.not_to raise_error
|
201
213
|
end
|
@@ -207,6 +219,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
207
219
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
208
220
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
209
221
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
222
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
210
223
|
expect(self).to receive(:run_script).with(script, 'some.host', [], options: {}, config: nil, inventory: inventory_hash).and_return(result)
|
211
224
|
expect { bolt_run_script(script) }.not_to raise_error
|
212
225
|
end
|
@@ -218,6 +231,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
218
231
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(false)
|
219
232
|
expect(self).not_to receive(:inventory_hash_from_inventory_file)
|
220
233
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
234
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
221
235
|
expect(self).to receive(:run_script).with(script, 'litmus_localhost', ['doot'], options: {}, config: nil, inventory: localhost_inventory_hash).and_return(result)
|
222
236
|
expect { bolt_run_script(script, arguments: ['doot']) }.not_to raise_error
|
223
237
|
end
|
@@ -245,6 +259,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
245
259
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
246
260
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
247
261
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
262
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
248
263
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_unstructured_task_success)
|
249
264
|
expect { run_bolt_task(task_name, params, opts: {}) }.not_to raise_error
|
250
265
|
end
|
@@ -254,6 +269,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
254
269
|
expect(File).to receive(:exist?).with('jim.yaml').and_return(true)
|
255
270
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
256
271
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
272
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
257
273
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_unstructured_task_success)
|
258
274
|
expect { run_bolt_task(task_name, params, inventory_file: 'jim.yaml') }.not_to raise_error
|
259
275
|
end
|
@@ -263,6 +279,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
263
279
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
264
280
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
265
281
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
282
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
266
283
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_unstructured_task_success)
|
267
284
|
method_result = run_bolt_task(task_name, params, opts: {})
|
268
285
|
expect(method_result.stdout).to eq('SUCCESS!')
|
@@ -273,6 +290,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
273
290
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
274
291
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
275
292
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
293
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
276
294
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_structured_task_success)
|
277
295
|
method_result = run_bolt_task(task_name, params, opts: {})
|
278
296
|
expect(method_result.stdout).to eq('{"key1"=>"foo", "key2"=>"bar"}')
|
@@ -287,6 +305,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
287
305
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
288
306
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
289
307
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
308
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
290
309
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_failure)
|
291
310
|
expect { run_bolt_task(task_name, params, opts: {}) }.to raise_error(RuntimeError, %r{task failed})
|
292
311
|
end
|
@@ -296,6 +315,7 @@ RSpec.describe PuppetLitmus::PuppetHelpers do
|
|
296
315
|
expect(File).to receive(:exist?).with('spec/fixtures/litmus_inventory.yaml').and_return(true)
|
297
316
|
expect(self).to receive(:inventory_hash_from_inventory_file).and_return(inventory_hash)
|
298
317
|
expect(self).to receive(:target_in_inventory?).and_return(true)
|
318
|
+
expect(self).to receive(:target_in_inventory?).and_return(true)
|
299
319
|
expect(self).to receive(:run_task).with(task_name, 'some.host', params, config: config_data, inventory: inventory_hash).and_return(result_failure)
|
300
320
|
method_result = run_bolt_task(task_name, params, expect_failures: true)
|
301
321
|
expect(method_result.exit_code).to be(123)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet_litmus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.34.
|
4
|
+
version: 0.34.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet, Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bolt
|
@@ -194,7 +194,7 @@ homepage: https://github.com/puppetlabs/puppet_litmus
|
|
194
194
|
licenses:
|
195
195
|
- Apache-2.0
|
196
196
|
metadata: {}
|
197
|
-
post_install_message:
|
197
|
+
post_install_message:
|
198
198
|
rdoc_options: []
|
199
199
|
require_paths:
|
200
200
|
- lib
|
@@ -209,8 +209,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
209
|
- !ruby/object:Gem::Version
|
210
210
|
version: '0'
|
211
211
|
requirements: []
|
212
|
-
rubygems_version: 3.
|
213
|
-
signing_key:
|
212
|
+
rubygems_version: 3.0.3
|
213
|
+
signing_key:
|
214
214
|
specification_version: 4
|
215
215
|
summary: Providing a simple command line tool for puppet content creators, to enable
|
216
216
|
simple and complex test deployments.
|