0.11
[Net-HTTPS-Any.git] / t / get-cryptssleay.t
index 2b3babe..fa2ef21 100644 (file)
@@ -5,37 +5,40 @@ use warnings;
 use Test::More;
 
 BEGIN {
-  $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
-  $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
-}
 
-plan( tests=>4 );
+  plan skip_all => "LWP tests disabled to avoid excessive dependencies";
 
-use_ok 'Net::HTTPS::Any';
+  plan( tests=>4 );
+  $Net::HTTPS::Any::skip_NetSSLeay=1;
+  $Net::HTTPS::Any::skip_NetSSLeay=1;
+  use_ok 'Net::HTTPS::Any', 'https_get';
+};
 
 #200
 
-my($content, $response, %headers) = Net::HTTPS::Any::https_get(
-  { 'host' => 'secure.sisd.com',
+my($content, $response, %headers) = https_get(
+  { 'host' => 'www.fortify.net',
     'port' => 443,
-    'path' => '/freeside/index.html',
+    'path' => '/sslcheck.html',
   },
   '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_get(
+  { '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/^HTTP\/[\d\.]+\s+404/i, 'Received 404 (Not found) response');
+like($response2, qr/^404/i, 'Received 404 (Not found) response');