16a6af5000
- deprecated Gemfile - Updated TESTING.md and README.md - updated Rakefile to use chef exec insted of bundle exec - replaced Runner with SoloRunner in specs Change-Id: If3e3b54c9dbaa8bb51164bc85fd93ff5fc54ec4d
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
# encoding: UTF-8
|
|
#
|
|
# Cookbook Name:: openstack-block-storage
|
|
|
|
require_relative 'spec_helper'
|
|
|
|
describe 'openstack-block-storage::api' do
|
|
describe 'redhat' do
|
|
let(:runner) { ChefSpec::SoloRunner.new(REDHAT_OPTS) }
|
|
let(:node) { runner.node }
|
|
let(:chef_run) { runner.converge(described_recipe) }
|
|
|
|
include_context 'block-storage-stubs'
|
|
|
|
it 'upgrades cinder api package' do
|
|
expect(chef_run).to upgrade_package 'python-cinderclient'
|
|
end
|
|
|
|
it 'upgrades mysql python package' do
|
|
expect(chef_run).to upgrade_package 'MySQL-python'
|
|
end
|
|
|
|
it 'upgrades db2 python packages if explicitly told' do
|
|
node.set['openstack']['db']['block-storage']['service_type'] = 'db2'
|
|
|
|
['python-ibm-db', 'python-ibm-db-sa'].each do |pkg|
|
|
expect(chef_run).to upgrade_package pkg
|
|
end
|
|
end
|
|
|
|
it 'upgrades postgresql python packages if explicitly told' do
|
|
node.set['openstack']['db']['block-storage']['service_type'] = 'postgresql'
|
|
|
|
expect(chef_run).to upgrade_package 'python-psycopg2'
|
|
expect(chef_run).not_to upgrade_package 'MySQL-python'
|
|
end
|
|
|
|
it 'starts cinder api on boot' do
|
|
expect(chef_run).to enable_service 'openstack-cinder-api'
|
|
end
|
|
end
|
|
end
|