c09a93456e
Translated RSpec's Syntax deprecated from ruby archives in Puppet-Cinder/spec/classes. -Upgrade from RSpec 2 to RSpec 3 on corresponding files. Partial-Bug: #1816857 Change-Id: I75cd0f348465c91500a8d3b8cd82ab53b3224c04
32 lines
966 B
Ruby
32 lines
966 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::setup_test_volume' do
|
|
shared_examples 'cinder::setup_test_volume' do
|
|
it { is_expected.to contain_package('lvm2').with_ensure('present') }
|
|
|
|
it { is_expected.to contain_exec('create_/var/lib/cinder/cinder-volumes').with(
|
|
:command => 'dd if=/dev/zero of="/var/lib/cinder/cinder-volumes" bs=1 count=0 seek=4G'
|
|
)}
|
|
|
|
it {
|
|
is_expected.to contain_exec('losetup /dev/loop2 /var/lib/cinder/cinder-volumes')
|
|
is_expected.to contain_exec('pvcreate /dev/loop2')
|
|
is_expected.to contain_exec('vgcreate cinder-volumes /dev/loop2')
|
|
}
|
|
|
|
it { is_expected.to contain_file('/var/lib/cinder/cinder-volumes').with_mode('0640') }
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts())
|
|
end
|
|
|
|
it_behaves_like 'cinder::setup_test_volume'
|
|
end
|
|
end
|
|
end
|