5
0
Derivar 0

Merge pull request #171 from misterdorm/bug1599

MODULES-1599 Match only on space and tab whitespace after k/v separator
Este cometimento está contido em:
Morgan Haskel 2015-06-22 10:44:02 -07:00
ascendente e132445690 c784253096
cometimento a09bfef1ed
2 ficheiros modificados com 35 adições e 1 eliminações

Ver ficheiro

@ -13,7 +13,7 @@ module Util
@section_suffix = section_suffix
@@SECTION_REGEX = section_regex
@@SETTING_REGEX = /^(\s*)([^#;\s]|[^#;\s].*?[^\s#{k_v_s}])(\s*#{k_v_s}\s*)(.*)\s*$/
@@SETTING_REGEX = /^(\s*)([^#;\s]|[^#;\s].*?[^\s#{k_v_s}])(\s*#{k_v_s}[ \t]*)(.*)\s*$/
@@COMMENTED_SETTING_REGEX = /^(\s*)[#;]+(\s*)(.*?[^\s#{k_v_s}])(\s*#{k_v_s}[ \t]*)(.*)\s*$/
@path = path

Ver ficheiro

@ -72,6 +72,40 @@ describe 'ini_setting resource' do
it_behaves_like 'has_content', "#{tmpdir}/ini_setting.ini", pp, /four = five\n\n\[one\]\ntwo = three/
end
context '=> present for global and section (from previous blank value)' do
before :all do
if fact('osfamily') == 'Darwin'
shell("echo \"four =[one]\ntwo =\" > #{tmpdir}/ini_setting.ini")
else
shell("echo -e \"four =\n[one]\ntwo =\" > #{tmpdir}/ini_setting.ini")
end
end
pp = <<-EOS
ini_setting { 'ensure => present for section':
ensure => present,
path => "#{tmpdir}/ini_setting.ini",
section => 'one',
setting => 'two',
value => 'three',
}
ini_setting { 'ensure => present for global':
ensure => present,
path => "#{tmpdir}/ini_setting.ini",
section => '',
setting => 'four',
value => 'five',
}
EOS
it 'applies the manifest twice' do
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
it_behaves_like 'has_content', "#{tmpdir}/ini_setting.ini", pp, /four = five\n\n\[one\]\ntwo = three/
end
context '=> absent for key/value' do
before :all do
if fact('osfamily') == 'Darwin'