cookbook-openstack-block-st.../spec/volume-redhat_spec.rb

135 lines
4.5 KiB
Ruby

# encoding: UTF-8
#
# Cookbook Name:: openstack-block-storage
require_relative 'spec_helper'
describe 'openstack-block-storage::volume' do
before { block_storage_stubs }
describe 'redhat' do
before do
@chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS
@chef_run.converge 'openstack-block-storage::volume'
end
it 'installs mysql python packages by default' do
expect(@chef_run).to upgrade_package 'MySQL-python'
end
it 'installs db2 python packages if explicitly told' do
chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS
node = chef_run.node
node.set['openstack']['db']['block-storage']['service_type'] = 'db2'
chef_run.converge 'openstack-block-storage::volume'
['python-ibm-db', 'python-ibm-db-sa'].each do |pkg|
expect(chef_run).to upgrade_package pkg
end
end
it 'installs postgresql python packages if explicitly told' do
chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS
node = chef_run.node
node.set['openstack']['db']['block-storage']['service_type'] = 'postgresql'
chef_run.converge 'openstack-block-storage::volume'
expect(chef_run).to upgrade_package 'python-psycopg2'
expect(chef_run).not_to upgrade_package 'MySQL-python'
end
it 'installs cinder iscsi packages' do
expect(@chef_run).to upgrade_package 'scsi-target-utils'
end
it 'starts cinder volume' do
expect(@chef_run).to start_service 'openstack-cinder-volume'
end
it 'starts cinder volume on boot' do
expected = 'openstack-cinder-volume'
expect(@chef_run).to enable_service expected
end
it 'starts iscsi target on boot' do
expect(@chef_run).to enable_service 'tgtd'
end
it 'installs nfs packages' do
chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS do |n|
n.set['openstack']['block-storage']['volume']['driver'] = 'cinder.volume.drivers.netapp.nfs.NetAppDirect7modeNfsDriver'
end
chef_run.converge 'openstack-block-storage::volume'
expect(chef_run).to upgrade_package 'nfs-utils'
expect(chef_run).to upgrade_package 'nfs-utils-lib'
end
it 'installs emc packages' do
chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS do |n|
n.set['openstack']['block-storage']['volume']['driver'] = 'cinder.volume.drivers.emc.emc_smis_iscsi.EMCSMISISCSIDriver'
end
chef_run.converge 'openstack-block-storage::volume'
expect(chef_run).to upgrade_package 'pywbem'
end
it 'has redhat include' do
file = '/etc/tgt/targets.conf'
expect(@chef_run).to render_file(file).with_content('include /var/lib/cinder/volumes/*')
expect(@chef_run).not_to render_file(file).with_content('include /etc/tgt/conf.d/*.conf')
end
describe 'IBM GPFS volume driver' do
before do
@chef_run = ::ChefSpec::Runner.new ::REDHAT_OPTS do |n|
n.set['openstack']['block-storage']['volume']['driver'] = 'cinder.volume.drivers.gpfs.GPFSDriver'
n.set['openstack']['block-storage']['gpfs']['gpfs_mount_point_base'] = 'volumes'
end
@conf = '/etc/cinder/cinder.conf'
@chef_run.converge 'openstack-block-storage::volume'
end
it 'verifies gpfs_mount_point_base' do
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_mount_point_base = volumes$/)
end
it 'verifies gpfs_images_dir' do
@chef_run.node.set['openstack']['block-storage']['gpfs']['gpfs_images_dir'] = 'images'
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_images_dir = images$/)
end
it 'verifies gpfs_images_share_mode is default' do
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_images_share_mode = copy_on_write$/)
end
it 'verifies gpfs_sparse_volumes is default' do
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_sparse_volumes = true$/)
end
it 'verifies gpfs_max_clone_depth is default' do
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_max_clone_depth = 8$/)
end
it 'verifies gpfs_storage_pool is default' do
expect(@chef_run).to render_file(@conf).with_content(
/^gpfs_storage_pool = system$/)
end
it 'verifies gpfs volume directory is created with owner and mode set correctly' do
expect(@chef_run).to create_directory('volumes').with(
owner: 'cinder',
group: 'cinder',
mode: '0755'
)
end
end
end
end