cookbook-openstack-block-st.../spec/spec_helper.rb
Ionuț Arțăriși 2cb0c061d6 change tests to use SLES platform instead of openSUSE
Change-Id: I0631e9c26f02164fa15cf52198055643eb540132
2014-02-07 10:53:35 +01:00

95 lines
2.4 KiB
Ruby

# encoding: UTF-8
#
# Cookbook Name:: openstack-block-storage
require 'chefspec'
require 'chefspec/berkshelf'
require 'chef/application'
require_relative 'support/matcher'
::LOG_LEVEL = :fatal
::SUSE_OPTS = {
platform: 'suse',
version: '11.03',
log_level: ::LOG_LEVEL
}
::REDHAT_OPTS = {
platform: 'redhat',
version: '6.3',
log_level: ::LOG_LEVEL
}
::UBUNTU_OPTS = {
platform: 'ubuntu',
version: '12.04',
log_level: ::LOG_LEVEL
}
def block_storage_stubs # rubocop:disable MethodLength
::Chef::Recipe.any_instance.stub(:rabbit_servers)
.and_return('1.1.1.1:5672,2.2.2.2:5672')
::Chef::Recipe.any_instance.stub(:get_password)
.with('service', anything)
.and_return('')
::Chef::Recipe.any_instance.stub(:get_password)
.with('db', anything)
.and_return('')
::Chef::Recipe.any_instance.stub(:secret)
.with('secrets', 'openstack_identity_bootstrap_token')
.and_return('bootstrap-token')
::Chef::Recipe.any_instance.stub(:get_password)
.with('user', 'guest')
.and_return('rabbit-pass')
::Chef::Recipe.any_instance.stub(:get_password)
.with('service', 'openstack-block-storage')
.and_return('cinder-pass')
::Chef::Application.stub(:fatal!)
end
def expect_runs_openstack_common_logging_recipe
it 'runs logging recipe if node attributes say to' do
expect(@chef_run).to include_recipe 'openstack-common::logging'
end
end
def expect_creates_cinder_conf(service, user, group, action = :restart) # rubocop:disable MethodLength
describe 'cinder.conf' do
before do
@file = @chef_run.template '/etc/cinder/cinder.conf'
end
it 'has proper owner' do
expect(@file.owner).to eq(user)
expect(@file.group).to eq(group)
end
it 'has proper modes' do
expect(sprintf('%o', @file.mode)).to eq '644'
end
it 'notifies service restart' do
expect(@file).to notify(service).to(action)
end
end
end
def expect_creates_policy_json(service, user, group, action = :restart) # rubocop:disable MethodLength
describe 'policy.json' do
before do
@file = @chef_run.template '/etc/cinder/policy.json'
end
it 'has proper owner' do
expect(@file.owner).to eq(user)
expect(@file.group).to eq(group)
end
it 'has proper modes' do
expect(sprintf('%o', @file.mode)).to eq '644'
end
it 'notifies service restart' do
expect(@file).to notify(service).to(action)
end
end
end