2012-01-04 02:03:24 +01:00
|
|
|
require 'spec_helper'
|
2015-02-27 12:07:56 +01:00
|
|
|
describe 'apt::ppa' do
|
2015-03-02 22:40:06 +01:00
|
|
|
let :pre_condition do
|
|
|
|
'class { "apt": }'
|
|
|
|
end
|
2012-04-02 09:00:59 +02:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'defaults' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '11.04',
|
|
|
|
:lsbdistcodename => 'natty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
}
|
|
|
|
end
|
2012-02-24 23:03:51 +01:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
let(:title) { 'ppa:needs/such.substitution/wow' }
|
2015-02-20 23:25:53 +01:00
|
|
|
it { is_expected.to_not contain_package('python-software-properties') }
|
2014-08-01 00:11:57 +02:00
|
|
|
it { is_expected.to contain_exec('add-apt-repository-ppa:needs/such.substitution/wow').that_notifies('Exec[apt_update]').with({
|
2015-02-27 12:07:56 +01:00
|
|
|
:environment => [],
|
|
|
|
:command => '/usr/bin/add-apt-repository -y ppa:needs/such.substitution/wow',
|
|
|
|
:unless => '/usr/bin/test -s /etc/apt/sources.list.d/needs-such_substitution-wow-natty.list',
|
|
|
|
:user => 'root',
|
|
|
|
:logoutput => 'on_failure',
|
2014-08-01 00:11:57 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
2013-07-16 09:52:06 +02:00
|
|
|
|
2015-03-23 18:55:13 +01:00
|
|
|
describe 'ppa depending on ppa, MODULES-1156' do
|
2014-08-01 00:11:57 +02:00
|
|
|
let :pre_condition do
|
|
|
|
'class { "apt": }'
|
|
|
|
end
|
2015-03-23 18:55:13 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'apt included, no proxy' do
|
|
|
|
let :pre_condition do
|
|
|
|
'class { "apt": }
|
|
|
|
apt::ppa { "ppa:foo2": }
|
|
|
|
'
|
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:lsbdistcodename => 'trusty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let :params do
|
|
|
|
{
|
2015-03-23 18:55:13 +01:00
|
|
|
:options => '',
|
2015-02-27 12:07:56 +01:00
|
|
|
:package_manage => true,
|
2015-03-23 18:55:13 +01:00
|
|
|
:require => 'Apt::Ppa[ppa:foo2]',
|
2014-08-01 00:11:57 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
2015-03-23 18:55:13 +01:00
|
|
|
it { is_expected.to compile.with_all_deps }
|
2014-08-01 00:11:57 +02:00
|
|
|
it { is_expected.to contain_package('software-properties-common') }
|
|
|
|
it { is_expected.to contain_exec('add-apt-repository-ppa:foo').that_notifies('Exec[apt_update]').with({
|
2015-02-27 12:07:56 +01:00
|
|
|
:environment => [],
|
|
|
|
:command => '/usr/bin/add-apt-repository ppa:foo',
|
|
|
|
:unless => '/usr/bin/test -s /etc/apt/sources.list.d/foo-trusty.list',
|
|
|
|
:user => 'root',
|
|
|
|
:logoutput => 'on_failure',
|
2014-08-01 00:11:57 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
2013-07-12 00:49:00 +02:00
|
|
|
|
2015-02-25 02:03:50 +01:00
|
|
|
describe 'apt included, proxy host' do
|
|
|
|
let :pre_condition do
|
2015-02-27 12:34:05 +01:00
|
|
|
'class { "apt":
|
|
|
|
proxy => { "host" => "localhost" },
|
|
|
|
}'
|
2015-02-25 02:03:50 +01:00
|
|
|
end
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:lsbdistcodename => 'trusty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
'options' => '',
|
|
|
|
'package_manage' => true,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
it { is_expected.to contain_package('software-properties-common') }
|
|
|
|
it { is_expected.to contain_exec('add-apt-repository-ppa:foo').that_notifies('Exec[apt_update]').with({
|
2015-02-27 12:34:05 +01:00
|
|
|
:environment => ['http_proxy=http://localhost:8080'],
|
2015-02-27 12:07:56 +01:00
|
|
|
:command => '/usr/bin/add-apt-repository ppa:foo',
|
|
|
|
:unless => '/usr/bin/test -s /etc/apt/sources.list.d/foo-trusty.list',
|
|
|
|
:user => 'root',
|
|
|
|
:logoutput => 'on_failure',
|
2015-02-25 02:03:50 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'apt included, proxy host and port' do
|
|
|
|
let :pre_condition do
|
2015-02-27 12:34:05 +01:00
|
|
|
'class { "apt":
|
|
|
|
proxy => { "host" => "localhost", "port" => 8180 },
|
|
|
|
}'
|
|
|
|
end
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:lsbdistcodename => 'trusty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:options => '',
|
|
|
|
:package_manage => true,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
it { is_expected.to contain_package('software-properties-common') }
|
|
|
|
it { is_expected.to contain_exec('add-apt-repository-ppa:foo').that_notifies('Exec[apt_update]').with({
|
|
|
|
:environment => ['http_proxy=http://localhost:8180'],
|
|
|
|
:command => '/usr/bin/add-apt-repository ppa:foo',
|
|
|
|
:unless => '/usr/bin/test -s /etc/apt/sources.list.d/foo-trusty.list',
|
|
|
|
:user => 'root',
|
|
|
|
:logoutput => 'on_failure',
|
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'apt included, proxy host and port and https' do
|
|
|
|
let :pre_condition do
|
|
|
|
'class { "apt":
|
|
|
|
proxy => { "host" => "localhost", "port" => 8180, "https" => true },
|
|
|
|
}'
|
2015-02-25 02:03:50 +01:00
|
|
|
end
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:lsbdistcodename => 'trusty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let :params do
|
|
|
|
{
|
2015-02-27 12:07:56 +01:00
|
|
|
:options => '',
|
|
|
|
:package_manage => true,
|
2015-02-25 02:03:50 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
it { is_expected.to contain_package('software-properties-common') }
|
|
|
|
it { is_expected.to contain_exec('add-apt-repository-ppa:foo').that_notifies('Exec[apt_update]').with({
|
2015-02-27 12:34:05 +01:00
|
|
|
:environment => ['http_proxy=http://localhost:8180', 'https_proxy=https://localhost:8180'],
|
2015-02-27 12:07:56 +01:00
|
|
|
:command => '/usr/bin/add-apt-repository ppa:foo',
|
|
|
|
:unless => '/usr/bin/test -s /etc/apt/sources.list.d/foo-trusty.list',
|
|
|
|
:user => 'root',
|
|
|
|
:logoutput => 'on_failure',
|
2015-02-25 02:03:50 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'ensure absent' do
|
2015-02-18 20:43:50 +01:00
|
|
|
let :pre_condition do
|
|
|
|
'class { "apt": }'
|
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:lsbdistcodename => 'trusty',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
let :params do
|
|
|
|
{
|
2015-02-27 12:07:56 +01:00
|
|
|
:ensure => 'absent'
|
2014-08-01 00:11:57 +02:00
|
|
|
}
|
2012-04-02 09:00:59 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it { is_expected.to contain_file('/etc/apt/sources.list.d/foo-trusty.list').that_notifies('Exec[apt_update]').with({
|
2015-02-27 12:07:56 +01:00
|
|
|
:ensure => 'absent',
|
2014-08-01 00:11:57 +02:00
|
|
|
})
|
|
|
|
}
|
2012-04-02 09:00:59 +02:00
|
|
|
end
|
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
context 'validation' do
|
|
|
|
describe 'no release' do
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:lsbdistrelease => '14.04',
|
|
|
|
:operatingsystem => 'Ubuntu',
|
|
|
|
:lsbdistid => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
2015-03-02 22:40:06 +01:00
|
|
|
:lsbdistcodeanme => nil,
|
2014-08-01 00:11:57 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
it do
|
|
|
|
expect {
|
2015-02-24 22:20:29 +01:00
|
|
|
is_expected.to compile
|
2014-08-01 00:11:57 +02:00
|
|
|
}.to raise_error(Puppet::Error, /lsbdistcodename fact not available: release parameter required/)
|
|
|
|
end
|
|
|
|
end
|
2012-02-24 23:03:51 +01:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'not ubuntu' do
|
|
|
|
let :facts do
|
|
|
|
{
|
2015-03-02 22:40:06 +01:00
|
|
|
:lsbdistrelease => '6.0.7',
|
|
|
|
:lsbdistcodename => 'wheezy',
|
2014-08-01 00:11:57 +02:00
|
|
|
:operatingsystem => 'Debian',
|
2015-03-02 22:40:06 +01:00
|
|
|
:lsbdistid => 'debian',
|
2014-08-01 00:11:57 +02:00
|
|
|
:osfamily => 'Debian',
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:title) { 'ppa:foo' }
|
|
|
|
it do
|
|
|
|
expect {
|
2015-02-24 22:20:29 +01:00
|
|
|
is_expected.to compile
|
2015-02-28 17:04:47 +01:00
|
|
|
}.to raise_error(Puppet::Error, /supported on Ubuntu and LinuxMint only/)
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
end
|
2012-02-24 23:03:51 +01:00
|
|
|
end
|
2012-01-04 02:03:24 +01:00
|
|
|
end
|