X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fcinder%2Fspec%2Fdefines%2Fcinder_backend_vmdk_spec.rb;fp=3rdparty%2Fmodules%2Fcinder%2Fspec%2Fdefines%2Fcinder_backend_vmdk_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=85940acaaea0861dd7e6955cb319950f406b7074;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/cinder/spec/defines/cinder_backend_vmdk_spec.rb b/3rdparty/modules/cinder/spec/defines/cinder_backend_vmdk_spec.rb deleted file mode 100644 index 85940acaa..000000000 --- a/3rdparty/modules/cinder/spec/defines/cinder_backend_vmdk_spec.rb +++ /dev/null @@ -1,59 +0,0 @@ -require 'spec_helper' - -describe 'cinder::backend::vmdk' do - - let(:title) { 'hippo' } - - 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 - should contain_cinder_config('hippo/volume_backend_name').with_value('hippo') - should contain_cinder_config('hippo/volume_driver').with_value('cinder.volume.drivers.vmware.vmdk.VMwareVcVmdkDriver') - should contain_cinder_config('hippo/vmware_host_ip').with_value(params[:host_ip]) - should contain_cinder_config('hippo/vmware_host_username').with_value(params[:host_username]) - should contain_cinder_config('hippo/vmware_host_password').with_value(params[:host_password]) - should contain_cinder_config('hippo/vmware_volume_folder').with_value('cinder-volumes') - should contain_cinder_config('hippo/vmware_api_retry_count').with_value(10) - should contain_cinder_config('hippo/vmware_max_object_retrieval').with_value(100) - should contain_cinder_config('hippo/vmware_task_poll_interval').with_value(5) - should contain_cinder_config('hippo/vmware_image_transfer_timeout_secs').with_value(7200) - should_not contain_cinder_config('hippo/vmware_wsdl_location') - end - - it 'installs suds python package' do - should 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 - should contain_cinder_config('hippo/vmware_volume_folder').with_value(params[:volume_folder]) - should contain_cinder_config('hippo/vmware_api_retry_count').with_value(params[:api_retry_count]) - should contain_cinder_config('hippo/vmware_max_object_retrieval').with_value(params[:max_object_retrieval]) - should contain_cinder_config('hippo/vmware_task_poll_interval').with_value(params[:task_poll_interval]) - should contain_cinder_config('hippo/vmware_image_transfer_timeout_secs').with_value(params[:image_transfer_timeout_secs]) - should contain_cinder_config('hippo/vmware_wsdl_location').with_value(params[:wsdl_location]) - end - end -end