Add tests coverage for api_paste provider

Added new tests for cinder_api_paste provider and type.

Change-Id: Iff5be7c05c270e8d2e88640bc9f7d98f577b948f
This commit is contained in:
Denis Egorenko 2016-01-27 18:24:34 +03:00
parent 52e6d98d0d
commit d1499f5e12
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#
# 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(:cinder_api_paste_ini).provider(:ini_setting)
describe provider_class do
it 'should allow setting to be set explicitly' do
resource = Puppet::Type::Cinder_api_paste_ini.new(
{:name => 'dude/foo', :value => 'bar'}
)
provider = provider_class.new(resource)
expect(provider.section).to eq('dude')
expect(provider.setting).to eq('foo')
end
end

View File

@ -0,0 +1,34 @@
require 'spec_helper'
# this hack is required for now to ensure that the path is set up correctly
# to retrive the parent provider
$LOAD_PATH.push(
File.join(
File.dirname(__FILE__),
'..',
'..',
'fixtures',
'modules',
'inifile',
'lib')
)
require 'puppet/type/cinder_api_paste_ini'
describe 'Puppet::Type.type(:cinder_api_paste_ini)' do
before :each do
@cinder_api_paste_ini = Puppet::Type.type(:cinder_api_paste_ini).new(:name => 'DEFAULT/foo', :value => 'bar')
end
it 'should accept a valid value' do
@cinder_api_paste_ini[:value] = 'bar'
expect(@cinder_api_paste_ini[:value]).to eq('bar')
end
it 'should autorequire the package that install the file' do
catalog = Puppet::Resource::Catalog.new
package = Puppet::Type.type(:package).new(:name => 'cinder')
catalog.add_resource package, @cinder_api_paste_ini
dependency = @cinder_api_paste_ini.autorequire
expect(dependency.size).to eq(1)
expect(dependency[0].target).to eq(@cinder_api_paste_ini)
expect(dependency[0].source).to eq(package)
end
end