Skip to content

Commit

Permalink
(maint) pass full inventory path to task
Browse files Browse the repository at this point in the history
  • Loading branch information
h0tw1r3 committed Apr 30, 2024
1 parent 144ba65 commit 4f9b928
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/puppet_litmus/rake_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def provision(provisioner, platform, inventory_vars)
raise "the provision module was not found in #{DEFAULT_CONFIG_DATA['modulepath']}, please amend the .fixtures.yml file" unless
File.directory?(File.join(DEFAULT_CONFIG_DATA['modulepath'], 'provision'))

params = { 'action' => 'provision', 'platform' => platform, 'inventory' => Dir.pwd }
params = { 'action' => 'provision', 'platform' => platform, 'inventory' => File.join(Dir.pwd, 'spec', 'fixtures', 'litmus_inventory.yaml') }
params['vars'] = inventory_vars unless inventory_vars.nil?

task_name = provisioner_task(provisioner)
Expand Down
9 changes: 5 additions & 4 deletions spec/lib/puppet_litmus/rake_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
let(:provision_hash) { args[:provision_hash] }
let(:results) { args[:results] }
let(:params) { args[:params] }
let(:inventory_file) { File.join(Dir.pwd, 'spec', 'fixtures', 'litmus_inventory.yaml') }

it 'calls function' do
allow(File).to receive(:directory?).and_call_original
Expand Down Expand Up @@ -42,15 +43,15 @@
inventory_vars: nil,
provision_hash: { 'default' => { 'provisioner' => 'docker', 'images' => ['waffleimage/centos7'] } },
results: [],
params: { 'action' => 'provision', 'platform' => 'waffleimage/centos7', 'inventory' => Dir.pwd }
params: { 'action' => 'provision', 'platform' => 'waffleimage/centos7', 'inventory' => inventory_file }
},
{
provisioner: 'vagrant',
platform: 'centos7',
inventory_vars: nil,
provision_hash: { 'default' => { 'provisioner' => 'vagrant', 'images' => ['centos7'] } },
results: [],
params: { 'action' => 'provision', 'platform' => 'centos7', 'inventory' => Dir.pwd }
params: { 'action' => 'provision', 'platform' => 'centos7', 'inventory' => inventory_file }
}
].freeze

Expand All @@ -68,7 +69,7 @@
[{ 'uri' => 'some.host', 'facts' => { 'provisioner' => 'docker', 'container_name' => 'foo', 'platform' => 'some.host' } }] }] }
end
let(:targets) { ['some.host'] }
let(:params) { { 'action' => 'tear_down', 'node_name' => 'some.host', 'inventory' => Dir.pwd } }
let(:params) { { 'action' => 'tear_down', 'node_name' => 'some.host', 'inventory' => inventory_file } }

it 'calls function' do
allow(File).to receive(:directory?).with(File.join(described_class::DEFAULT_CONFIG_DATA['modulepath'], 'provision')).and_return(true)
Expand All @@ -89,7 +90,7 @@
] }] }
end
let(:targets) { ['one.host'] }
let(:params) { { 'action' => 'tear_down', 'node_name' => 'one.host', 'inventory' => Dir.pwd } }
let(:params) { { 'action' => 'tear_down', 'node_name' => 'one.host', 'inventory' => inventory_file } }

it 'calls function' do
allow(File).to receive(:directory?).with(File.join(described_class::DEFAULT_CONFIG_DATA['modulepath'], 'provision')).and_return(true)
Expand Down

0 comments on commit 4f9b928

Please sign in to comment.