Extend Session::Http::getStatus so that is will also return the

description when called in list context.
Build tests to verify that behavior, and the default settings
for code and description.
This commit is contained in:
Colin Kuskie 2006-10-15 05:23:32 +00:00
parent ab835f3c64
commit ca7110249f
2 changed files with 61 additions and 2 deletions

53
t/Session/Http.t Normal file
View file

@ -0,0 +1,53 @@
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2006 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#-------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
use FindBin;
use strict;
use lib "$FindBin::Bin/../lib";
use WebGUI::Test;
use WebGUI::Session;
use Test::More; # increment this value for each test you create
my $num_tests = 8;
plan tests => $num_tests;
my $session = WebGUI::Test->session;
# put your tests here
my $http = $session->http;
isa_ok($http, 'WebGUI::Session::Http', 'session has correct object type');
$http->setStatus('123');
is($http->getStatus, '123', 'getStatus: returns correct code in scalar context');
my ($status, $description) = $http->getStatus;
is($status, '123', 'getStatus: returns correct code');
is($description, 'OK', 'getStatus: default description returned');
$http->setStatus('');
($status, $description) = $http->getStatus;
is($status, '200', 'getStatus: returns default code');
is($description, 'OK', 'getStatus: default description returned');
$http->setStatus('', 'packets are great');
($status, $description) = $http->getStatus;
is($status, '200', 'getStatus: returns default code');
is($description, 'packets are great', 'getStatus: default description returned');
END {
}