diff options
author | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-04-28 14:55:29 -0400 |
---|---|---|
committer | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-04-28 14:55:29 -0400 |
commit | f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc (patch) | |
tree | 3f9e8ee134c0ed8375d3e80987c0801971f32736 /spec/acceptance/validate_slength_spec.rb | |
parent | 0b59dfe64299abd0c7e9a72dd381341cb9a5c260 (diff) | |
parent | 90222959b14a10c3519c88f74e244b13b07fd78b (diff) | |
download | puppet-stdlib-f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc.tar.gz puppet-stdlib-f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc.tar.bz2 |
Merge pull request #243 from hunner/add_beaker
Add beaker tests for functions.
Diffstat (limited to 'spec/acceptance/validate_slength_spec.rb')
-rw-r--r-- | spec/acceptance/validate_slength_spec.rb | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/spec/acceptance/validate_slength_spec.rb b/spec/acceptance/validate_slength_spec.rb new file mode 100644 index 0000000..96b2a6f --- /dev/null +++ b/spec/acceptance/validate_slength_spec.rb @@ -0,0 +1,71 @@ +require 'spec_helper_acceptance' + +describe 'validate_slength function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do + describe 'success' do + it 'validates a single string max' do + pp = <<-EOS + $one = 'discombobulate' + $two = 17 + validate_slength($one,$two) + EOS + + apply_manifest(pp, :catch_failures => true) + end + it 'validates multiple string maxes' do + pp = <<-EOS + $one = ['discombobulate', 'moo'] + $two = 17 + validate_slength($one,$two) + EOS + + apply_manifest(pp, :catch_failures => true) + end + it 'validates min/max of strings in array' do + pp = <<-EOS + $one = ['discombobulate', 'moo'] + $two = 17 + $three = 3 + validate_slength($one,$two,$three) + EOS + + apply_manifest(pp, :catch_failures => true) + end + it 'validates a single string max of incorrect length' do + pp = <<-EOS + $one = 'discombobulate' + $two = 1 + validate_slength($one,$two) + EOS + + apply_manifest(pp, :expect_failures => true) + end + it 'validates multiple string maxes of incorrect length' do + pp = <<-EOS + $one = ['discombobulate', 'moo'] + $two = 3 + validate_slength($one,$two) + EOS + + apply_manifest(pp, :expect_failures => true) + end + it 'validates multiple strings min/maxes of incorrect length' do + pp = <<-EOS + $one = ['discombobulate', 'moo'] + $two = 17 + $three = 10 + validate_slength($one,$two,$three) + EOS + + apply_manifest(pp, :expect_failures => true) + end + end + describe 'failure' do + it 'handles improper number of arguments' + it 'handles improper first argument type' + it 'handles non-strings in array of first argument' + it 'handles improper second argument type' + it 'handles improper third argument type' + it 'handles negative ranges' + it 'handles improper ranges' + end +end |