
This patch aim to update our specs test in order to work with the rspec-puppet release 2.0.0, in the mean time, we update rspec syntax in order to be prepared for rspec 3.x move. In details: * Use shared_examples "a Puppet::Error" for puppet::error tests * Convert 'should' keyword to 'is_expected.to' (prepare rspec 3.x) * Fix spec tests for rspec-puppet 2.0.0 * Upgrade and pin rspec-puppet from 1.0.1 to 2.0.0 * Clean Gemfile (remove over-specificication of runtime deps of puppetlabs_spec_helper) Change-Id: Id5b428fb518f40cf92cd27078d36f19b6d60226b Card: https://trello.com/c/eHXc1Ryd/4-investigate-the-necessary-change-to-be-rspec-puppet-2-0-0-compliant
62 lines
2.7 KiB
Ruby
62 lines
2.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::volume::vmdk' do
|
|
|
|
let :params do
|
|
{
|
|
:host_ip => '172.16.16.16',
|
|
:host_password => 'asdf',
|
|
:host_username => 'user'
|
|
}
|
|
end
|
|
|
|
let :optional_params do
|
|
{
|
|
:volume_folder => 'cinder-volume-folder',
|
|
:api_retry_count => 5,
|
|
:max_object_retrieval => 200,
|
|
:task_poll_interval => 10,
|
|
:image_transfer_timeout_secs => 3600,
|
|
:wsdl_location => 'http://127.0.0.1:8080/vmware/SDK/wsdl/vim25/vimService.wsdl'
|
|
}
|
|
end
|
|
|
|
it 'should configure vmdk driver in cinder.conf' do
|
|
is_expected.to contain_cinder_config('DEFAULT/volume_driver').with_value('cinder.volume.drivers.vmware.vmdk.VMwareVcVmdkDriver')
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_host_ip').with_value(params[:host_ip])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_host_username').with_value(params[:host_username])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_host_password').with_value(params[:host_password])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_volume_folder').with_value('cinder-volumes')
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_api_retry_count').with_value(10)
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_max_object_retrieval').with_value(100)
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_task_poll_interval').with_value(5)
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_image_transfer_timeout_secs').with_value(7200)
|
|
is_expected.to_not contain_cinder_config('DEFAULT/vmware_wsdl_location')
|
|
end
|
|
|
|
it 'marks vmware_host_password as secret' do
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_host_password').with_secret( true )
|
|
end
|
|
|
|
it 'installs vmdk python driver' do
|
|
is_expected.to contain_package('python-suds').with(
|
|
:ensure => 'present'
|
|
)
|
|
end
|
|
|
|
context 'with optional parameters' do
|
|
before :each do
|
|
params.merge!(optional_params)
|
|
end
|
|
|
|
it 'should configure vmdk driver in cinder.conf' do
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_volume_folder').with_value(params[:volume_folder])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_api_retry_count').with_value(params[:api_retry_count])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_max_object_retrieval').with_value(params[:max_object_retrieval])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_task_poll_interval').with_value(params[:task_poll_interval])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_image_transfer_timeout_secs').with_value(params[:image_transfer_timeout_secs])
|
|
is_expected.to contain_cinder_config('DEFAULT/vmware_wsdl_location').with_value(params[:wsdl_location])
|
|
end
|
|
end
|
|
end
|