2014-01-15 19:14:37 +08:00
|
|
|
# encoding: UTF-8
|
2014-02-20 18:28:28 +00:00
|
|
|
require_relative 'spec_helper'
|
2014-01-15 19:14:37 +08:00
|
|
|
|
|
|
|
describe 'openstack-common::default' do
|
|
|
|
describe 'rhel-rdo' do
|
2014-02-20 18:28:28 +00:00
|
|
|
let(:runner) { ChefSpec::Runner.new(REDHAT_OPTS) }
|
|
|
|
let(:node) { runner.node }
|
|
|
|
let(:chef_run) do
|
|
|
|
node.set['openstack']['release'] = 'testrelease'
|
2014-01-15 19:14:37 +08:00
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
runner.converge(described_recipe)
|
2014-01-15 19:14:37 +08:00
|
|
|
end
|
2014-02-21 10:41:58 +00:00
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
context 'enabling RDO' do
|
|
|
|
before do
|
|
|
|
node.set['openstack']['yum']['rdo_enabled'] = true
|
|
|
|
end
|
2014-01-15 19:14:37 +08:00
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
it 'adds RDO yum repository' do
|
|
|
|
# Using cookbook(yum) LWRP custom matcher
|
|
|
|
# https://github.com/sethvargo/chefspec#packaging-custom-matchers
|
|
|
|
expect(chef_run).to add_yum_repository('RDO-testrelease')
|
2014-01-15 19:14:37 +08:00
|
|
|
end
|
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
it 'includes yum-epel recipe' do
|
|
|
|
expect(chef_run).to include_recipe('yum-epel')
|
|
|
|
end
|
2014-01-15 19:14:37 +08:00
|
|
|
end
|
2014-02-21 10:41:58 +00:00
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
context 'disabling RDO' do
|
|
|
|
before do
|
|
|
|
node.set['openstack']['yum']['rdo_enabled'] = false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes RDO yum repository' do
|
2014-07-29 09:59:30 -05:00
|
|
|
allow(FileTest).to receive(:exist?).with('/etc/yum.repos.d/RDO-testrelease.repo').and_return(true)
|
2014-03-07 14:42:32 +08:00
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
# Using cookbook(yum) LWRP custom matcher
|
|
|
|
# https://github.com/sethvargo/chefspec#packaging-custom-matchers
|
|
|
|
expect(chef_run).to remove_yum_repository('RDO-testrelease')
|
|
|
|
end
|
|
|
|
|
2014-03-07 14:42:32 +08:00
|
|
|
it 'does nothing when RDO yum repository does not exist' do
|
|
|
|
repo = chef_run.find_resource('yum_repository', 'RDO-testrelease')
|
|
|
|
expect(repo.performed_actions).to be_empty
|
|
|
|
end
|
|
|
|
|
2014-02-20 18:28:28 +00:00
|
|
|
it 'does not include yum-epel recipe' do
|
|
|
|
expect(chef_run).to_not include_recipe('yum-epel')
|
|
|
|
end
|
2014-02-21 10:41:58 +00:00
|
|
|
end
|
2014-01-15 19:14:37 +08:00
|
|
|
end
|
|
|
|
end
|