summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rwxr-xr-xt/test-http-vs-https.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/t/test-http-vs-https.rb b/t/test-http-vs-https.rb
index ada49d6..8ad5aea 100755
--- a/t/test-http-vs-https.rb
+++ b/t/test-http-vs-https.rb
@@ -64,5 +64,30 @@ class TestTestName < Test::Unit::TestCase
assert_equal( test.get_type, "https" )
end
+
+ #
+ # It is a bug to have the protocol-test differ from the URI's protocol.
+ #
+ def test_protocol_mismatch
+
+
+ assert_raise ArgumentError do
+ Custodian::TestFactory.create( "https://example.com/ must run http." )
+ end
+
+ assert_raise ArgumentError do
+ Custodian::TestFactory.create( "http://example.com/ must run https." )
+ end
+
+
+ assert_nothing_raised do
+ Custodian::TestFactory.create( "http://example.com/ must run http." )
+ end
+ assert_nothing_raised do
+ Custodian::TestFactory.create( "https://example.com/ must run https." )
+ end
+
+ end
+
end