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
|
require 'spec_helper'
describe Configurate::Provider::YAML do
let(:settings) { {"toplevel" => "bar",
"some" => {
"nested" => { "some" => "lala", "setting" => "foo"}
}
} }
describe "#initialize" do
it "loads the file" do
file = "foobar.yml"
::YAML.should_receive(:load_file).with(file).and_return({})
described_class.new file
end
it "raises if the file is not found" do
::YAML.stub(:load_file).and_raise(Errno::ENOENT)
expect {
silence_stderr do
described_class.new "foo"
end
}.to raise_error Errno::ENOENT
end
context "with a namespace" do
it "looks in the file for that namespace" do
namespace = "some.nested"
::YAML.stub(:load_file).and_return(settings)
provider = described_class.new 'bla', namespace: namespace
provider.instance_variable_get(:@settings).should == settings['some']['nested']
end
it "raises if the namespace isn't found" do
::YAML.stub(:load_file).and_return({})
expect {
described_class.new 'bla', namespace: "bar"
}.to raise_error ArgumentError
end
it "works with an empty namespace in the file" do
::YAML.stub(:load_file).and_return({'foo' => {'bar' => nil}})
expect {
described_class.new 'bla', namespace: "foo.bar"
}.to_not raise_error ArgumentError
end
end
context "with required set to false" do
it "doesn't raise if a file isn't found" do
::YAML.stub(:load_file).and_raise(Errno::ENOENT)
expect {
described_class.new "not_me", required: false
}.not_to raise_error Errno::ENOENT
end
it "doesn't raise if a namespace isn't found" do
::YAML.stub(:load_file).and_return({})
expect {
described_class.new 'bla', namespace: "foo", required: false
}.not_to raise_error ArgumentError
end
end
end
describe "#lookup_path" do
before do
::YAML.stub(:load_file).and_return(settings)
@provider = described_class.new 'dummy'
end
it "looks up the whole nesting" do
@provider.lookup_path(["some", "nested", "some"]).should == settings["some"]["nested"]["some"]
end
it "returns nil if no setting is found" do
@provider.lookup_path(["not_me"]).should be_nil
end
end
end
|