-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathrun_script_spec.rb
More file actions
396 lines (321 loc) · 13.5 KB
/
run_script_spec.rb
File metadata and controls
396 lines (321 loc) · 13.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# frozen_string_literal: true
require 'spec_helper'
require 'bolt/executor'
require 'bolt/target'
require 'bolt/result'
require 'bolt/result_set'
describe 'run_script' do
let(:executor) { Bolt::Executor.new }
let(:inventory) { mock('inventory') }
let(:tasks_enabled) { true }
let(:module_root) { File.expand_path(fixtures('modules', 'test')) }
let(:full_path) { File.join(module_root, 'files/uploads/hostname.sh') }
around(:each) do |example|
Puppet[:tasks] = tasks_enabled
Puppet.override(bolt_executor: executor, bolt_inventory: inventory) do
inventory.stubs(:version).returns(2)
inventory.stubs(:target_implementation_class).returns(Bolt::Target)
example.run
end
end
context 'it calls bolt executor run_script' do
let(:hostname) { 'test.example.com' }
let(:target) { Bolt::Target.new(hostname) }
let(:result) { Bolt::Result.new(target, value: { 'stdout' => hostname }) }
let(:result_set) { Bolt::ResultSet.new([result]) }
before(:each) do
Puppet.features.stubs(:bolt?).returns(true)
end
it 'with fully resolved path of file' do
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(hostname).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', hostname)
.and_return(result_set)
end
context 'when locating files' do
let(:module_root) { File.expand_path(fixtures('modules')) }
before(:each) do
inventory.stubs(:get_targets).with(hostname).returns([target])
end
context 'with nonspecific module syntax' do
it 'does not load from scripts/ subdir' do
is_expected.to run
.with_params('with_scripts/hostname.sh', hostname)
.and_raise_error(/No such file or directory: .*with_scripts.*hostname\.sh/)
end
it 'loads from files/' do
full_path = File.join(module_root, 'with_files/files/hostname.sh')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
is_expected.to run
.with_params('with_files/hostname.sh', hostname)
.and_return(result_set)
end
end
context 'with scripts/ specified' do
# hostname.sh is in with_both/files/scripts/ and with_both/scripts/
it 'prefers loading from files/scripts/' do
# Path that should be loaded from
full_path = File.join(module_root, 'with_both/files/scripts/hostname.sh')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
is_expected.to run
.with_params('with_both/scripts/hostname.sh', hostname)
.and_return(result_set)
end
it 'falls back to scripts/ if not found in files/' do
# Path that should be loaded from
full_path = File.join(module_root, 'with_scripts/scripts/hostname.sh')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
is_expected.to run
.with_params('with_scripts/scripts/hostname.sh', hostname)
.and_return(result_set)
end
end
context 'with files/ specified' do
it 'prefers loading from files/files/' do
# Path that should be loaded from
full_path = File.join(module_root, 'with_files/files/files/hostname.sh')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
is_expected.to run
.with_params('with_files/files/hostname.sh', hostname)
.and_return(result_set)
end
it 'falls back to files/ if enabled' do
# Path that should be loaded from
full_path = File.join(module_root, 'with_files/files/toplevel.sh')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
is_expected.to run
.with_params('with_files/files/toplevel.sh', hostname)
.and_return(result_set)
end
end
end
it 'with host given as Target' do
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target)
.and_return(result_set)
end
it 'with given arguments as a hash of {arguments => [value]}' do
executor.expects(:run_script)
.with([target], full_path, %w[hello world], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(hostname).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh',
hostname,
{ 'arguments' => %w[hello world] })
.and_return(result_set)
end
it 'with given arguments as a hash of {arguments => []}' do
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target, 'arguments' => [])
.and_return(result_set)
end
it 'with pwsh_params' do
executor.expects(:run_script)
.with([target], full_path, [], { pwsh_params: { 'Name' => 'BoltyMcBoltface' } }, [])
.returns(result_set)
inventory.expects(:get_targets).with(hostname).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh',
hostname,
{ 'pwsh_params' => { 'Name' => 'BoltyMcBoltface' } })
.and_return(result_set)
end
it 'with _run_as' do
executor.expects(:run_script)
.with([target], full_path, [], { run_as: 'root' }, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target, '_run_as' => 'root')
.and_return(result_set)
end
it 'reports the call to analytics' do
executor.expects(:report_function_call).with('run_script')
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(hostname).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', hostname)
.and_return(result_set)
end
context 'with description' do
let(:message) { 'test message' }
it 'passes the description through if parameters are passed' do
executor.expects(:run_script)
.with([target], full_path, [], { description: message }, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target, message, {})
end
it 'passes the description through if no parameters are passed' do
executor.expects(:run_script)
.with([target], full_path, [], { description: message }, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target, message)
end
end
context 'without description' do
it 'ignores description if parameters are passed' do
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target, {})
end
it 'ignores description if no parameters are passed' do
executor.expects(:run_script)
.with([target], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with(target).returns([target])
is_expected.to run
.with_params('test/uploads/hostname.sh', target)
end
end
context 'with multiple destinations' do
let(:hostname2) { 'test.testing.com' }
let(:target2) { Bolt::Target.new(hostname2) }
let(:result2) { Bolt::Result.new(target2, value: { 'stdout' => hostname2 }) }
let(:result_set) { Bolt::ResultSet.new([result, result2]) }
it 'with propagated multiple hosts and returns multiple results' do
executor.expects(:run_script)
.with([target, target2], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with([hostname, hostname2]).returns([target, target2])
is_expected.to run
.with_params('test/uploads/hostname.sh', [hostname, hostname2])
.and_return(result_set)
end
context 'when a script fails on one target' do
let(:result2) { Bolt::Result.new(target2, error: { 'message' => hostname2 }) }
it 'errors by default' do
executor.expects(:run_script)
.with([target, target2], full_path, [], {}, [])
.returns(result_set)
inventory.expects(:get_targets).with([hostname, hostname2]).returns([target, target2])
is_expected.to run
.with_params('test/uploads/hostname.sh', [hostname, hostname2])
.and_raise_error(Bolt::RunFailure)
end
it 'does not error with _catch_errors' do
executor.expects(:run_script)
.with([target, target2], full_path, [], { catch_errors: true }, [])
.returns(result_set)
inventory.expects(:get_targets).with([hostname, hostname2]).returns([target, target2])
is_expected.to run
.with_params('test/uploads/hostname.sh', [hostname, hostname2], '_catch_errors' => true)
end
end
end
it 'without targets - does not invoke bolt' do
executor.expects(:run_script).never
inventory.expects(:get_targets).with([]).returns([])
is_expected.to run
.with_params('test/uploads/hostname.sh', [])
.and_return(Bolt::ResultSet.new([]))
end
it 'errors when script is not found' do
executor.expects(:run_script).never
is_expected.to run
.with_params('test/uploads/nonesuch.sh', [])
.and_raise_error(/No such file or directory: .*nonesuch\.sh/)
end
it 'errors when script appoints a directory' do
executor.expects(:run_script).never
is_expected.to run
.with_params('test/uploads', [])
.and_raise_error(%r{.*/uploads is not a file})
end
end
context 'running in parallel' do
let(:future) { mock('future') }
let(:hostname) { 'test.example.com' }
let(:target) { Bolt::Target.new(hostname) }
let(:result) { Bolt::Result.new(target, value: { 'stdout' => hostname }) }
let(:result_set) { Bolt::ResultSet.new([result]) }
it 'executes in a thread if the executor is in parallel mode' do
inventory.expects(:get_targets).with(hostname).returns([target])
executor.expects(:in_parallel?).returns(true)
executor.expects(:run_in_thread).returns(result_set)
is_expected.to run
.with_params('test/uploads/hostname.sh', hostname)
.and_return(result_set)
end
end
context 'without tasks enabled' do
let(:tasks_enabled) { false }
it 'fails and reports that run_script is not available' do
is_expected.to run
.with_params('test/uploads/nonesuch.sh', [])
.and_raise_error(/Plan language function 'run_script' cannot be used/)
end
end
context 'with arguments and pwsh_params' do
it 'fails' do
is_expected.to run
.with_params('test/uploads/script.sh', [], 'arguments' => [], 'pwsh_params' => {})
.and_raise_error(/Cannot specify both 'arguments' and 'pwsh_params'/)
end
end
it 'fails if arguments is not an array' do
is_expected.to run
.with_params('test/uploads/script.sh', [], 'arguments' => { 'foo' => 'bar' })
.and_raise_error(/Option 'arguments' must be an array/)
end
it 'fails if pwsh_params is not a hash' do
is_expected.to run
.with_params('test/uploads/script.sh', [], 'pwsh_params' => %w[foo bar])
.and_raise_error(/Option 'pwsh_params' must be a hash/)
end
context 'with _env_vars' do
let(:targets) { ['localhost'] }
it 'errors if _env_vars is not a hash' do
is_expected.to run
.with_params(full_path, targets, { '_env_vars' => 'value' })
.and_raise_error(/Option 'env_vars' must be a hash/)
end
it 'errors if _env_vars keys are not strings' do
is_expected.to run
.with_params(full_path, targets, { '_env_vars' => { 1 => 'a' } })
.and_raise_error(/Keys for option 'env_vars' must be strings: 1/)
end
it 'transforms values to json' do
env_vars = { 'FRUIT' => { 'apple' => 'banana' } }
options = { env_vars: env_vars.transform_values(&:to_json) }
executor.expects(:run_script)
.with(targets, full_path, [], options, [])
.returns(Bolt::ResultSet.new([]))
inventory.expects(:get_targets)
.with(targets)
.returns(targets)
is_expected.to run
.with_params(full_path, targets, { '_env_vars' => env_vars })
end
end
end