(spec) Added tuskar_config unit tests

This commit is contained in:
Sebastien Badia 2014-10-30 11:59:23 +01:00
parent f89aa3be0e
commit 8c3e632f36
2 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,37 @@
# these tests are a little concerning b/c they are hacking around the
# modulepath, so these tests will not catch issues that may eventually arise
# related to loading these plugins.
# I could not, for the life of me, figure out how to programatcally set the modulepath
$LOAD_PATH.push(
File.join(
File.dirname(__FILE__),
'..',
'..',
'..',
'fixtures',
'modules',
'inifile',
'lib')
)
require 'spec_helper'
provider_class = Puppet::Type.type(:tuskar_config).provider(:ini_setting)
describe provider_class do
it 'should default to the default setting when no other one is specified' do
resource = Puppet::Type::Tuskar_config.new(
{:name => 'DEFAULT/foo', :value => 'bar'}
)
provider = provider_class.new(resource)
provider.section.should == 'DEFAULT'
provider.setting.should == 'foo'
end
it 'should allow setting to be set explicitly' do
resource = Puppet::Type::Tuskar_config.new(
{:name => 'dude/foo', :value => 'bar'}
)
provider = provider_class.new(resource)
provider.section.should == 'dude'
provider.setting.should == 'foo'
end
end

View File

@ -0,0 +1,52 @@
require 'puppet'
require 'puppet/type/tuskar_config'
describe 'Puppet::Type.type(:tuskar_config)' do
before :each do
@tuskar_config = Puppet::Type.type(:tuskar_config).new(:name => 'DEFAULT/foo', :value => 'bar')
end
it 'should require a name' do
expect {
Puppet::Type.type(:tuskar_config).new({})
}.to raise_error(Puppet::Error, 'Title or name must be provided')
end
it 'should not expect a name with whitespace' do
expect {
Puppet::Type.type(:tuskar_config).new(:name => 'f oo')
}.to raise_error(Puppet::Error, /Parameter name failed/)
end
it 'should fail when there is no section' do
expect {
Puppet::Type.type(:tuskar_config).new(:name => 'foo')
}.to raise_error(Puppet::Error, /Parameter name failed/)
end
it 'should not require a value when ensure is absent' do
Puppet::Type.type(:tuskar_config).new(:name => 'DEFAULT/foo', :ensure => :absent)
end
it 'should accept a valid value' do
@tuskar_config[:value] = 'bar'
@tuskar_config[:value].should == 'bar'
end
it 'should not accept a value with whitespace' do
@tuskar_config[:value] = 'b ar'
@tuskar_config[:value].should == 'b ar'
end
it 'should accept valid ensure values' do
@tuskar_config[:ensure] = :present
@tuskar_config[:ensure].should == :present
@tuskar_config[:ensure] = :absent
@tuskar_config[:ensure].should == :absent
end
it 'should not accept invalid ensure values' do
expect {
@tuskar_config[:ensure] = :latest
}.to raise_error(Puppet::Error, /Invalid value/)
end
end