* version bump to 13.0.0 for mitaka release * removed suse support * removed general endpoint method, since we should be able to always specify which endpoint we need * removed fallbacks in specific_endpoint method, since this behaviour is not a very obvious one to the user and it should rather return an error than an unexpected result * dry public, internal and admin endpoint methods * removed obsolete private methods * adapted method calls for admin_endpoint in libraries/cli.rb * refactored set_endpoints_by_interface recipe to directly call address_for instead of address, since the recipe already checks for an existing attribute ..['bind_interface'] and therefore address would redirect to address_for anyways * moved the nested hash order for the public, internal and admin attributes to to be more clear and to break all existing calls to fix them during the refactoring process of all cookbooks e.g: node['openstack']['endpoints']['internal']['identity'] is now node['openstack']['endpoints']['identity']['internal'] and can be moved into the identity cookbook. This also streamlines these endpoint attributes with the bind_interface and host attributes * removed dependency on openstack-identity cookbooks by moving openrc recipe to opentack-identity (same for corrensponding specs and template) * removed address method and use the address (or hostname) defined in the endpoints hash directly (logic to set this attribute should rather be done in a wrapper (with a fitting method) instead of a static and predefined one) * removed set_endpoints_by_interface recipe since logic for defining the endpoints will be moved to wrapper cookbooks * added helper method merge_config_options for generation of config hashes used in service config templates * added template for openstack-service.conf.erb which can be used by all service cookbooks * deleted all endpoints attibutes, since these are moved to the service cookbooks for easier dependency handling Implements: blueprint cookbook-refactoring Change-Id: I0547182085eed91d05384fdd7734408a839a9a2c
91 lines
3.1 KiB
Ruby
91 lines
3.1 KiB
Ruby
# encoding: UTF-8
|
|
require_relative 'spec_helper'
|
|
|
|
describe 'openstack-common::default' do
|
|
describe 'ubuntu' do
|
|
let(:runner) { ChefSpec::SoloRunner.new(UBUNTU_OPTS) }
|
|
let(:mq_services) { %w(bare-metal block-storage compute database image telemetry network orchestration) }
|
|
let(:node) { runner.node }
|
|
let(:chef_run) do
|
|
runner.converge(described_recipe)
|
|
end
|
|
|
|
it 'includes apt for apt-get update' do
|
|
node.set['openstack']['apt']['update_apt_cache'] = 'true'
|
|
expect(chef_run).to include_recipe 'apt'
|
|
end
|
|
|
|
it 'doesnt include apt for apt-get update' do
|
|
expect(chef_run).to_not include_recipe 'apt'
|
|
end
|
|
|
|
it 'upgrades ubuntu-cloud-keyring package' do
|
|
expect(chef_run).to upgrade_package 'ubuntu-cloud-keyring'
|
|
end
|
|
|
|
it 'configures openstack repository' do
|
|
# Using cookbook(apt) LWRP custom matcher
|
|
# https://github.com/sethvargo/chefspec#packaging-custom-matchers
|
|
node.set['openstack']['apt']['live_updates_enabled'] = true
|
|
expect(chef_run).to add_apt_repository('openstack-ppa').with(
|
|
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
|
|
components: ['trusty-updates/liberty', 'main'])
|
|
end
|
|
|
|
it 'disables openstack live updates' do
|
|
node.set['openstack']['apt']['live_updates_enabled'] = false
|
|
expect(chef_run).to_not add_apt_repository('openstack-ppa').with(
|
|
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
|
|
components: ['trusty-updates/liberty', 'main'])
|
|
end
|
|
|
|
it 'does not install the gem chef-vault by default' do
|
|
expect(chef_run).to_not install_chef_gem('chef-vault')
|
|
end
|
|
|
|
it 'installs the gem chef-vault if databag_type is vault' do
|
|
node.set['openstack']['databag_type'] = 'vault'
|
|
expect(chef_run).to install_chef_gem('chef-vault')
|
|
.with(version: '~> 2.3')
|
|
end
|
|
|
|
context 'rabbit mq' do
|
|
rabbit_opts = {
|
|
'userid' => 'guest',
|
|
'vhost' => '/',
|
|
'port' => '5672',
|
|
'host' => '127.0.0.1',
|
|
'ha' => true,
|
|
'heartbeat_timeout_threshold' => 123,
|
|
'heartbeat_rate' => 123,
|
|
'kombu_ssl_version' => 'TLSv1.2',
|
|
'kombu_ssl_keyfile' => 'key_file',
|
|
'kombu_ssl_certfile' => 'cert_file',
|
|
'kombu_ssl_ca_certs' => 'ca_certs_file',
|
|
'kombu_reconnect_delay' => 123.456,
|
|
'kombu_reconnect_timeout' => 123
|
|
}
|
|
rabbit_opts.each do |key, value|
|
|
it "configures rabbit mq #{key}" do
|
|
node.set['openstack']['mq']['rabbitmq'][key] = value
|
|
mq_services.each do |service|
|
|
expect(chef_run.node['openstack']['mq'][service]['rabbit'][key]).to eq(value)
|
|
end
|
|
end
|
|
end
|
|
|
|
it 'set rabbit_max_retries to 0 for all services' do
|
|
mq_services.each do |svc|
|
|
expect(chef_run.node['openstack']['mq'][svc]['rabbit']['rabbit_max_retries']).to eq(0)
|
|
end
|
|
end
|
|
|
|
it 'set rabbit_retry_interval to 1 for all services' do
|
|
mq_services.each do |svc|
|
|
expect(chef_run.node['openstack']['mq'][svc]['rabbit']['rabbit_retry_interval']).to eq(1)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|