2012-03-30 01:09:50 -07:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'nova::api' do
|
|
|
|
|
|
|
|
let :pre_condition do
|
|
|
|
'include nova'
|
|
|
|
end
|
|
|
|
|
2012-10-14 14:26:25 -07:00
|
|
|
let :params do
|
|
|
|
{:admin_password => 'passw0rd'}
|
|
|
|
end
|
|
|
|
|
2012-03-30 01:09:50 -07:00
|
|
|
describe 'on debian platforms' do
|
|
|
|
let :facts do
|
|
|
|
{ :osfamily => 'Debian' }
|
|
|
|
end
|
|
|
|
it { should contain_service('nova-api').with(
|
|
|
|
'name' => 'nova-api',
|
|
|
|
'ensure' => 'stopped',
|
|
|
|
'enable' => false
|
|
|
|
)}
|
|
|
|
it { should contain_package('nova-api').with(
|
|
|
|
'name' => 'nova-api',
|
|
|
|
'ensure' => 'present',
|
2012-10-14 01:52:16 -07:00
|
|
|
'notify' => 'Service[nova-api]'
|
2012-03-30 01:09:50 -07:00
|
|
|
) }
|
|
|
|
describe 'with enabled as true' do
|
|
|
|
let :params do
|
2012-10-14 14:26:25 -07:00
|
|
|
{:admin_password => 'passw0rd', :enabled => true}
|
2012-03-30 01:09:50 -07:00
|
|
|
end
|
|
|
|
it { should contain_service('nova-api').with(
|
|
|
|
'name' => 'nova-api',
|
|
|
|
'ensure' => 'running',
|
|
|
|
'enable' => true
|
|
|
|
)}
|
|
|
|
end
|
2012-05-08 13:32:36 -05:00
|
|
|
describe 'with package version' do
|
|
|
|
let :params do
|
2012-10-14 14:26:25 -07:00
|
|
|
{:admin_password => 'passw0rd', :ensure_package => '2012.1-2'}
|
2012-05-08 13:32:36 -05:00
|
|
|
end
|
|
|
|
it { should contain_package('nova-api').with(
|
|
|
|
'ensure' => '2012.1-2'
|
|
|
|
)}
|
|
|
|
end
|
2012-04-23 19:14:58 -07:00
|
|
|
describe 'with defaults' do
|
|
|
|
it 'should use default params for api-paste.init' do
|
2012-10-14 01:52:16 -07:00
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_host').with_value('127.0.0.1')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_port').with_value('35357')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_protocol').with_value('http')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_tenant_name').with_value('services')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_user').with_value('nova')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_password').with_value('passw0rd')
|
2012-04-23 19:14:58 -07:00
|
|
|
end
|
2012-08-22 16:50:33 -07:00
|
|
|
it { should contain_nova_config('ec2_listen').with('value' => '0.0.0.0') }
|
|
|
|
it { should contain_nova_config('osapi_compute_listen').with('value' => '0.0.0.0') }
|
|
|
|
it { should contain_nova_config('metadata_listen').with('value' => '0.0.0.0') }
|
|
|
|
it { should contain_nova_config('osapi_volume_listen').with('value' => '0.0.0.0') }
|
2012-04-23 19:14:58 -07:00
|
|
|
end
|
|
|
|
describe 'with params' do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:auth_strategy => 'foo',
|
|
|
|
:auth_host => '10.0.0.1',
|
|
|
|
:auth_port => 1234,
|
|
|
|
:auth_protocol => 'https',
|
|
|
|
:admin_tenant_name => 'service2',
|
|
|
|
:admin_user => 'nova2',
|
2012-08-22 16:50:33 -07:00
|
|
|
:admin_password => 'passw0rd2',
|
|
|
|
:api_bind_address => '192.168.56.210',
|
2012-11-16 04:54:53 -08:00
|
|
|
:volume_api_class => 'nova.volume.cinder.API'
|
2012-04-23 19:14:58 -07:00
|
|
|
}
|
|
|
|
end
|
|
|
|
it 'should use default params for api-paste.init' do
|
2012-10-14 01:52:16 -07:00
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_host').with_value('10.0.0.1')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_port').with_value('1234')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/auth_protocol').with_value('https')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_tenant_name').with_value('service2')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_user').with_value('nova2')
|
|
|
|
should contain_nova_paste_api_ini(
|
|
|
|
'filter:authtoken/admin_password').with_value('passw0rd2')
|
2012-04-23 19:14:58 -07:00
|
|
|
end
|
2012-08-22 16:50:33 -07:00
|
|
|
it { should contain_nova_config('ec2_listen').with('value' => '192.168.56.210') }
|
|
|
|
it { should contain_nova_config('osapi_compute_listen').with('value' => '192.168.56.210') }
|
|
|
|
it { should contain_nova_config('metadata_listen').with('value' => '192.168.56.210') }
|
|
|
|
it { should contain_nova_config('osapi_volume_listen').with('value' => '192.168.56.210') }
|
2012-04-23 19:14:58 -07:00
|
|
|
end
|
2012-03-30 01:09:50 -07:00
|
|
|
end
|
|
|
|
describe 'on rhel' do
|
|
|
|
let :facts do
|
|
|
|
{ :osfamily => 'RedHat' }
|
|
|
|
end
|
|
|
|
it { should contain_service('nova-api').with(
|
|
|
|
'name' => 'openstack-nova-api',
|
|
|
|
'ensure' => 'stopped',
|
|
|
|
'enable' => false
|
|
|
|
)}
|
2012-11-02 11:12:39 -07:00
|
|
|
it { should contain_package('nova-api').with_name('openstack-nova-api') }
|
2012-03-30 01:09:50 -07:00
|
|
|
end
|
|
|
|
end
|