
It is needed by the imminent Pacemaker::Resource::Group, not just by Pacemaker::Resource::Primitive.
136 lines
3.7 KiB
Ruby
136 lines
3.7 KiB
Ruby
require 'spec_helper'
|
|
require File.expand_path('../../../../libraries/pacemaker/resource/primitive', File.dirname(__FILE__))
|
|
require File.expand_path('../../../fixtures/keystone_primitive', File.dirname(__FILE__))
|
|
require File.expand_path('../../../helpers/common_object_examples', File.dirname(__FILE__))
|
|
|
|
describe Pacemaker::Resource::Primitive do
|
|
let(:fixture) { Chef::RSpec::Pacemaker::Config::KEYSTONE_PRIMITIVE.dup }
|
|
let(:fixture_definition) {
|
|
Chef::RSpec::Pacemaker::Config::KEYSTONE_PRIMITIVE_DEFINITION
|
|
}
|
|
|
|
before(:each) do
|
|
Mixlib::ShellOut.any_instance.stub(:run_command)
|
|
end
|
|
|
|
def object_type
|
|
'primitive'
|
|
end
|
|
|
|
def pacemaker_object_class
|
|
Pacemaker::Resource::Primitive
|
|
end
|
|
|
|
def fields
|
|
%w(name agent params_string meta_string op_string)
|
|
end
|
|
|
|
it_should_behave_like "a CIB object"
|
|
|
|
describe "#params_string" do
|
|
it "should return empty string with nil params" do
|
|
fixture.params = nil
|
|
expect(fixture.params_string).to eq("")
|
|
end
|
|
|
|
it "should return empty string with empty params" do
|
|
fixture.params = {}
|
|
expect(fixture.params_string).to eq("")
|
|
end
|
|
|
|
it "should return a resource params string" do
|
|
fixture.params = {
|
|
"foo" => "bar",
|
|
"baz" => "qux",
|
|
}
|
|
expect(fixture.params_string).to eq(%'params baz="qux" foo="bar"')
|
|
end
|
|
end
|
|
|
|
describe "#meta_string" do
|
|
it "should return empty string with nil meta" do
|
|
fixture.meta = nil
|
|
expect(fixture.meta_string).to eq("")
|
|
end
|
|
|
|
it "should return empty string with empty meta" do
|
|
fixture.meta = {}
|
|
expect(fixture.meta_string).to eq("")
|
|
end
|
|
|
|
it "should return a resource meta string" do
|
|
fixture.meta = {
|
|
"foo" => "bar",
|
|
"baz" => "qux",
|
|
}
|
|
expect(fixture.meta_string).to eq(%'meta baz="qux" foo="bar"')
|
|
end
|
|
end
|
|
|
|
describe "#op_string" do
|
|
it "should return empty string with nil op" do
|
|
fixture.op = nil
|
|
expect(fixture.op_string).to eq("")
|
|
end
|
|
|
|
it "should return empty string with empty op" do
|
|
fixture.op = {}
|
|
expect(fixture.op_string).to eq("")
|
|
end
|
|
|
|
it "should return a resource op string" do
|
|
fixture.op = {
|
|
"monitor" => {
|
|
"foo" => "bar",
|
|
"baz" => "qux",
|
|
}
|
|
}
|
|
expect(fixture.op_string).to eq(%'op monitor baz="qux" foo="bar"')
|
|
end
|
|
end
|
|
|
|
describe "#definition_string" do
|
|
it "should return the definition string" do
|
|
expect(fixture.definition_string).to eq(fixture_definition)
|
|
end
|
|
|
|
it "should return a short definition string" do
|
|
primitive = Pacemaker::Resource::Primitive.new('foo')
|
|
primitive.definition = \
|
|
%!primitive foo ocf:heartbeat:IPaddr2 params foo="bar"!
|
|
primitive.parse_definition
|
|
expect(primitive.definition_string).to eq(<<'EOF'.chomp)
|
|
primitive foo ocf:heartbeat:IPaddr2 \
|
|
params foo="bar"
|
|
EOF
|
|
end
|
|
end
|
|
|
|
describe "#quoted_definition_string" do
|
|
it "should return the quoted definition string" do
|
|
primitive = Pacemaker::Resource::Primitive.new('foo')
|
|
primitive.definition = <<'EOF'.chomp
|
|
primitive foo ocf:openstack:keystone \
|
|
params bar="baz\\qux" bar2="baz'qux"
|
|
EOF
|
|
primitive.parse_definition
|
|
expect(primitive.quoted_definition_string).to eq(<<'EOF'.chomp)
|
|
'primitive foo ocf:openstack:keystone \\
|
|
params bar="baz\\qux" bar2="baz\'qux"'
|
|
EOF
|
|
end
|
|
end
|
|
|
|
describe "#parse_definition" do
|
|
before(:each) do
|
|
@parsed = Pacemaker::Resource::Primitive.new(fixture.name)
|
|
@parsed.definition = fixture_definition
|
|
@parsed.parse_definition
|
|
end
|
|
|
|
it "should parse the agent" do
|
|
expect(@parsed.agent).to eq(fixture.agent)
|
|
end
|
|
end
|
|
end
|