X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fpin_spec.rb;h=1dd02980afe12a76f511c858fad50a295d2c9e81;hb=refs%2Fheads%2Ftrusted-contributors;hp=dbc595c568000caf7a6536356c9395fe17f3f617;hpb=a758247f2632b3204167a8058fbb8903f0438841;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/pin_spec.rb b/spec/defines/pin_spec.rb index dbc595c..1dd0298 100644 --- a/spec/defines/pin_spec.rb +++ b/spec/defines/pin_spec.rb @@ -1,40 +1,158 @@ +# frozen_string_literal: true + require 'spec_helper' -describe 'apt::pin', :type => :define do +describe 'apt::pin', type: :define do + let :pre_condition do + 'class { "apt": }' + end + let(:facts) do + { + os: { + family: 'Debian', + name: 'Debian', + release: { + major: '9', + full: '9.0' + }, + distro: { + codename: 'stretch', + id: 'Debian' + } + } + } + end let(:title) { 'my_pin' } - let :default_params do - { - :packages => '*', - :priority => '0' + context 'with defaults' do + it { is_expected.to contain_apt__setting('pref-my_pin').with_content(%r{Explanation: : my_pin\nPackage: \*\nPin: release a=my_pin\nPin-Priority: 0\n}) } + end + + context 'with set version' do + let :params do + { + 'packages' => 'vim', + 'version' => '1' + } + end + + it { is_expected.to contain_apt__setting('pref-my_pin').with_content(%r{Explanation: : my_pin\nPackage: vim\nPin: version 1\nPin-Priority: 0\n}) } + end + + context 'with set origin' do + let :params do + { + 'packages' => 'vim', + 'origin' => 'test' + } + end + + it { is_expected.to contain_apt__setting('pref-my_pin').with_content(%r{Explanation: : my_pin\nPackage: vim\nPin: origin test\nPin-Priority: 0\n}) } + end + + context 'without defaults' do + let :params do + { + 'explanation' => 'foo', + 'order' => 99, + 'release' => '1', + 'codename' => 'bar', + 'release_version' => '2', + 'component' => 'baz', + 'originator' => 'foobar', + 'label' => 'foobaz', + 'priority' => 10 + } + end + + it { is_expected.to contain_apt__setting('pref-my_pin').with_content(%r{Explanation: foo\nPackage: \*\nPin: release a=1, n=bar, v=2, c=baz, o=foobar, l=foobaz\nPin-Priority: 10\n}) } + + it { + expect(subject).to contain_apt__setting('pref-my_pin').with('priority' => 99) } end - [{}, - { - :packages => 'apache', - :priority => '1' + context 'with ensure absent' do + let :params do + { + 'ensure' => 'absent' + } + end + + it { + expect(subject).to contain_apt__setting('pref-my_pin').with('ensure' => 'absent') } - ].each do |param_set| - describe "when #{param_set == {} ? "using default" : "specifying"} define parameters" do - let :param_hash do - default_params.merge(param_set) + end + + context 'with bad characters' do + let(:title) { 'such bad && wow!' } + + it { is_expected.to contain_apt__setting('pref-such__bad____wow_') } + end + + describe 'validation' do + context 'with invalid order' do + let :params do + { + 'order' => 'foo' + } + end + + it do + expect(subject).to raise_error(Puppet::Error, %r{expects an Integer value, got String}) end + end + context 'with packages == * and version' do let :params do - param_set + { + 'version' => '1' + } end - it { should include_class("apt::params") } + it do + expect(subject).to raise_error(Puppet::Error, %r{parameter version cannot be used in general form}) + end + end - it { should contain_file("#{title}.pref").with({ - 'ensure' => 'file', - 'path' => "/etc/apt/preferences.d/#{title}", - 'owner' => 'root', - 'group' => 'root', - 'mode' => '0644', - 'content' => "# #{title}\nPackage: #{param_hash[:packages]}\nPin: release a=#{title}\nPin-Priority: #{param_hash[:priority]}", - }) - } + context 'with packages == * and release and origin' do + let :params do + { + 'origin' => 'test', + 'release' => 'foo' + } + end + + it do + expect(subject).to raise_error(Puppet::Error, %r{parameters release and origin are mutually exclusive}) + end + end + + context 'with specific release and origin' do + let :params do + { + 'release' => 'foo', + 'origin' => 'test', + 'packages' => 'vim' + } + end + + it do + expect(subject).to raise_error(Puppet::Error, %r{parameters release, origin, and version are mutually exclusive}) + end + end + + context 'with specific version and origin' do + let :params do + { + 'version' => '1', + 'origin' => 'test', + 'packages' => 'vim' + } + end + + it do + expect(subject).to raise_error(Puppet::Error, %r{parameters release, origin, and version are mutually exclusive}) + end end end end