2014-07-02 14:00:16 +02:00
|
|
|
#
|
2014-07-12 02:30:36 +02:00
|
|
|
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
|
2014-07-02 14:00:16 +02:00
|
|
|
#
|
2014-07-12 02:30:36 +02:00
|
|
|
# Author: Emilien Macchi <emilien.macchi@enovance.com>
|
2014-07-02 14:00:16 +02:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
# Unit tests for trove::api
|
|
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'trove::api' do
|
|
|
|
|
|
|
|
let :params do
|
2014-07-03 15:21:24 +02:00
|
|
|
{ :keystone_password => 'passw0rd',
|
|
|
|
:auth_host => '10.0.0.10',
|
|
|
|
:auth_url => 'http://10.0.0.10:5000/v2.0',
|
|
|
|
:auth_port => '35357',
|
|
|
|
:auth_protocol => 'https',
|
|
|
|
:keystone_tenant => '_services_',
|
|
|
|
:keystone_user => 'trove',
|
|
|
|
}
|
2014-07-02 14:00:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'trove-api' do
|
|
|
|
|
|
|
|
context 'with default parameters' do
|
|
|
|
|
2014-07-03 11:35:02 +02:00
|
|
|
let :pre_condition do
|
|
|
|
"class { 'trove':
|
|
|
|
nova_proxy_admin_pass => 'verysecrete'}"
|
|
|
|
end
|
|
|
|
|
2014-07-02 14:00:16 +02:00
|
|
|
it 'installs trove-api package and service' do
|
2015-02-25 04:52:01 +01:00
|
|
|
is_expected.to contain_service('trove-api').with(
|
2014-07-02 14:00:16 +02:00
|
|
|
:name => platform_params[:api_service_name],
|
|
|
|
:ensure => 'running',
|
|
|
|
:hasstatus => true,
|
|
|
|
:enable => true
|
|
|
|
)
|
2015-02-25 04:52:01 +01:00
|
|
|
is_expected.to contain_package('trove-api').with(
|
2014-07-02 14:00:16 +02:00
|
|
|
:name => platform_params[:api_package_name],
|
|
|
|
:ensure => 'present',
|
|
|
|
:notify => 'Service[trove-api]'
|
|
|
|
)
|
|
|
|
end
|
2014-07-02 15:44:33 +02:00
|
|
|
|
|
|
|
it 'configures trove-api with default parameters' do
|
2015-02-25 04:52:01 +01:00
|
|
|
is_expected.to contain_trove_config('DEFAULT/verbose').with_value(false)
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/debug').with_value(false)
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/bind_host').with_value('0.0.0.0')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/bind_port').with_value('8779')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/backlog').with_value('4096')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/trove_api_workers').with_value('8')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/trove_auth_url').with_value('http://10.0.0.10:5000/v2.0')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/nova_proxy_admin_user').with_value('admin')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/nova_proxy_admin_pass').with_value('verysecrete')
|
|
|
|
is_expected.to contain_trove_config('DEFAULT/nova_proxy_admin_tenant_name').with_value('admin')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/auth_host').with_value('10.0.0.10')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/auth_port').with_value('35357')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/auth_protocol').with_value('https')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/admin_tenant_name').with_value('_services_')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/admin_user').with_value('trove')
|
|
|
|
is_expected.to contain_trove_config('keystone_authtoken/admin_password').with_value('passw0rd')
|
2014-07-02 15:44:33 +02:00
|
|
|
end
|
|
|
|
|
2014-07-02 17:20:01 +02:00
|
|
|
context 'when using a single RabbitMQ server' do
|
2014-07-02 15:44:33 +02:00
|
|
|
let :pre_condition do
|
|
|
|
"class { 'trove':
|
2014-07-03 11:35:02 +02:00
|
|
|
nova_proxy_admin_pass => 'verysecrete',
|
|
|
|
rabbit_host => '10.0.0.1'}"
|
2014-07-02 15:44:33 +02:00
|
|
|
end
|
|
|
|
it 'configures trove-api with RabbitMQ' do
|
2015-02-25 04:52:01 +01:00
|
|
|
is_expected.to contain_trove_config('DEFAULT/rabbit_host').with_value('10.0.0.1')
|
2014-07-02 15:44:33 +02:00
|
|
|
end
|
|
|
|
end
|
2014-07-02 17:20:01 +02:00
|
|
|
|
|
|
|
context 'when using multiple RabbitMQ servers' do
|
|
|
|
let :pre_condition do
|
|
|
|
"class { 'trove':
|
2014-07-03 11:35:02 +02:00
|
|
|
nova_proxy_admin_pass => 'verysecrete',
|
|
|
|
rabbit_hosts => ['10.0.0.1','10.0.0.2']}"
|
2014-07-02 17:20:01 +02:00
|
|
|
end
|
|
|
|
it 'configures trove-api with RabbitMQ' do
|
2015-02-25 04:52:01 +01:00
|
|
|
is_expected.to contain_trove_config('DEFAULT/rabbit_hosts').with_value(['10.0.0.1,10.0.0.2'])
|
2014-07-02 17:20:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using MySQL' do
|
|
|
|
let :pre_condition do
|
|
|
|
"class { 'trove':
|
2014-07-03 11:35:02 +02:00
|
|
|
nova_proxy_admin_pass => 'verysecrete',
|
|
|
|
database_connection => 'mysql://trove:pass@10.0.0.1/trove'}"
|
2014-07-02 17:20:01 +02:00
|
|
|
end
|
|
|
|
it 'configures trove-api with RabbitMQ' do
|
2015-03-24 15:50:03 +01:00
|
|
|
is_expected.to contain_trove_config('database/connection').with_value('mysql://trove:pass@10.0.0.1/trove')
|
2014-07-02 17:20:01 +02:00
|
|
|
end
|
|
|
|
end
|
2014-07-02 14:00:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on Debian platforms' do
|
|
|
|
let :facts do
|
2014-07-02 15:44:33 +02:00
|
|
|
{ :osfamily => 'Debian',
|
|
|
|
:processorcount => 8 }
|
2014-07-02 14:00:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
let :platform_params do
|
|
|
|
{ :api_package_name => 'trove-api',
|
|
|
|
:api_service_name => 'trove-api' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it_configures 'trove-api'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on RedHat platforms' do
|
|
|
|
let :facts do
|
2014-07-02 15:44:33 +02:00
|
|
|
{ :osfamily => 'RedHat',
|
|
|
|
:processorcount => 8 }
|
2014-07-02 14:00:16 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
let :platform_params do
|
|
|
|
{ :api_package_name => 'openstack-trove-api',
|
|
|
|
:api_service_name => 'openstack-trove-api' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it_configures 'trove-api'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|