adding tests for providing data bags into the vm.
This commit is contained in:
parent
e7e9dc5c4d
commit
d0000e9f49
|
@ -42,6 +42,11 @@ class ChefSoloProvisionerTest < Test::Unit::TestCase
|
||||||
@action.expects(:share_role_folders).once
|
@action.expects(:share_role_folders).once
|
||||||
@action.prepare
|
@action.prepare
|
||||||
end
|
end
|
||||||
|
|
||||||
|
should "share data bag folders" do
|
||||||
|
@action.expects(:share_data_bags_folders).once
|
||||||
|
@action.prepare
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context "provisioning" do
|
context "provisioning" do
|
||||||
|
@ -87,6 +92,22 @@ class ChefSoloProvisionerTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "sharing data bag folders" do
|
||||||
|
setup do
|
||||||
|
@host_data_bag_paths = ["foo", "bar"]
|
||||||
|
@action.stubs(:host_data_bag_paths).returns(@host_data_bag_paths)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "share each data bag folder" do
|
||||||
|
share_seq = sequence("share_seq")
|
||||||
|
@host_data_bag_paths.each_with_index do |data_bag, i|
|
||||||
|
@env.config.vm.expects(:share_folder).with("v-csdb-#{i}", @action.data_bag_path(i), data_bag).in_sequence(share_seq)
|
||||||
|
end
|
||||||
|
|
||||||
|
@action.share_data_bags_folders
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "host folder paths" do
|
context "host folder paths" do
|
||||||
should "ignore VM paths" do
|
should "ignore VM paths" do
|
||||||
assert @action.host_folder_paths([:vm, "foo"]).empty?
|
assert @action.host_folder_paths([:vm, "foo"]).empty?
|
||||||
|
@ -125,6 +146,15 @@ class ChefSoloProvisionerTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "host data bags paths" do
|
||||||
|
should "get folders path for configured data bag path" do
|
||||||
|
result = mock("result")
|
||||||
|
@config.stubs(:data_bags_path).returns("foo")
|
||||||
|
@action.expects(:host_folder_paths).with(@config.data_bags_path).returns(result)
|
||||||
|
assert_equal result, @action.host_data_bag_paths
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "folder path" do
|
context "folder path" do
|
||||||
should "return a proper path to a single folder" do
|
should "return a proper path to a single folder" do
|
||||||
expected = File.join(@config.provisioning_path, "cookbooks-5")
|
expected = File.join(@config.provisioning_path, "cookbooks-5")
|
||||||
|
@ -179,6 +209,19 @@ class ChefSoloProvisionerTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "data bags path" do
|
||||||
|
should "return a proper path to a single data bag" do
|
||||||
|
expected = File.join(@config.provisioning_path, "data_bags-5")
|
||||||
|
assert_equal expected, @action.data_bag_path(5)
|
||||||
|
end
|
||||||
|
|
||||||
|
should "properly call folders path and return result" do
|
||||||
|
result = [:a, :b, :c]
|
||||||
|
@action.expects(:folders_path).with(@config.data_bags_path, "data_bags").once.returns(result)
|
||||||
|
assert_equal result.to_json, @action.data_bags_path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
context "generating and uploading chef solo configuration file" do
|
context "generating and uploading chef solo configuration file" do
|
||||||
setup do
|
setup do
|
||||||
@vm.ssh.stubs(:upload!)
|
@vm.ssh.stubs(:upload!)
|
||||||
|
@ -192,7 +235,8 @@ class ChefSoloProvisionerTest < Test::Unit::TestCase
|
||||||
:provisioning_path => @config.provisioning_path,
|
:provisioning_path => @config.provisioning_path,
|
||||||
:cookbooks_path => @action.cookbooks_path,
|
:cookbooks_path => @action.cookbooks_path,
|
||||||
:recipe_url => @config.recipe_url,
|
:recipe_url => @config.recipe_url,
|
||||||
:roles_path => @action.roles_path
|
:roles_path => @action.roles_path,
|
||||||
|
:data_bags_path => @action.data_bags_path
|
||||||
})
|
})
|
||||||
|
|
||||||
@action.setup_solo_config
|
@action.setup_solo_config
|
||||||
|
|
Loading…
Reference in New Issue