summaryrefslogtreecommitdiff
path: root/t/post-cryptssleay.t
diff options
context:
space:
mode:
authorivan <ivan>2010-05-01 20:37:58 +0000
committerivan <ivan>2010-05-01 20:37:58 +0000
commita39c911f8c4def7e6f57b1c2349642bd58696742 (patch)
tree16132cf5c0738cfebfaded890ada1d20d2b2a55b /t/post-cryptssleay.t
parent90eca2090a47dd4755de4fa707597ff2c025ecaa (diff)
- Updated servers used for testing in examples and tests
- Supress uninitialized value warnings from Net::SSLeay
Diffstat (limited to 't/post-cryptssleay.t')
-rw-r--r--t/post-cryptssleay.t21
1 files changed, 11 insertions, 10 deletions
diff --git a/t/post-cryptssleay.t b/t/post-cryptssleay.t
index c9f13ab..168f1ea 100644
--- a/t/post-cryptssleay.t
+++ b/t/post-cryptssleay.t
@@ -6,36 +6,37 @@ use Test::More;
BEGIN {
plan( tests=>4 );
- $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
- $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
+ $Net::HTTPS::Any::skip_NetSSLeay=1;
+ $Net::HTTPS::Any::skip_NetSSLeay=1;
use_ok 'Net::HTTPS::Any', 'https_post';
};
#200
my($content, $response, %headers) = https_post(
- { 'host' => 'secure.sisd.com',
+ { 'host' => 'www.google.com',
'port' => 443,
- 'path' => '/freeside/index.html',
+ 'path' => '/accounts/ServiceLoginAuth',
+ 'args' => { 'posted' => 'data' },
},
'net_https_any_test' => 1,
);
-#like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (Not Found) response');
-like($response, qr/^200/i, 'Received 200 (Not Found) response');
+#like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) response');
+like($response, qr/^200/i, 'Received 200 (OK) response');
ok( length($content), 'Received content' );
#404
my($content2, $response2, %headers2) = https_post(
- { 'host' => 'secure.sisd.com',
+ { 'host' => 'www.fortify.net',
'port' => 443,
- 'path' => '/freeside/notfound.html',
+ 'path' => '/notfound.html',
},
'net_https_any_test' => 1,
);
-#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (OK) response');
-like($response2, qr/^404/i, 'Received 404 (OK) response');
+#like($response2, qr/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (Not FOund) response');
+like($response2, qr/^404/i, 'Received 404 (Not Found) response');