Mercurial > repos > other > Puppet
view modules/concat/spec/acceptance/warn_header_spec.rb @ 454:d0e7979c7e8c
Update PHP configs for Ubuntu
Mostly fixing some INI naming so that it is consistent
between packages and what we write (so we don't end up with
mixed/duplicate content)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 13 Aug 2023 15:26:37 +0100 |
parents | d9352a684e62 |
children |
line wrap: on
line source
require 'spec_helper_acceptance' describe 'concat warn_header =>' do before(:all) do @basedir = setup_test_directory end describe 'applies the manifest twice with no stderr' do let(:pp) do <<-MANIFEST concat { '#{@basedir}/file': warn => true, } concat::fragment { '1': target => '#{@basedir}/file', content => '1', order => '01', } concat::fragment { '2': target => '#{@basedir}/file', content => '2', order => '02', } concat { '#{@basedir}/file2': warn => false, } concat::fragment { 'file2_1': target => '#{@basedir}/file2', content => '1', order => '01', } concat::fragment { 'file2_2': target => '#{@basedir}/file2', content => '2', order => '02', } concat { '#{@basedir}/file3': warn => "# foo\n", } concat::fragment { 'file3_1': target => '#{@basedir}/file3', content => '1', order => '01', } concat::fragment { 'file3_2': target => '#{@basedir}/file3', content => '2', order => '02', } MANIFEST end it 'when true should enable default warning message' do idempotent_apply(pp) expect(file("#{@basedir}/file")).to be_file expect(file("#{@basedir}/file").content).to match %r{# This file is managed by Puppet\. DO NOT EDIT\.} expect(file("#{@basedir}/file").content).to match %r{1} expect(file("#{@basedir}/file").content).to match %r{2} end it 'when false should not enable default warning message' do expect(file("#{@basedir}/file2")).to be_file expect(file("#{@basedir}/file2").content).not_to match %r{# This file is managed by Puppet\. DO NOT EDIT\.} expect(file("#{@basedir}/file2").content).to match %r{1} expect(file("#{@basedir}/file2").content).to match %r{2} end it 'when foo should overide default warning message' do expect(file("#{@basedir}/file3")).to be_file expect(file("#{@basedir}/file3").content).to match %r{# foo} expect(file("#{@basedir}/file3").content).to match %r{1} expect(file("#{@basedir}/file3").content).to match %r{2} end end end