summaryrefslogtreecommitdiffstats
path: root/test/network
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-08-06 20:05:28 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2007-08-06 20:05:28 +0000
commitaaf5959fe3e9ff90d7288bb1ba8805bad2e7d05a (patch)
tree27ca422ab930de606bff80de3a6e57d93144b35b /test/network
parentdb0ffc7559d727fbfede9079f51e41031b900a89 (diff)
downloadpuppet-aaf5959fe3e9ff90d7288bb1ba8805bad2e7d05a.tar.gz
puppet-aaf5959fe3e9ff90d7288bb1ba8805bad2e7d05a.tar.xz
puppet-aaf5959fe3e9ff90d7288bb1ba8805bad2e7d05a.zip
Adding test support for the other mongrel configuration header
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2752 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test/network')
-rwxr-xr-xtest/network/server/mongrel_test.rb25
1 files changed, 23 insertions, 2 deletions
diff --git a/test/network/server/mongrel_test.rb b/test/network/server/mongrel_test.rb
index 75568561b..b7a383872 100755
--- a/test/network/server/mongrel_test.rb
+++ b/test/network/server/mongrel_test.rb
@@ -3,6 +3,7 @@
$:.unshift("../../lib") if __FILE__ =~ /\.rb$/
require 'puppettest'
+require 'mocha'
class TestMongrelServer < PuppetTest::TestCase
confine "Missing mongrel" => Puppet.features.mongrel?
@@ -25,14 +26,34 @@ class TestMongrelServer < PuppetTest::TestCase
ip = Facter.value(:ipaddress)
params["REMOTE_ADDR"] = ip
+ params[Puppet[:ssl_client_header]] = ""
+ params[Puppet[:ssl_client_verify_header]] = "failure"
+ info = nil
+ Resolv.expects(:getname).with(ip).returns("host.domain.com").times(3)
+ assert_nothing_raised("Could not call client_info") do
+ info = mongrel.send(:client_info, obj)
+ end
+ assert(! info.authenticated?, "Client info object was marked valid even though headers were missing")
+ assert_equal(ip, info.ip, "Did not copy over ip correctly")
+
+ assert_equal("host.domain.com", info.name, "Did not copy over hostname correctly")
+
+ # Now add a valid auth header.
params[Puppet[:ssl_client_header]] = "/CN=host.domain.com"
+ assert_nothing_raised("Could not call client_info") do
+ info = mongrel.send(:client_info, obj)
+ end
+ assert(! info.authenticated?, "Client info object was marked valid even though the verify header was fals")
+ assert_equal(ip, info.ip, "Did not copy over ip correctly")
+ assert_equal("host.domain.com", info.name, "Did not copy over hostname correctly")
- info = nil
+ # Now change the verify header to be true
+ params[Puppet[:ssl_client_verify_header]] = "SUCCESS"
assert_nothing_raised("Could not call client_info") do
info = mongrel.send(:client_info, obj)
end
- assert(info.authenticated?, "Client info object was not marked valid even though the header was present")
+ assert(info.authenticated?, "Client info object was not marked valid even though all headers were correct")
assert_equal(ip, info.ip, "Did not copy over ip correctly")
assert_equal("host.domain.com", info.name, "Did not copy over hostname correctly")