X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fconf_spec.rb;h=26638e338a505d5ff15bd83cb77b4d569348f077;hb=refs%2Fheads%2Frelease-prep;hp=2c1752f074cb301741edc771a4ba3420bae950b0;hpb=83ae566b084c88e2778ea0220c89a2ec07b7ba4e;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/conf_spec.rb b/spec/defines/conf_spec.rb index 2c1752f..26638e3 100644 --- a/spec/defines/conf_spec.rb +++ b/spec/defines/conf_spec.rb @@ -1,52 +1,97 @@ +# frozen_string_literal: true + require 'spec_helper' -describe 'apt::conf', :type => :define do - let(:facts) { { :lsbdistid => 'Debian' } } +describe 'apt::conf', 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 do 'norecommends' end - describe "when creating an apt preference" do - let :params do + describe 'when creating an apt preference' do + let :default_params do { - :priority => '00', - :content => "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n" + priority: '00', + content: "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n" } end + let :params do + default_params + end let :filename do - "/etc/apt/apt.conf.d/00norecommends" + '/etc/apt/apt.conf.d/00norecommends' + end + + it { + expect(subject).to contain_file(filename).with('ensure' => 'present', + 'content' => %r{Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;}, + 'owner' => 'root', + 'group' => 'root') + } + + context 'with notify_update = true (default)' do + let :params do + default_params + end + + it { is_expected.to contain_apt__setting("conf-#{title}").with_notify_update(true) } + end + + context 'with notify_update = false' do + let :params do + default_params.merge(notify_update: false) + end + + it { is_expected.to contain_apt__setting("conf-#{title}").with_notify_update(false) } end + end - it { should contain_file(filename).with({ - 'ensure' => 'present', - 'content' => /Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;/, - 'owner' => 'root', - 'group' => 'root', - 'mode' => '0644', - }) + describe 'when creating a preference without content' do + let :params do + { + priority: '00' } + end + + it 'fails' do + expect(subject).to raise_error(%r{pass in content}) + end end - describe "when removing an apt preference" do + describe 'when removing an apt preference' do let :params do { - :ensure => 'absent', - :priority => '00', - :content => "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n" + ensure: 'absent', + priority: '00' } end let :filename do - "/etc/apt/apt.conf.d/00norecommends" + '/etc/apt/apt.conf.d/00norecommends' end - it { should contain_file(filename).with({ - 'ensure' => 'absent', - 'content' => /Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;/, - 'owner' => 'root', - 'group' => 'root', - 'mode' => '0644', - }) + it { + expect(subject).to contain_file(filename).with('ensure' => 'absent', + 'owner' => 'root', + 'group' => 'root') } end end