X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=t%2Fpost-netssleay.t;h=80c286391f937cdceec2c5f839725bf88b4111aa;hb=10b53bacd2d2387381f9e49389fef0c9aaa46ac6;hp=e8cb2fdb653aa523985d84daddadea9666388e65;hpb=97e89d11919d233afc4bbe3a2c7f14a4d116584b;p=Net-HTTPS-Any.git diff --git a/t/post-netssleay.t b/t/post-netssleay.t index e8cb2fd..80c2863 100644 --- a/t/post-netssleay.t +++ b/t/post-netssleay.t @@ -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');