Class: BoltSpec::Plans::ScriptStub
Instance Attribute Summary
Attributes inherited from ActionStub
#invocation
Instance Method Summary
collapse
Methods inherited from ActionStub
#always_return, #assert_called, #be_called_times, #check_resultset, #default_for, #error_with, #expect_call, #initialize, #not_be_called, #return, #return_for_targets, #with_targets
Instance Method Details
#call(targets, script, arguments, options) ⇒ Object
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/bolt_spec/plans/action_stubs/script_stub.rb', line 22
def call(targets, script, arguments, options)
@calls += 1
if @return_block
params = options.merge('arguments' => arguments)
check_resultset(@return_block.call(targets: targets, script: script, params: params), script)
else
Bolt::ResultSet.new(targets.map { |target| @data[target.name] || default_for(target) })
end
end
|
#matches(targets, _script, arguments, options) ⇒ Object
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/bolt_spec/plans/action_stubs/script_stub.rb', line 6
def matches(targets, _script, arguments, options)
if @invocation[:targets] && Set.new(@invocation[:targets]) != Set.new(targets.map(&:name))
return false
end
if @invocation[:arguments] && arguments != @invocation[:arguments]
return false
end
if @invocation[:options] && options != @invocation[:options]
return false
end
true
end
|
#parameters ⇒ Object
33
34
35
|
# File 'lib/bolt_spec/plans/action_stubs/script_stub.rb', line 33
def parameters
@invocation[:params]
end
|
#result_for(target, stdout: '', stderr: '') ⇒ Object
37
38
39
|
# File 'lib/bolt_spec/plans/action_stubs/script_stub.rb', line 37
def result_for(target, stdout: '', stderr: '')
Bolt::Result.for_command(target, stdout, stderr, 0, 'script', '')
end
|
#with_params(params) ⇒ Object
43
44
45
46
47
48
49
|
# File 'lib/bolt_spec/plans/action_stubs/script_stub.rb', line 43
def with_params(params)
@invocation[:params] = params
@invocation[:arguments] = params['arguments']
@invocation[:options] = params.select { |k, _v| k.start_with?('_') }
.map { |k, v| [k.sub(/^_/, '').to_sym, v] }.to_h
self
end
|