summaryrefslogtreecommitdiff
path: root/spec/functions/validate_ipv6_address_spec.rb
blob: a839d902c9eff0dfe32cceb6ba8654ce0ffec3cb (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
63
64
65
66
67
#! /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:0505:0002::')"
        scope.compiler.compile
      end

      it "should compile with multiple arguments" do
        Puppet[:code] = "validate_ipv6_address('3ffe:0505:0002::', '3ffe:0505:0001::')"
        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

    # 1.8.7 is EOL'd and also absolutely insane about ipv6
    unless RUBY_VERSION == '1.8.7'
      describe "when given numbers" do
        it "should not compile" do
          Puppet[:code] = "validate_ipv6_address(1, 2)"
          expect {
            scope.compiler.compile
          }.to raise_error(Puppet::ParseError, /not a valid IPv6 address/)
        end
      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