cookbook-openstack-image/spec/spec_helper.rb

353 lines
13 KiB
Ruby

# encoding: UTF-8
require 'chefspec'
require 'chefspec/berkshelf'
ChefSpec::Coverage.start! { add_filter 'openstack-image' }
require 'chef/application'
LOG_LEVEL = :fatal
REDHAT_OPTS = {
platform: 'redhat',
version: '7.1',
log_level: LOG_LEVEL
}
UBUNTU_OPTS = {
platform: 'ubuntu',
version: '14.04',
log_level: LOG_LEVEL
}
SUSE_OPTS = {
platform: 'suse',
version: '11.3',
log_lovel: LOG_LEVEL
}
# Helper methods
module Helpers
# Create an anchored regex to exactly match the entire line
# (name borrowed from grep --line-regexp)
#
# @param [String] str The whole line to match
# @return [Regexp] The anchored/escaped regular expression
def line_regexp(str)
/^#{Regexp.quote(str)}$/
end
end
shared_context 'image-stubs' do
before do
allow_any_instance_of(Chef::Recipe).to receive(:address_for)
.with('lo')
.and_return('127.0.1.1')
allow_any_instance_of(Chef::Recipe).to receive(:config_by_role)
.with('rabbitmq-server', 'queue')
.and_return(
'host' => 'rabbit-host', 'port' => 'rabbit-port'
)
allow_any_instance_of(Chef::Recipe).to receive(:rabbit_servers)
.and_return '1.1.1.1:5672,2.2.2.2:5672'
allow_any_instance_of(Chef::Recipe).to receive(:get_secret)
.with('openstack_identity_bootstrap_token')
.and_return('bootstrap-token')
allow_any_instance_of(Chef::Recipe).to receive(:get_secret)
.with('openstack_vmware_secret_name')
.and_return 'vmware_secret_name'
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('db', anything)
.and_return('')
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('service', 'openstack-image')
.and_return('glance-pass')
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('user', 'guest')
.and_return('mq-pass')
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('service', 'rbd-image')
.and_return('rbd-pass')
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('user', 'admin')
.and_return('admin-pass')
allow(Chef::Application).to receive(:fatal!)
stub_command('glance --insecure --os-username admin --os-password admin-pass --os-tenant-name admin --os-image-url http://127.0.0.1:9292 --os-auth-url http://127.0.0.1:5000/v2.0 image-list | grep cirros').and_return('')
end
end
shared_examples 'common-logging-recipe' do
it 'does not include logging recipe by default' do
expect(chef_run).not_to include_recipe('openstack-common::logging')
end
it 'includes logging recipe if openstack/image/syslog/use attribute is true' do
node.set['openstack']['image']['syslog']['use'] = true
expect(chef_run).to include_recipe('openstack-common::logging')
end
end
shared_examples 'common-packages' do
it 'upgrades python-keystoneclient package' do
expect(chef_run).to upgrade_package 'python-keystoneclient'
end
it 'upgrades curl package' do
expect(chef_run).to upgrade_package 'curl'
end
it 'upgrades glance package' do
expect(chef_run).to upgrade_package 'glance'
end
it 'honors the platform name and option package overrides' do
node.set['openstack']['image']['platform']['package_overrides'] = '-o Dpkg::Options::=\'--force-confold\' -o Dpkg::Options::=\'--force-confdef\' --force-yes'
node.set['openstack']['image']['platform']['image_packages'] = ['my-glance']
expect(chef_run).to upgrade_package('my-glance').with(options: '-o Dpkg::Options::=\'--force-confold\' -o Dpkg::Options::=\'--force-confdef\' --force-yes')
end
end
shared_examples 'cache-directory' do
describe '/var/cache/glance' do
let(:dir) { chef_run.directory('/var/cache/glance') }
it 'creates directory /var/cache/glance' do
expect(chef_run).to create_directory(dir.name).with(
user: 'glance',
group: 'glance',
mode: 00700
)
end
end
end
shared_examples 'image-lib-cache-directory' do
describe '/var/lib/glance/image-cache/' do
let(:dir) { chef_run.directory('/var/lib/glance/image-cache/') }
it 'creates directory /var/lib/glance/image-cache' do
expect(chef_run).to create_directory(dir.name).with(
user: 'glance',
group: 'glance',
mode: 00755,
recursive: true
)
end
end
end
shared_examples 'glance-directory' do
describe '/etc/glance' do
let(:dir) { chef_run.directory('/etc/glance') }
it 'creates directory /etc/glance' do
expect(chef_run).to create_directory(dir.name).with(
user: 'glance',
group: 'glance',
mode: 00700
)
end
end
end
shared_examples 'custom template banner displayer' do
it 'shows the custom banner' do
node.set['openstack']['image']['custom_template_banner'] = 'custom_template_banner_value'
expect(chef_run).to render_file(file_name).with_content(/^custom_template_banner_value$/)
end
end
shared_context 'endpoint-stubs' do
before do
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('service', 'openstack-image')
.and_return('admin_password_value')
end
end
shared_context 'sql-stubs' do
before do
node.set['openstack']['db']['image']['username'] = 'db_username_value'
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('db', 'glance')
.and_return('db_password_value')
allow_any_instance_of(Chef::Recipe).to receive(:db_uri)
.with('image', 'db_username_value', 'db_password_value')
.and_return('sql_connection_value')
end
end
shared_examples 'syslog use' do
it 'shows log_config if syslog use is enabled' do
node.set['openstack']['image']['syslog']['use'] = true
expect(chef_run).to render_file(file.name).with_content(%r{^log_config = /etc/openstack/logging.conf$})
end
it 'shows log_file if syslog use is disabled' do
node.set['openstack']['image']['syslog']['use'] = false
expect(chef_run).to render_file(file.name).with_content(%r{^log_file = /var/log/glance/#{log_file_name}$})
end
end
shared_examples 'keystone attribute setter' do |version|
it 'sets the auth_uri value' do
expect(chef_run).to render_file(file.name).with_content(%r{^auth_uri = http://127.0.0.1:5000/v2.0$})
end
it 'sets the identity_uri value' do
expect(chef_run).to render_file(file.name).with_content(%r{^identity_uri = http://127.0.0.1:35357/$})
end
context 'auth version' do
it 'shows the version attribute if it is different from v2.0' do
node.set['openstack']['image'][version]['auth']['version'] = 'v3.0'
expect(chef_run).to render_file(file.name).with_content(/^auth_version = v3.0$/)
end
end
%w(tenant_name user).each do |attr|
it "sets the auth admin #{attr} attribute" do
node.set['openstack']['image']["service_#{attr}"] = "service_#{attr}_value"
expect(chef_run).to render_file(file.name).with_content(/^admin_#{attr} = service_#{attr}_value$/)
end
end
it 'sets the admin password attribute' do
expect(chef_run).to render_file(file.name).with_content(/^admin_password = admin_password_value$/)
end
it 'sets the signing dir attribute' do
node.set['openstack']['image'][version]['auth']['cache_dir'] = 'cache_dir_value'
expect(chef_run).to render_file(file.name).with_content(/^signing_dir = cache_dir_value$/)
end
end
shared_examples 'messaging' do
context 'messaging' do
before do
node.set['openstack']['image']['notification_driver'] = 'messaging'
end
it 'sets the notifier_strategy attribute' do
node.set['openstack']['mq']['image']['notifier_strategy'] = 'default'
expect(chef_run).to render_file(file.name).with_content(/^notifier_strategy=default$/)
end
it 'has RPC/AMQP defaults set' do
[/^amqp_durable_queues=false$/,
/^amqp_auto_delete=false$/,
/^heartbeat_timeout_threshold=0$/,
/^heartbeat_rate=2$/].each do |line|
expect(chef_run).to render_file(file_name).with_content(line)
end
end
context 'commonly named attributes' do
%w(notification_driver rpc_backend rpc_thread_pool_size
rpc_conn_pool_size rpc_response_timeout control_exchange).each do |attr|
it "sets the #{attr} attribute" do
node.set['openstack']['image'][attr] = "#{attr}_value"
expect(chef_run).to render_file(file.name).with_content(/^#{attr}=#{attr}_value$/)
end
end
end
context 'rabbitmq' do
before do
node.set['openstack']['mq']['image']['service_type'] = 'rabbitmq'
node.set['openstack']['mq']['image']['rabbit']['userid'] = 'rabbit_userid_value'
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('user', 'rabbit_userid_value')
.and_return('rabbit_password_value')
end
%w(host port userid use_ssl).each do |attr|
it "sets the rabbitmq #{attr} attribute" do
node.set['openstack']['mq']['image']['rabbit'][attr] = "rabbit_#{attr}_value"
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_rabbit', /^rabbit_#{attr} = rabbit_#{attr}_value$/)
end
end
it 'does not have ha rabbit options set by default' do
[/^rabbit_hosts=/,
/^rabbit_ha_queues=/].each do |line|
expect(chef_run).not_to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', line)
end
end
it 'has ha rabbit options set' do
node.set['openstack']['mq']['image']['rabbit']['ha'] = true
[/^rabbit_hosts=1.1.1.1:5672,2.2.2.2:5672$/,
/^rabbit_ha_queues=True/].each do |line|
expect(chef_run).to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', line)
end
[/^rabbit_host=/,
/^rabbit_port=/].each do |line|
expect(chef_run).not_to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', line)
end
end
it 'sets the rabbitmq password' do
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_rabbit', /^rabbit_password = rabbit_password_value$/)
end
it 'sets the rabbitmq vhost' do
node.set['openstack']['mq']['image']['rabbit']['vhost'] = 'rabbit_vhost_value'
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_rabbit', /^rabbit_virtual_host = rabbit_vhost_value$/)
end
it 'sets the rabbitmq notification topics' do
node.set['openstack']['mq']['image']['rabbit']['notification_topic'] = 'helloworld'
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_rabbit', /^notification_topics = helloworld$/)
end
it 'does not have kombu ssl version set' do
expect(chef_run).not_to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', /^kombu_ssl_version=TLSv1.2$/)
end
it 'sets kombu ssl version' do
node.set['openstack']['mq']['image']['rabbit']['use_ssl'] = true
node.set['openstack']['mq']['image']['rabbit']['kombu_ssl_version'] = 'TLSv1.2'
expect(chef_run).to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', /^kombu_ssl_version=TLSv1.2$/)
end
it 'has the default rabbit_retry_interval set' do
expect(chef_run).to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', /^rabbit_retry_interval = 1$/)
end
it 'has the default rabbit_max_retries set' do
expect(chef_run).to render_config_file(file.name).with_section_content('oslo_messaging_rabbit', /^rabbit_max_retries = 0$/)
end
end
context 'qpid' do
before do
node.set['openstack']['mq']['image']['service_type'] = 'qpid'
node.set['openstack']['mq']['image']['qpid']['username'] = 'qpid_username_value'
allow_any_instance_of(Chef::Recipe).to receive(:get_password)
.with('user', 'qpid_username_value')
.and_return('qpid_password_value')
end
%w(port username sasl_mechanisms reconnect reconnect_timeout
reconnect_limit reconnect_interval_min reconnect_interval_max reconnect_interval
heartbeat protocol tcp_nodelay topology_version).each do |attr|
it "sets the qpid #{attr} attribute" do
node.set['openstack']['mq']['image']['qpid'][attr] = "qpid_#{attr}_value"
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_qpid', /^qpid_#{attr}\s?=\s?qpid_#{attr}_value$/)
end
end
it 'sets the qpid notification topics' do
node.set['openstack']['mq']['image']['qpid']['notification_topic'] = 'helloworld'
expect(chef_run).to render_config_file(file_name).with_section_content('oslo_messaging_qpid', /^notification_topics=helloworld$/)
end
end
end
end