fix test failures (closes: CPAN#116405)
[Net-HTTPS-Any.git] / t / post-netssleay.t
index e8cb2fd..80c2863 100644 (file)
@@ -4,33 +4,37 @@ use strict;
 use warnings;
 use Test::More;
 
-plan( tests=>4 );
-
-use_ok 'Net::HTTPS::Any';
+BEGIN {
+  plan( tests=>4 );
+  use_ok 'Net::HTTPS::Any', 'https_post';
+};
 
 #200
-
-my($content, $response, %headers) = Net::HTTPS::Any::https_post(
-  { 'host' => 'secure.sisd.com',
+my($content, $response, %headers) = https_post(
+  { 'host' => 'accounts.google.com',
     'port' => 443,
-    'path' => '/freeside/index.html',
+    'path' => '/ServiceLogin',
+    'args' => { 'posted' => 'data' },
   },
   'net_https_any_test' => 1,
 );
 
-like($response, qr/^HTTP\/[\d\.]+\s+200/i, 'Received 200 (OK) 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) = Net::HTTPS::Any::https_get(
-  { 'host' => 'secure.sisd.com',
+my($content2, $response2, %headers2) = https_post(
+  { 'host' => 'www.google.com',
     'port' => 443,
-    'path' => '/freeside/notfound.html',
+    'path' => '/notfound.html',
+    'args' => { 'length' => 'required' },
   },
   'net_https_any_test' => 1,
 );
 
-like($response2, qr/^HTTP\/[\d\.]+\s+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');