puppet-cinder/spec/defines/cinder_type_spec.rb

33 lines
1008 B
Ruby

#Author: Andrew Woodward <awoodward@mirantis.com>
require 'spec_helper'
describe 'cinder::type' do
let(:title) {'hippo'}
let :params do {
:set_value => ['name1','name2'],
:set_key => 'volume_backend_name',
:os_password => 'asdf',
:os_tenant_name => 'admin',
:os_username => 'admin',
:os_auth_url => 'http://127.127.127.1:5000/v2.0/',
}
end
it 'should have its execs' do
is_expected.to contain_exec('cinder type-create hippo').with(
:command => 'cinder type-create hippo',
:environment => [
'OS_TENANT_NAME=admin',
'OS_USERNAME=admin',
'OS_PASSWORD=asdf',
'OS_AUTH_URL=http://127.127.127.1:5000/v2.0/'],
:unless => "cinder type-list | grep -qP '\\bhippo\\b'",
:require => 'Package[python-cinderclient]')
is_expected.to contain_exec('cinder type-key hippo set volume_backend_name=name1')
is_expected.to contain_exec('cinder type-key hippo set volume_backend_name=name2')
end
end