2012-02-24 19:10:03 +01:00
|
|
|
require 'spec_helper'
|
2014-02-20 16:18:37 +01:00
|
|
|
|
2012-02-24 19:10:03 +01:00
|
|
|
describe 'apt::key', :type => :define do
|
2015-02-15 18:39:17 +01:00
|
|
|
let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } }
|
2014-09-04 04:00:57 +02:00
|
|
|
GPG_KEY_ID = '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30'
|
2014-02-20 16:18:37 +01:00
|
|
|
|
2012-02-24 19:10:03 +01:00
|
|
|
let :title do
|
2014-02-20 16:18:37 +01:00
|
|
|
GPG_KEY_ID
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
describe 'normal operation' do
|
|
|
|
describe 'default options' do
|
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => title,
|
|
|
|
:ensure => 'present',
|
|
|
|
:source => nil,
|
|
|
|
:server => nil,
|
|
|
|
:content => nil,
|
|
|
|
:keyserver_options => nil,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
it 'contains the apt_key present anchor' do
|
|
|
|
should contain_anchor("apt_key #{title} present")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'title and key =>' do
|
|
|
|
let :title do
|
|
|
|
'puppetlabs'
|
|
|
|
end
|
|
|
|
|
|
|
|
let :params do {
|
|
|
|
:key => GPG_KEY_ID,
|
|
|
|
} end
|
|
|
|
|
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => GPG_KEY_ID,
|
|
|
|
:ensure => 'present',
|
|
|
|
:source => nil,
|
|
|
|
:server => nil,
|
|
|
|
:content => nil,
|
|
|
|
:keyserver_options => nil,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
it 'contains the apt_key present anchor' do
|
|
|
|
should contain_anchor("apt_key #{GPG_KEY_ID} present")
|
|
|
|
end
|
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
describe 'ensure => absent' do
|
|
|
|
let :params do {
|
|
|
|
:ensure => 'absent',
|
|
|
|
} end
|
|
|
|
|
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => title,
|
|
|
|
:ensure => 'absent',
|
|
|
|
:source => nil,
|
|
|
|
:server => nil,
|
|
|
|
:content => nil,
|
|
|
|
:keyserver_options => nil,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
it 'contains the apt_key absent anchor' do
|
|
|
|
should contain_anchor("apt_key #{title} absent")
|
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'set a bunch of things!' do
|
2014-02-20 16:18:37 +01:00
|
|
|
let :params do {
|
|
|
|
:key_content => 'GPG key content',
|
2014-08-01 00:11:57 +02:00
|
|
|
:key_source => 'http://apt.puppetlabs.com/pubkey.gpg',
|
|
|
|
:key_server => 'pgp.mit.edu',
|
|
|
|
:key_options => 'debug',
|
2014-02-20 16:18:37 +01:00
|
|
|
} end
|
|
|
|
|
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => title,
|
|
|
|
:ensure => 'present',
|
2014-08-01 00:11:57 +02:00
|
|
|
:source => 'http://apt.puppetlabs.com/pubkey.gpg',
|
|
|
|
:server => 'pgp.mit.edu',
|
2014-02-20 16:18:37 +01:00
|
|
|
:content => params[:key_content],
|
2014-08-01 00:11:57 +02:00
|
|
|
:keyserver_options => 'debug',
|
2014-02-20 16:18:37 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
it 'contains the apt_key present anchor' do
|
|
|
|
should contain_anchor("apt_key #{title} present")
|
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
context "domain with dash" do
|
|
|
|
let(:params) do{
|
|
|
|
:key_server => 'p-gp.m-it.edu',
|
2014-02-20 16:18:37 +01:00
|
|
|
} end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => title,
|
|
|
|
:server => 'p-gp.m-it.edu',
|
2014-02-20 16:18:37 +01:00
|
|
|
})
|
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
context "url" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:key_server => 'hkp://pgp.mit.edu',
|
|
|
|
}
|
|
|
|
end
|
2014-02-20 16:18:37 +01:00
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
2014-08-01 00:11:57 +02:00
|
|
|
:id => title,
|
|
|
|
:server => 'hkp://pgp.mit.edu',
|
2014-02-20 16:18:37 +01:00
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
context "url with port number" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:key_server => 'hkp://pgp.mit.edu:80',
|
|
|
|
}
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'contains the apt_key' do
|
|
|
|
should contain_apt_key(title).with({
|
|
|
|
:id => title,
|
|
|
|
:server => 'hkp://pgp.mit.edu:80',
|
|
|
|
})
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
end
|
2014-06-10 01:09:28 +02:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'validation' do
|
|
|
|
context "domain begin with dash" do
|
|
|
|
let(:params) do{
|
|
|
|
:key_server => '-pgp.mit.edu',
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject } .to raise_error(/does not match/)
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
2014-06-10 01:09:28 +02:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
context "domain begin with dot" do
|
|
|
|
let(:params) do{
|
|
|
|
:key_server => '.pgp.mit.edu',
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject } .to raise_error(/does not match/)
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
2014-06-10 01:09:28 +02:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
context "domain end with dot" do
|
|
|
|
let(:params) do{
|
|
|
|
:key_server => "pgp.mit.edu.",
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject } .to raise_error(/does not match/)
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
context "exceed character url" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:key_server => 'hkp://pgpiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii.mit.edu'
|
|
|
|
}
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
context "incorrect port number url" do
|
|
|
|
let :params do
|
|
|
|
{
|
2014-05-29 02:01:37 +02:00
|
|
|
:key_server => 'hkp://pgp.mit.edu:8008080'
|
2014-08-01 00:11:57 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
context "incorrect protocol for url" do
|
|
|
|
let :params do
|
|
|
|
{
|
2014-05-29 02:01:37 +02:00
|
|
|
:key_server => 'abc://pgp.mit.edu:80'
|
2014-08-01 00:11:57 +02:00
|
|
|
}
|
2014-05-29 02:01:37 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-05-29 02:01:37 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
context "missing port number url" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:key_server => 'hkp://pgp.mit.edu:'
|
|
|
|
}
|
2014-05-29 02:01:37 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
context "url ending with a dot" do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:key_server => 'hkp://pgp.mit.edu.'
|
|
|
|
}
|
2014-06-10 01:09:28 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-05-29 02:01:37 +02:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
context "url begin with a dash" do
|
|
|
|
let(:params) do{
|
|
|
|
:key_server => "hkp://-pgp.mit.edu",
|
2014-02-20 16:18:37 +01:00
|
|
|
} end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
2014-02-20 16:18:37 +01:00
|
|
|
context 'invalid key' do
|
|
|
|
let :title do
|
|
|
|
'Out of rum. Why? Why are we out of rum?'
|
|
|
|
end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
|
|
|
end
|
|
|
|
end
|
2012-03-07 22:49:12 +01:00
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
context 'invalid source' do
|
|
|
|
let :params do {
|
|
|
|
:key_source => 'afp://puppetlabs.com/key.gpg',
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
context 'invalid content' do
|
|
|
|
let :params do {
|
|
|
|
:key_content => [],
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/is not a string/)
|
|
|
|
end
|
|
|
|
end
|
2012-03-07 22:49:12 +01:00
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
context 'invalid server' do
|
|
|
|
let :params do {
|
|
|
|
:key_server => 'two bottles of rum',
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
2014-05-29 02:01:37 +02:00
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
|
2014-02-20 16:18:37 +01:00
|
|
|
context 'invalid keyserver_options' do
|
|
|
|
let :params do {
|
|
|
|
:key_options => {},
|
|
|
|
} end
|
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/is not a string/)
|
|
|
|
end
|
2012-02-24 19:10:03 +01:00
|
|
|
end
|
2012-03-07 22:49:12 +01:00
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
context 'invalid ensure' do
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:ensure => 'foo',
|
|
|
|
}
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
it 'fails' do
|
|
|
|
expect { subject }.to raise_error(/does not match/)
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-01 00:11:57 +02:00
|
|
|
describe 'duplication' do
|
|
|
|
context 'two apt::key resources for same key, different titles' do
|
|
|
|
let :pre_condition do
|
2015-02-12 01:38:32 +01:00
|
|
|
"apt::key { 'duplicate': key => '#{title}', }"
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains two apt::key resources' do
|
|
|
|
should contain_apt__key('duplicate').with({
|
|
|
|
:key => title,
|
|
|
|
:ensure => 'present',
|
|
|
|
})
|
|
|
|
should contain_apt__key(title).with({
|
|
|
|
:key => title,
|
|
|
|
:ensure => 'present',
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'contains only a single apt_key' do
|
|
|
|
should contain_apt_key('duplicate').with({
|
|
|
|
:id => title,
|
|
|
|
:ensure => 'present',
|
|
|
|
:source => nil,
|
|
|
|
:server => nil,
|
|
|
|
:content => nil,
|
|
|
|
:keyserver_options => nil,
|
|
|
|
})
|
|
|
|
should_not contain_apt_key(title)
|
|
|
|
end
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
2014-08-01 00:11:57 +02:00
|
|
|
|
|
|
|
context 'two apt::key resources, different ensure' do
|
|
|
|
let :pre_condition do
|
2015-02-12 01:38:32 +01:00
|
|
|
"apt::key { 'duplicate': key => '#{title}', ensure => 'absent', }"
|
2014-08-01 00:11:57 +02:00
|
|
|
end
|
|
|
|
it 'informs the user of the impossibility' do
|
|
|
|
expect { subject }.to raise_error(/already ensured as absent/)
|
|
|
|
end
|
2014-02-20 16:18:37 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|