source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/acceptance/validate_array_spec.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 8 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

  • Property svn:executable set to *
File size: 1007 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'validate_array function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'validates a single argument' do
7 pp = <<-EOS
8 $one = ['a', 'b']
9 validate_array($one)
10 EOS
11
12 apply_manifest(pp, :catch_failures => true)
13 end
14 it 'validates an multiple arguments' do
15 pp = <<-EOS
16 $one = ['a', 'b']
17 $two = [['c'], 'd']
18 validate_array($one,$two)
19 EOS
20
21 apply_manifest(pp, :catch_failures => true)
22 end
23 [
24 %{validate_array({'a' => 'hash' })},
25 %{validate_array('string')},
26 %{validate_array(false)},
27 %{validate_array(undef)}
28 ].each do |pp|
29 it "rejects #{pp.inspect}" do
30 expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/is not an Array\. It looks to be a/)
31 end
32 end
33 end
34 describe 'failure' do
35 it 'handles improper number of arguments'
36 end
37end
Note: See TracBrowser for help on using the repository browser.