File: client_request.rb

package info (click to toggle)
puppet 0.24.5-3%2Blenny2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,688 kB
  • ctags: 7,630
  • sloc: ruby: 97,655; sh: 721; lisp: 262; makefile: 167; xml: 122; python: 28
file content (38 lines) | stat: -rwxr-xr-x 1,078 bytes parent folder | download
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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../lib/puppettest'

require 'puppettest'

require 'puppet/network/client_request'

class TestClientRequest < Test::Unit::TestCase
	include PuppetTest

    def test_initialize
        req = nil
        assert_nothing_raised do
            req = Puppet::Network::ClientRequest.new("name", "ip", false)
        end

        assert_equal("name", req.name, "host name was not set correctly")
        assert_equal("ip", req.ip, "host ip was not set correctly")
        assert_equal(false, req.authenticated, "host auth was not set correctly")
        assert(! req.authenticated, "host was incorrectly considered authenticated")

        req.authenticated = true
        assert(req.authenticated, "host was not considered authenticated")

        assert_raise(ArgumentError) do
            req.call
        end

        req.handler = "yay"
        req.method = "foo"
        assert_equal("yay.foo", req.call, "call was not built correctly")

        assert_equal("name(ip)", req.to_s, "request string not correct")
    end
end