cookbook-openstack-block-st.../spec/spec_helper.rb

90 lines
2.3 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
::OPENSUSE_OPTS = {
platform: 'opensuse',
version: '12.3',
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).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