summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/validate_ipv6_address_spec.rb
blob: bf3c9661d79e2cf0b5a35119a9b7c245346133cd (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_ipv6_address) do
  let(:scope) { PuppetlabsSpec::PuppetInternals.scope }

  describe "when calling validate_ipv6_address from puppet" do
    describe "when given IPv6 address strings" do
      it "should compile with one argument" do
        Puppet[:code] = "validate_ipv6_address('3ffe:505:2')"
        scope.compiler.compile
      end

      it "should compile with multiple arguments" do
        Puppet[:code] = "validate_ipv6_address('3ffe:505:2', '3ffe:505:1')"
        scope.compiler.compile
      end
    end

    describe "when given an ipv4 address" do
      it "should not compile" do
        Puppet[:code] = "validate_ipv6_address('1.2.3.4')"
        expect {
          scope.compiler.compile
        }.to raise_error(Puppet::ParseError, /not a valid IPv6 address/)
      end
    end

    describe "when given other strings" do
      it "should not compile" do
        Puppet[:code] = "validate_ipv6_address('hello', 'world')"
        expect {
          scope.compiler.compile
        }.to raise_error(Puppet::ParseError, /not a valid IPv6 address/)
      end
    end

    describe "when given numbers" do
      it "should compile" do
        Puppet[:code] = "validate_ipv6_address(1, 2)"
        scope.compiler.compile
      end
    end

    describe "when given booleans" do
      it "should not compile" do
        Puppet[:code] = "validate_ipv6_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_ipv6_address()"
      expect {
        scope.compiler.compile
      }.to raise_error(Puppet::ParseError, /wrong number of arguments/)
    end
  end
end