
This change switches the logic that handles which type of debian or ubuntu packages based on the operatingsystem fact to leverage the os_package_type fact so that we can leverage Debian packages on an Ubuntu based system Change-Id: I6d62804699978289c7e2293dba6d24b5b8b1b002 Depends-On: I0a009c0a60062d40c558c1f8de95386ce253f930
107 lines
2.9 KiB
Ruby
107 lines
2.9 KiB
Ruby
require 'spec_helper'
|
|
# LP1492636 - Cohabitation of compile matcher and webmock
|
|
WebMock.disable_net_connect!(:allow => "169.254.169.254")
|
|
|
|
describe 'nova::vncproxy' do
|
|
|
|
let :pre_condition do
|
|
'include nova'
|
|
end
|
|
|
|
context 'with default parameters' do
|
|
|
|
describe 'on debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
it { is_expected.to contain_package('python-numpy').with(
|
|
:ensure => 'present',
|
|
:name => 'python-numpy'
|
|
)}
|
|
|
|
it { is_expected.to contain_nova_config('DEFAULT/novncproxy_host').with(:value => '0.0.0.0') }
|
|
it { is_expected.to contain_nova_config('DEFAULT/novncproxy_port').with(:value => '6080') }
|
|
it { is_expected.to contain_nova_config('DEFAULT/novncproxy_base_url').with(:value => 'http://0.0.0.0:6080/vnc_auto.html') }
|
|
|
|
it { is_expected.to contain_package('nova-vncproxy').with(
|
|
:name => 'nova-novncproxy',
|
|
:ensure => 'present'
|
|
) }
|
|
it { is_expected.to contain_service('nova-vncproxy').with(
|
|
:name => 'nova-novncproxy',
|
|
:hasstatus => true,
|
|
:ensure => 'running'
|
|
)}
|
|
|
|
describe 'with manage_service as false' do
|
|
let :params do
|
|
{ :enabled => true,
|
|
:manage_service => false
|
|
}
|
|
end
|
|
it { is_expected.to contain_service('nova-vncproxy').without_ensure }
|
|
end
|
|
|
|
describe 'with package version' do
|
|
let :params do
|
|
{:ensure_package => '2012.1-2'}
|
|
end
|
|
it { is_expected.to contain_package('nova-vncproxy').with(
|
|
'ensure' => '2012.1-2'
|
|
)}
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'on debian OS' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:os_package_type => 'debian' }
|
|
end
|
|
it { is_expected.to contain_package('nova-vncproxy').with(
|
|
:name => "nova-consoleproxy",
|
|
:ensure => 'present'
|
|
)}
|
|
it { is_expected.to contain_service('nova-vncproxy').with(
|
|
:name => 'nova-novncproxy',
|
|
:hasstatus => true,
|
|
:ensure => 'running'
|
|
)}
|
|
end
|
|
|
|
describe 'on Ubuntu OS with Debian packages' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian',
|
|
:operatingsystem => 'Ubuntu',
|
|
:os_package_type => 'debian' }
|
|
end
|
|
it { is_expected.to contain_package('nova-vncproxy').with(
|
|
:name => "nova-consoleproxy",
|
|
:ensure => 'present'
|
|
)}
|
|
it { is_expected.to contain_service('nova-vncproxy').with(
|
|
:name => 'nova-novncproxy',
|
|
:hasstatus => true,
|
|
:ensure => 'running'
|
|
)}
|
|
end
|
|
|
|
describe 'on Redhatish platforms' do
|
|
|
|
let :facts do
|
|
{ :osfamily => 'Redhat' }
|
|
end
|
|
|
|
it { is_expected.to contain_package('python-numpy').with(
|
|
:name => 'numpy',
|
|
:ensure => 'present'
|
|
)}
|
|
|
|
it { is_expected.to compile.with_all_deps }
|
|
|
|
end
|
|
|
|
end
|