95d0af7ec8
This change adds the abiltity to manage the memcached servers for the keystone authtoken configuration in ironic::api Change-Id: I43af512ffd7662366534128ef2e5836d5a506252
176 lines
6.0 KiB
Ruby
176 lines
6.0 KiB
Ruby
#
|
|
# Copyright (C) 2013 eNovance SAS <licensing@enovance.com>
|
|
#
|
|
# Author: Emilien Macchi <emilien.macchi@enovance.com>
|
|
#
|
|
# 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 ironic::api class
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'ironic::api' do
|
|
|
|
let :default_params do
|
|
{ :package_ensure => 'present',
|
|
:enabled => true,
|
|
:port => '6385',
|
|
:max_limit => '1000',
|
|
:host_ip => '0.0.0.0',
|
|
:admin_user => 'ironic',
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{ :admin_password => 'thepassword' }
|
|
end
|
|
|
|
shared_examples_for 'ironic api' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it { is_expected.to contain_class('ironic::params') }
|
|
it { is_expected.to contain_class('ironic::policy') }
|
|
|
|
it 'installs ironic api package' do
|
|
if platform_params.has_key?(:api_package)
|
|
is_expected.to contain_package('ironic-api').with(
|
|
:name => platform_params[:api_package],
|
|
:ensure => p[:package_ensure],
|
|
:tag => ['openstack', 'ironic-package'],
|
|
)
|
|
is_expected.to contain_package('ironic-api').with_before(/Service\[ironic-api\]/)
|
|
end
|
|
end
|
|
|
|
it 'ensure ironic api service is running' do
|
|
is_expected.to contain_service('ironic-api').with(
|
|
'hasstatus' => true,
|
|
'tag' => 'ironic-service',
|
|
)
|
|
end
|
|
|
|
it 'configures ironic.conf' do
|
|
is_expected.to contain_ironic_config('api/port').with_value(p[:port])
|
|
is_expected.to contain_ironic_config('api/host_ip').with_value(p[:host_ip])
|
|
is_expected.to contain_ironic_config('api/max_limit').with_value(p[:max_limit])
|
|
is_expected.to contain_ironic_config('api/api_workers').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_ironic_config('api/public_endpoint').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_ironic_config('keystone_authtoken/admin_password').with_value(p[:admin_password])
|
|
is_expected.to contain_ironic_config('keystone_authtoken/admin_user').with_value(p[:admin_user])
|
|
is_expected.to contain_ironic_config('keystone_authtoken/auth_uri').with_value('http://127.0.0.1:5000/')
|
|
is_expected.to contain_ironic_config('keystone_authtoken/identity_uri').with_value('http://127.0.0.1:35357/')
|
|
is_expected.to contain_ironic_config('keystone_authtoken/memcached_servers').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_ironic_config('neutron/url').with_value('http://127.0.0.1:9696/')
|
|
end
|
|
|
|
context 'when overriding parameters' do
|
|
before :each do
|
|
params.merge!(
|
|
:port => '3430',
|
|
:host_ip => '127.0.0.1',
|
|
:max_limit => '10',
|
|
:workers => '8',
|
|
:auth_uri => 'https://1.2.3.4:5000/',
|
|
:identity_uri => 'https://1.2.3.4:35357/',
|
|
:public_endpoint => 'https://1.2.3.4:6385/',
|
|
:memcached_servers => '1.1.1.1:11211',
|
|
)
|
|
end
|
|
it 'should replace default parameter with new value' do
|
|
is_expected.to contain_ironic_config('api/port').with_value(p[:port])
|
|
is_expected.to contain_ironic_config('api/host_ip').with_value(p[:host_ip])
|
|
is_expected.to contain_ironic_config('api/max_limit').with_value(p[:max_limit])
|
|
is_expected.to contain_ironic_config('api/api_workers').with_value(p[:workers])
|
|
is_expected.to contain_ironic_config('api/public_endpoint').with_value(p[:public_endpoint])
|
|
is_expected.to contain_ironic_config('keystone_authtoken/auth_uri').with_value('https://1.2.3.4:5000/')
|
|
is_expected.to contain_ironic_config('keystone_authtoken/identity_uri').with_value('https://1.2.3.4:35357/')
|
|
is_expected.to contain_ironic_config('keystone_authtoken/memcached_servers').with_value('1.1.1.1:11211')
|
|
end
|
|
end
|
|
|
|
context 'when running ironic-api in wsgi' do
|
|
before do
|
|
params.merge!({ :service_name => 'httpd' })
|
|
end
|
|
|
|
let :pre_condition do
|
|
"include ::apache"
|
|
end
|
|
|
|
it 'configures ironic-api service with Apache' do
|
|
is_expected.to contain_service('ironic-api').with(
|
|
:ensure => 'stopped',
|
|
:name => platform_params[:api_service],
|
|
:enable => false,
|
|
:tag => 'ironic-service',
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'when service_name is not valid' do
|
|
before do
|
|
params.merge!({ :service_name => 'foobar' })
|
|
end
|
|
|
|
let :pre_condition do
|
|
"include ::apache"
|
|
end
|
|
|
|
it_raises 'a Puppet::Error', /Invalid service_name/
|
|
end
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
@default_facts.merge({
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '8.0',
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:fqdn => 'some.host.tld',
|
|
:processorcount => 2,
|
|
})
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :api_package => 'ironic-api',
|
|
:api_service => 'ironic-api' }
|
|
end
|
|
|
|
it_configures 'ironic api'
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
@default_facts.merge({
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'RedHat',
|
|
:operatingsystemrelease => '7.2',
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:fqdn => 'some.host.tld',
|
|
:processorcount => 2,
|
|
})
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :api_service => 'openstack-ironic-api' }
|
|
end
|
|
|
|
it_configures 'ironic api'
|
|
end
|
|
|
|
end
|