From: Craig Gumbley Date: Fri, 12 Aug 2022 09:41:23 +0000 (+0000) Subject: Add spec tests for apt-mark X-Git-Tag: v9.0.0~3^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=79bec3d3efdb897038cbab0b4a24572b94be507f;p=puppet-modules%2Fpuppetlabs-apt.git Add spec tests for apt-mark This commit adds additional spec tests for mark.pp. The tests validate the new resource name requirements introduced in the previous commit. --- diff --git a/spec/defines/mark_spec.rb b/spec/defines/mark_spec.rb index b451bed..6c673c4 100644 --- a/spec/defines/mark_spec.rb +++ b/spec/defines/mark_spec.rb @@ -32,7 +32,7 @@ describe 'apt::mark', type: :define do end it { - is_expected.to contain_exec('/usr/bin/apt-mark manual my_source') + is_expected.to contain_exec('apt-mark manual my_source') } end @@ -47,4 +47,50 @@ describe 'apt::mark', type: :define do is_expected.to raise_error(Puppet::PreformattedError, %r{expects a match for Enum\['auto', 'hold', 'manual', 'unhold'\], got 'foobar'}) end end + + [ + 'package', + 'package1', + 'package_name', + 'package-name', + ].each do |value| + describe 'with a valid resource title' do + let :title do + value + end + + let :params do + { + 'setting' => 'manual', + } + end + + it do + is_expected.to contain_exec("apt-mark manual #{title}") + end + end + end + + [ + '|| ls -la ||', + 'packakge with space', + 'package<>|', + '|| touch /tmp/foo.txt ||', + ].each do |value| + describe 'with an invalid resource title' do + let :title do + value + end + + let :params do + { + 'setting' => 'manual', + } + end + + it do + is_expected.to raise_error(Puppet::PreformattedError, %r{Invalid package name: #{title}}) + end + end + end end