blob: 27ea4feeff225394676e07b93a498dbf6927ac1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#! /usr/bin/env ruby -S rspec
require "spec_helper"
describe Puppet::Parser::Functions.function(:validate_ipv4_address) do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
describe "when calling validate_ipv4_address from puppet" do
describe "when given IPv4 address strings" do
it "should compile with one argument" do
Puppet[:code] = "validate_ipv4_address('1.2.3.4')"
scope.compiler.compile
end
it "should compile with multiple arguments" do
Puppet[:code] = "validate_ipv4_address('1.2.3.4', '5.6.7.8')"
scope.compiler.compile
end
end
describe "when given an IPv6 address" do
it "should not compile" do
Puppet[:code] = "validate_ipv4_address('3ffe:505')"
expect {
scope.compiler.compile
}.to raise_error(Puppet::ParseError, /not a valid IPv4 address/)
end
end
describe "when given other strings" do
it "should not compile" do
Puppet[:code] = "validate_ipv4_address('hello', 'world')"
expect {
scope.compiler.compile
}.to raise_error(Puppet::ParseError, /not a valid IPv4 address/)
end
end
describe "when given numbers" do
it "should not compile" do
Puppet[:code] = "validate_ipv4_address(1, 2)"
expect { scope.compiler.compile }.to raise_error
end
end
describe "when given booleans" do
it "should not compile" do
Puppet[:code] = "validate_ipv4_address(true, false)"
expect {
scope.compiler.compile
}.to raise_error(Puppet::ParseError, /is not a string/)
end
end
it "should not compile when no arguments are passed" do
Puppet[:code] = "validate_ipv4_address()"
expect {
scope.compiler.compile
}.to raise_error(Puppet::ParseError, /wrong number of arguments/)
end
end
end
|