Failing tests
[catagits/Catalyst-TraitFor-Request-ProxyBase.git] / t / live-test.t
CommitLineData
1640822e 1#!/usr/bin/env perl
2
3use strict;
4use warnings;
cbca054e 5use HTTP::Request::Common;
6use Test::More tests => 9;
1640822e 7
8# setup library path
9use FindBin qw($Bin);
10use lib "$Bin/lib";
11
044d8723 12use TestApp;
1640822e 13
14# a live test against TestApp, the test application
044d8723 15use Catalyst::Test 'TestApp';
16
cbca054e 17sub req_with_base {
18 my $base = shift;
19
20 my ($res, $c) = ctx_request(GET('/'));
21 return $c;
22}
23
24is(req_with_base('http://localhost/')->res->body, 'http://localhost/');
25is(req_with_base('https://localhost/')->res->body, 'https://localhost/');
26ok req_with_base('https://localhost/')->req->secure;
27
28is(req_with_base('https://example.com:445/')->res->body,
29 'https://example.com:445/');
30is(req_with_base('http://example.com:443/')->res->body,
31 'http://example.com:443/');
32is(req_with_base('https://example.com:445/some/path')->res->body,
33 'https://example.com:445/some/path/');
34is(req_with_base('https://example.com:445/some/path/')->res->body,
35 'https://example.com:445/some/path/');
36
37ok req_with_base('https://example.com:80/')->req->secure;
38ok !req_with_base('http://example.com:443/')->req->secure;
1640822e 39