summaryrefslogtreecommitdiff
path: root/spec/unit/win32
diff options
context:
space:
mode:
authorClaire McQuin <claire@getchef.com>2015-09-21 09:15:57 -0700
committerClaire McQuin <claire@getchef.com>2015-09-21 10:19:17 -0700
commitec3dee0c5c62949ba0d907676a779af046c8a552 (patch)
tree0e3d47f8e244ded39a0a857d9b8b19feac0cf051 /spec/unit/win32
parent12461128b1dc82b56568fe8ac6d5d9a8ffb0f3f2 (diff)
downloadchef-ec3dee0c5c62949ba0d907676a779af046c8a552.tar.gz
Use let
Diffstat (limited to 'spec/unit/win32')
-rw-r--r--spec/unit/win32/registry_spec.rb351
1 files changed, 175 insertions, 176 deletions
diff --git a/spec/unit/win32/registry_spec.rb b/spec/unit/win32/registry_spec.rb
index 3ad26d967e..56def30638 100644
--- a/spec/unit/win32/registry_spec.rb
+++ b/spec/unit/win32/registry_spec.rb
@@ -29,6 +29,9 @@ describe Chef::Win32::Registry do
let(:key_to_delete) { 'OpscodeNumbers' }
let(:sub_key) {'OpscodePrimes'}
let(:missing_key_path) {'HKCU\Software'}
+ let(:registry) { Chef::Win32::Registry.new() }
+ let(:hive_mock) { double("::Win32::Registry::KHKEY_CURRENT_USER") }
+ let(:reg_mock) { double("reg") }
before(:all) do
Win32::Registry = Class.new
@@ -37,16 +40,12 @@ describe Chef::Win32::Registry do
before(:each) do
allow_any_instance_of(Chef::Win32::Registry).to receive(:machine_architecture).and_return(:x86_64)
- @registry = Chef::Win32::Registry.new()
-
+
#Making the values for registry constants available on unix
Win32::Registry::KEY_SET_VALUE = 0x0002
Win32::Registry::KEY_QUERY_VALUE = 0x0001
Win32::Registry::KEY_WRITE = 0x00020000 | 0x0002 | 0x0004
Win32::Registry::KEY_READ = 0x00020000 | 0x0001 | 0x0008 | 0x0010
-
- @hive_mock = double("::Win32::Registry::HKEY_CURRENT_USER")
- @reg_mock = double("reg")
end
after(:each) do
@@ -58,338 +57,338 @@ describe Chef::Win32::Registry do
describe "get_values" do
it "gets all values for a key if the key exists" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:map)
- @registry.get_values(key_path)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:map)
+ registry.get_values(key_path)
end
it "throws an exception if key does not exist" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- expect{@registry.get_values(key_path)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ expect{registry.get_values(key_path)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
end
describe "set_value" do
it "does nothing if key and hive and value exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:data_exists?).with(key_path, value1).and_return(true)
- @registry.set_value(key_path, value1)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:data_exists?).with(key_path, value1).and_return(true)
+ registry.set_value(key_path, value1)
end
it "does nothing if case insensitive key and hive and value exist" do
- expect(@registry).to receive(:key_exists!).with(key_path.downcase).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path.downcase).and_return([@hive_mock, key])
- expect(@registry).to receive(:value_exists?).with(key_path.downcase, value1).and_return(true)
- expect(@registry).to receive(:data_exists?).with(key_path.downcase, value1).and_return(true)
- @registry.set_value(key_path.downcase, value1)
+ expect(registry).to receive(:key_exists!).with(key_path.downcase).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path.downcase).and_return([hive_mock, key])
+ expect(registry).to receive(:value_exists?).with(key_path.downcase, value1).and_return(true)
+ expect(registry).to receive(:data_exists?).with(key_path.downcase, value1).and_return(true)
+ registry.set_value(key_path.downcase, value1)
end
it "does nothing if key and hive and value with a case insensitive name exist" do
- expect(@registry).to receive(:key_exists!).with(key_path.downcase).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path.downcase).and_return([@hive_mock, key])
- expect(@registry).to receive(:value_exists?).with(key_path.downcase, value1_upcase_name).and_return(true)
- expect(@registry).to receive(:data_exists?).with(key_path.downcase, value1_upcase_name).and_return(true)
- @registry.set_value(key_path.downcase, value1_upcase_name)
+ expect(registry).to receive(:key_exists!).with(key_path.downcase).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path.downcase).and_return([hive_mock, key])
+ expect(registry).to receive(:value_exists?).with(key_path.downcase, value1_upcase_name).and_return(true)
+ expect(registry).to receive(:data_exists?).with(key_path.downcase, value1_upcase_name).and_return(true)
+ registry.set_value(key_path.downcase, value1_upcase_name)
end
it "updates value if key and hive and value exist, but data is different" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:data_exists?).with(key_path, value1).and_return(false)
- expect(@hive_mock).to receive(:open).with(key, Win32::Registry::KEY_SET_VALUE | ::Win32::Registry::KEY_QUERY_VALUE | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry).to receive(:get_type_from_name).with(:string).and_return(1)
- expect(@reg_mock).to receive(:write).with("one", 1, "1")
- @registry.set_value(key_path, value1)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:data_exists?).with(key_path, value1).and_return(false)
+ expect(hive_mock).to receive(:open).with(key, Win32::Registry::KEY_SET_VALUE | ::Win32::Registry::KEY_QUERY_VALUE | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry).to receive(:get_type_from_name).with(:string).and_return(1)
+ expect(reg_mock).to receive(:write).with("one", 1, "1")
+ registry.set_value(key_path, value1)
end
it "creates value if the key exists and the value does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_SET_VALUE | ::Win32::Registry::KEY_QUERY_VALUE | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry).to receive(:get_type_from_name).with(:string).and_return(1)
- expect(@reg_mock).to receive(:write).with("one", 1, "1")
- @registry.set_value(key_path, value1)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_SET_VALUE | ::Win32::Registry::KEY_QUERY_VALUE | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry).to receive(:get_type_from_name).with(:string).and_return(1)
+ expect(reg_mock).to receive(:write).with("one", 1, "1")
+ registry.set_value(key_path, value1)
end
it "should raise an exception if the key does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- expect {@registry.set_value(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ expect {registry.set_value(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
end
describe "delete_value" do
it "deletes value if value exists" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_SET_VALUE | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:delete_value).with("one").and_return(true)
- @registry.delete_value(key_path, value1)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_SET_VALUE | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:delete_value).with("one").and_return(true)
+ registry.delete_value(key_path, value1)
end
it "raises an exception if the key does not exist" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- @registry.delete_value(key_path, value1)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ registry.delete_value(key_path, value1)
end
it "does nothing if the value does not exist" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
- @registry.delete_value(key_path, value1)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
+ registry.delete_value(key_path, value1)
end
end
describe "create_key" do
it "creates key if intermediate keys are missing and recursive is set to true" do
- expect(@registry).to receive(:keys_missing?).with(key_path).and_return(true)
- expect(@registry).to receive(:create_missing).with(key_path)
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(false)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | @registry.registry_system_architecture)
- @registry.create_key(key_path, true)
+ expect(registry).to receive(:keys_missing?).with(key_path).and_return(true)
+ expect(registry).to receive(:create_missing).with(key_path)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(false)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | registry.registry_system_architecture)
+ registry.create_key(key_path, true)
end
it "raises an exception if intermediate keys are missing and recursive is set to false" do
- expect(@registry).to receive(:keys_missing?).with(key_path).and_return(true)
- expect{@registry.create_key(key_path, false)}.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
+ expect(registry).to receive(:keys_missing?).with(key_path).and_return(true)
+ expect{registry.create_key(key_path, false)}.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
end
it "does nothing if the key exists" do
- expect(@registry).to receive(:keys_missing?).with(key_path).and_return(true)
- expect(@registry).to receive(:create_missing).with(key_path)
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(true)
- @registry.create_key(key_path, true)
+ expect(registry).to receive(:keys_missing?).with(key_path).and_return(true)
+ expect(registry).to receive(:create_missing).with(key_path)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(true)
+ registry.create_key(key_path, true)
end
it "create key if intermediate keys not missing and recursive is set to false" do
- expect(@registry).to receive(:keys_missing?).with(key_path).and_return(false)
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(false)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | @registry.registry_system_architecture)
- @registry.create_key(key_path, false)
+ expect(registry).to receive(:keys_missing?).with(key_path).and_return(false)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(false)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | registry.registry_system_architecture)
+ registry.create_key(key_path, false)
end
it "create key if intermediate keys not missing and recursive is set to true" do
- expect(@registry).to receive(:keys_missing?).with(key_path).and_return(false)
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(false)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | @registry.registry_system_architecture)
- @registry.create_key(key_path, true)
+ expect(registry).to receive(:keys_missing?).with(key_path).and_return(false)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(false)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:create).with(key, ::Win32::Registry::KEY_WRITE | registry.registry_system_architecture)
+ registry.create_key(key_path, true)
end
end
describe "delete_key", :windows_only do
it "deletes key if it has subkeys and recursive is set to true" do
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(true)
- expect(@registry).to receive(:has_subkeys?).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key_parent, ::Win32::Registry::KEY_WRITE | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:delete_key).with(key_to_delete, true).and_return(true)
- @registry.delete_key(key_path, true)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(true)
+ expect(registry).to receive(:has_subkeys?).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key_parent, ::Win32::Registry::KEY_WRITE | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:delete_key).with(key_to_delete, true).and_return(true)
+ registry.delete_key(key_path, true)
end
it "raises an exception if it has subkeys but recursive is set to false" do
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(true)
- expect(@registry).to receive(:has_subkeys?).with(key_path).and_return(true)
- expect{@registry.delete_key(key_path, false)}.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(true)
+ expect(registry).to receive(:has_subkeys?).with(key_path).and_return(true)
+ expect{registry.delete_key(key_path, false)}.to raise_error(Chef::Exceptions::Win32RegNoRecursive)
end
it "deletes key if the key exists and has no subkeys" do
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(true)
- expect(@registry).to receive(:has_subkeys?).with(key_path).and_return(false)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key_parent, ::Win32::Registry::KEY_WRITE | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:delete_key).with(key_to_delete, true).and_return(true)
- @registry.delete_key(key_path, true)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(true)
+ expect(registry).to receive(:has_subkeys?).with(key_path).and_return(false)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key_parent, ::Win32::Registry::KEY_WRITE | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:delete_key).with(key_to_delete, true).and_return(true)
+ registry.delete_key(key_path, true)
end
end
describe "key_exists?" do
it "returns true if key_exists" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry.key_exists?(key_path)).to eq(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry.key_exists?(key_path)).to eq(true)
end
it "returns false if key does not exist" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_raise(::Win32::Registry::Error)
- expect(@registry.key_exists?(key_path)).to eq(false)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_raise(::Win32::Registry::Error)
+ expect(registry.key_exists?(key_path)).to eq(false)
end
end
describe "key_exists!" do
it "throws an exception if the key_parent does not exist" do
- expect(@registry).to receive(:key_exists?).with(key_path).and_return(false)
- expect{@registry.key_exists!(key_path)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:key_exists?).with(key_path).and_return(false)
+ expect{registry.key_exists!(key_path)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
end
describe "hive_exists?" do
it "returns true if the hive exists" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- @registry.hive_exists?(key_path) == true
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ registry.hive_exists?(key_path) == true
end
it "returns false if the hive does not exist" do
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_raise(Chef::Exceptions::Win32RegHiveMissing)
- @registry.hive_exists?(key_path) == false
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_raise(Chef::Exceptions::Win32RegHiveMissing)
+ registry.hive_exists?(key_path) == false
end
end
describe "has_subkeys?" do
it "returns true if the key has subkeys" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:each_key).and_yield(key)
- @registry.has_subkeys?(key_path) == true
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:each_key).and_yield(key)
+ registry.has_subkeys?(key_path) == true
end
it "returns false if the key does not have subkeys" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:each_key).and_return(no_args())
- expect(@registry.has_subkeys?(key_path)).to eq(false)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:each_key).and_return(no_args())
+ expect(registry.has_subkeys?(key_path)).to eq(false)
end
it "throws an exception if the key does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- expect {@registry.set_value(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ expect {registry.set_value(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
end
describe "get_subkeys" do
it "returns the subkeys if they exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:each_key).and_yield(sub_key)
- @registry.get_subkeys(key_path)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:each_key).and_yield(sub_key)
+ registry.get_subkeys(key_path)
end
end
describe "value_exists?" do
it "throws an exception if the key does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- expect {@registry.value_exists?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ expect {registry.value_exists?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
it "returns true if the value exists" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:any?).and_yield("one")
- @registry.value_exists?(key_path, value1) == true
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:any?).and_yield("one")
+ registry.value_exists?(key_path, value1) == true
end
it "returns false if the value does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:any?).and_yield(no_args())
- @registry.value_exists?(key_path, value1) == false
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:any?).and_yield(no_args())
+ registry.value_exists?(key_path, value1) == false
end
end
describe "data_exists?" do
it "throws an exception if the key does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
- expect {@registry.data_exists?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
+ expect(registry).to receive(:key_exists!).with(key_path).and_raise(Chef::Exceptions::Win32RegKeyMissing)
+ expect {registry.data_exists?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegKeyMissing)
end
it "returns true if the data exists" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@registry).to receive(:get_type_from_name).with(:string).and_return(1)
- expect(@reg_mock).to receive(:each).with(no_args()).and_yield("one", 1, "1")
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry.data_exists?(key_path, value1)).to eq(true)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(registry).to receive(:get_type_from_name).with(:string).and_return(1)
+ expect(reg_mock).to receive(:each).with(no_args()).and_yield("one", 1, "1")
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry.data_exists?(key_path, value1)).to eq(true)
end
it "returns false if the data does not exist" do
- expect(@registry).to receive(:key_exists!).with(key_path).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry).to receive(:get_type_from_name).with(:string).and_return(1)
- expect(@reg_mock).to receive(:each).with(no_args()).and_yield("one", 1, "2")
- expect(@registry.data_exists?(key_path, value1)).to eq(false)
+ expect(registry).to receive(:key_exists!).with(key_path).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry).to receive(:get_type_from_name).with(:string).and_return(1)
+ expect(reg_mock).to receive(:each).with(no_args()).and_yield("one", 1, "2")
+ expect(registry.data_exists?(key_path, value1)).to eq(false)
end
end
describe "value_exists!" do
it "does nothing if the value exists" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
- @registry.value_exists!(key_path, value1)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(true)
+ registry.value_exists!(key_path, value1)
end
it "throws an exception if the value does not exist" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
- expect{@registry.value_exists!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegValueMissing)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
+ expect{registry.value_exists!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegValueMissing)
end
end
describe "data_exists!" do
it "does nothing if the data exists" do
- expect(@registry).to receive(:data_exists?).with(key_path, value1).and_return(true)
- @registry.data_exists!(key_path, value1)
+ expect(registry).to receive(:data_exists?).with(key_path, value1).and_return(true)
+ registry.data_exists!(key_path, value1)
end
it "throws an exception if the data does not exist" do
- expect(@registry).to receive(:data_exists?).with(key_path, value1).and_return(false)
- expect{@registry.data_exists!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegDataMissing)
+ expect(registry).to receive(:data_exists?).with(key_path, value1).and_return(false)
+ expect{registry.data_exists!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegDataMissing)
end
end
describe "type_matches?" do
it "returns true if type matches" do
- expect(@registry).to receive(:value_exists!).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@registry).to receive(:get_type_from_name).with(:string).and_return(1)
- expect(@reg_mock).to receive(:each).and_yield("one", 1)
- expect(@registry.type_matches?(key_path, value1)).to eq(true)
+ expect(registry).to receive(:value_exists!).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(registry).to receive(:get_type_from_name).with(:string).and_return(1)
+ expect(reg_mock).to receive(:each).and_yield("one", 1)
+ expect(registry.type_matches?(key_path, value1)).to eq(true)
end
it "returns false if type does not match" do
- expect(@registry).to receive(:value_exists!).with(key_path, value1).and_return(true)
- expect(@registry).to receive(:get_hive_and_key).with(key_path).and_return([@hive_mock, key])
- expect(@hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | @registry.registry_system_architecture).and_yield(@reg_mock)
- expect(@reg_mock).to receive(:each).and_yield("two", 2)
- expect(@registry.type_matches?(key_path, value1)).to eq(false)
+ expect(registry).to receive(:value_exists!).with(key_path, value1).and_return(true)
+ expect(registry).to receive(:get_hive_and_key).with(key_path).and_return([hive_mock, key])
+ expect(hive_mock).to receive(:open).with(key, ::Win32::Registry::KEY_READ | registry.registry_system_architecture).and_yield(reg_mock)
+ expect(reg_mock).to receive(:each).and_yield("two", 2)
+ expect(registry.type_matches?(key_path, value1)).to eq(false)
end
it "throws an exception if value does not exist" do
- expect(@registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
- expect{@registry.type_matches?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegValueMissing)
+ expect(registry).to receive(:value_exists?).with(key_path, value1).and_return(false)
+ expect{registry.type_matches?(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegValueMissing)
end
end
describe "type_matches!" do
it "does nothing if the type_matches" do
- expect(@registry).to receive(:type_matches?).with(key_path, value1).and_return(true)
- @registry.type_matches!(key_path, value1)
+ expect(registry).to receive(:type_matches?).with(key_path, value1).and_return(true)
+ registry.type_matches!(key_path, value1)
end
it "throws an exception if the type does not match" do
- expect(@registry).to receive(:type_matches?).with(key_path, value1).and_return(false)
- expect{@registry.type_matches!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegTypesMismatch)
+ expect(registry).to receive(:type_matches?).with(key_path, value1).and_return(false)
+ expect{registry.type_matches!(key_path, value1)}.to raise_error(Chef::Exceptions::Win32RegTypesMismatch)
end
end
describe "keys_missing?" do
it "returns true if the keys are missing" do
- expect(@registry).to receive(:key_exists?).with(missing_key_path).and_return(false)
- expect(@registry.keys_missing?(key_path)).to eq(true)
+ expect(registry).to receive(:key_exists?).with(missing_key_path).and_return(false)
+ expect(registry.keys_missing?(key_path)).to eq(true)
end
it "returns false if no keys in the path are missing" do
- expect(@registry).to receive(:key_exists?).with(missing_key_path).and_return(true)
- expect(@registry.keys_missing?(key_path)).to eq(false)
+ expect(registry).to receive(:key_exists?).with(missing_key_path).and_return(true)
+ expect(registry.keys_missing?(key_path)).to eq(false)
end
end
end