X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fkey_compat_spec.rb;h=47b03d4fe50533ea25fe4c9acfb59f98520c0def;hb=7f6cc25682a168d96b872434fc12c1e256618570;hp=0a450ecf0140095151b7c83504e8c9cac26542e7;hpb=4ea96b8d7ec3dd0d6acabb1d7718f96b8def614c;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/key_compat_spec.rb b/spec/defines/key_compat_spec.rb index 0a450ec..47b03d4 100644 --- a/spec/defines/key_compat_spec.rb +++ b/spec/defines/key_compat_spec.rb @@ -23,10 +23,9 @@ describe 'apt::key', type: :define do let(:facts) do { - os: { family: 'Debian', name: 'Debian', release: { major: '7', full: '7.0' } }, + os: { family: 'Debian', name: 'Debian', release: { major: '8', full: '8.0' } }, lsbdistid: 'Debian', osfamily: 'Debian', - puppetversion: Puppet.version, } end @@ -112,7 +111,7 @@ describe 'apt::key', type: :define do end end - context 'domain with dash' do + context 'when domain has dash' do let(:params) do { server: 'p-gp.m-it.edu', @@ -125,7 +124,7 @@ describe 'apt::key', type: :define do end end - context 'url' do + context 'with url' do let :params do { server: 'hkp://pgp.mit.edu', @@ -137,7 +136,7 @@ describe 'apt::key', type: :define do server: 'hkp://pgp.mit.edu') end end - context 'url with port number' do + context 'with url and port number' do let :params do { server: 'hkp://pgp.mit.edu:80', @@ -152,7 +151,7 @@ describe 'apt::key', type: :define do end describe 'validation' do - context 'domain begin with dash' do + context 'when domain begins with a dash' do let(:params) do { server: '-pgp.mit.edu', @@ -164,7 +163,7 @@ describe 'apt::key', type: :define do end end - context 'domain begin with dot' do + context 'when domain begins with dot' do let(:params) do { server: '.pgp.mit.edu', @@ -176,7 +175,7 @@ describe 'apt::key', type: :define do end end - context 'domain end with dot' do + context 'when domain ends with dot' do let(:params) do { server: 'pgp.mit.edu.', @@ -187,7 +186,7 @@ describe 'apt::key', type: :define do is_expected .to raise_error(%r{expects a match}) end end - context 'exceed character url' do + context 'when url character limit is exceeded' do let :params do { server: 'hkp://pgpiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii.mit.edu', @@ -198,7 +197,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'incorrect port number url' do + context 'with incorrect port number url' do let :params do { server: 'hkp://pgp.mit.edu:8008080', @@ -209,7 +208,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'incorrect protocol for url' do + context 'with incorrect protocol for url' do let :params do { server: 'abc://pgp.mit.edu:80', @@ -220,7 +219,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'missing port number url' do + context 'with missing port number url' do let :params do { server: 'hkp://pgp.mit.edu:', @@ -231,7 +230,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'url ending with a dot' do + context 'with url ending with a dot' do let :params do { server: 'hkp://pgp.mit.edu.', @@ -242,7 +241,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'url begin with a dash' do + context 'with url begin with a dash' do let(:params) do { server: 'hkp://-pgp.mit.edu', @@ -253,7 +252,7 @@ describe 'apt::key', type: :define do is_expected.to raise_error(%r{expects a match}) end end - context 'invalid key' do + context 'with invalid key' do let :title do 'Out of rum. Why? Why are we out of rum?' end @@ -263,7 +262,7 @@ describe 'apt::key', type: :define do end end - context 'invalid source' do + context 'with invalid source' do let :params do { source: 'afp://puppetlabs.com/key.gpg', @@ -271,11 +270,11 @@ describe 'apt::key', type: :define do end it 'fails' do - is_expected.to raise_error(%r{expects a match}) + is_expected.to raise_error(%r{evaluating a Resource}) end end - context 'invalid content' do + context 'with invalid content' do let :params do { content: [], @@ -287,7 +286,7 @@ describe 'apt::key', type: :define do end end - context 'invalid server' do + context 'with invalid server' do let :params do { server: 'two bottles of rum', @@ -299,7 +298,7 @@ describe 'apt::key', type: :define do end end - context 'invalid keyserver_options' do + context 'with invalid keyserver_options' do let :params do { options: {}, @@ -311,7 +310,7 @@ describe 'apt::key', type: :define do end end - context 'invalid ensure' do + context 'with invalid ensure' do let :params do { ensure: 'foo', @@ -319,7 +318,7 @@ describe 'apt::key', type: :define do end it 'fails' do - is_expected.to raise_error(%r{Enum\['absent', 'present'\]}) + is_expected.to raise_error(%r{Enum\['absent', 'present', 'refreshed'\]}) end end