2014-05-07 11:49:25 +02:00
|
|
|
#! /usr/bin/env ruby -S rspec
|
2014-04-09 23:35:34 +02:00
|
|
|
require 'spec_helper_acceptance'
|
|
|
|
|
|
|
|
describe 'parseyaml function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
|
|
|
|
describe 'success' do
|
|
|
|
it 'parses valid yaml' do
|
|
|
|
pp = <<-EOS
|
|
|
|
$a = "---\nhunter: washere\ntests: passing\n"
|
|
|
|
$o = parseyaml($a)
|
|
|
|
$tests = $o['tests']
|
|
|
|
notice(inline_template('tests are <%= @tests.inspect %>'))
|
|
|
|
EOS
|
|
|
|
|
|
|
|
apply_manifest(pp, :catch_failures => true) do |r|
|
|
|
|
expect(r.stdout).to match(/tests are "passing"/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-08-24 21:00:18 +02:00
|
|
|
|
2014-04-09 23:35:34 +02:00
|
|
|
describe 'failure' do
|
2015-08-24 21:00:18 +02:00
|
|
|
it 'returns the default value on incorrect yaml' do
|
2014-04-09 23:35:34 +02:00
|
|
|
pp = <<-EOS
|
|
|
|
$a = "---\nhunter: washere\ntests: passing\n:"
|
2015-08-24 21:00:18 +02:00
|
|
|
$o = parseyaml($a, {'tests' => 'using the default value'})
|
2014-04-09 23:35:34 +02:00
|
|
|
$tests = $o['tests']
|
|
|
|
notice(inline_template('tests are <%= @tests.inspect %>'))
|
|
|
|
EOS
|
|
|
|
|
2015-08-24 21:00:18 +02:00
|
|
|
apply_manifest(pp, :catch_failures => true) do |r|
|
|
|
|
expect(r.stdout).to match(/tests are "using the default value"/)
|
2014-04-09 23:35:34 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-09-21 19:56:08 +02:00
|
|
|
it 'raises error on incorrect yaml' do
|
|
|
|
pp = <<-EOS
|
|
|
|
$a = "---\nhunter: washere\ntests: passing\n:"
|
|
|
|
$o = parseyaml($a)
|
|
|
|
$tests = $o['tests']
|
|
|
|
notice(inline_template('tests are <%= @tests.inspect %>'))
|
|
|
|
EOS
|
|
|
|
|
|
|
|
apply_manifest(pp, :expect_failures => true) do |r|
|
|
|
|
expect(r.stderr).to match(/(syntax error|did not find expected key)/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-08-24 21:00:18 +02:00
|
|
|
it 'raises error on incorrect number of arguments' do
|
|
|
|
pp = <<-EOS
|
|
|
|
$o = parseyaml()
|
|
|
|
EOS
|
|
|
|
|
|
|
|
apply_manifest(pp, :expect_failures => true) do |r|
|
|
|
|
expect(r.stderr).to match(/wrong number of arguments/i)
|
|
|
|
end
|
|
|
|
end
|
2014-04-09 23:35:34 +02:00
|
|
|
end
|
|
|
|
end
|