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

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

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

  • Property svn:executable set to *
File size: 808 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'validate_ipv4_address function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'validates a single argument' do
7 pp = <<-EOS
8 $one = '1.2.3.4'
9 validate_ipv4_address($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 = '1.2.3.4'
17 $two = '5.6.7.8'
18 validate_ipv4_address($one,$two)
19 EOS
20
21 apply_manifest(pp, :catch_failures => true)
22 end
23 end
24 describe 'failure' do
25 it 'handles improper number of arguments'
26 it 'handles ipv6 addresses'
27 it 'handles non-ipv4 strings'
28 it 'handles numbers'
29 it 'handles no arguments'
30 end
31end
Note: See TracBrowser for help on using the repository browser.