X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=t%2Fpost-cryptssleay.t;h=f77fa321538dffafa49481a0341d9c86350a9c09;hb=9857ce9e0927ef06728fdeda34ff9ad97455775d;hp=2bf52ffc8690ec0aea189fa9da30b82fa98ab112;hpb=11c117de3d421d0b9843f6fdfeea3933c3d47fe5;p=Net-HTTPS-Any.git diff --git a/t/post-cryptssleay.t b/t/post-cryptssleay.t index 2bf52ff..f77fa32 100644 --- a/t/post-cryptssleay.t +++ b/t/post-cryptssleay.t @@ -5,35 +5,42 @@ use warnings; use Test::More; BEGIN { + + plan skip_all => "LWP tests disabled to avoid excessive dependencies"; + 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 (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) = https_post( - { 'host' => 'secure.sisd.com', + { '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');