102 lines
3 KiB
Perl
102 lines
3 KiB
Perl
#-------------------------------------------------------------------
|
|
# 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 = 14;
|
|
|
|
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');
|
|
|
|
####################################################
|
|
#
|
|
# setStatus, getStatus, getStatusDescription
|
|
#
|
|
####################################################
|
|
|
|
$http->setStatus('123');
|
|
|
|
is($http->getStatus, '123', 'getStatus: returns correct code');
|
|
is($http->getStatusDescription, 'OK', 'getStatusDescription: returns default description via getStatus');
|
|
|
|
$http->setStatus('');
|
|
|
|
is($http->getStatusDescription, 'OK', 'getStatusDescription: returns default description via itself');
|
|
is($http->getStatus, '200', 'getStatus: returns default code');
|
|
|
|
$http->setStatus('', 'packets are great');
|
|
|
|
is($http->getStatusDescription, 'packets are great', 'getStatusDescription: returns correct description');
|
|
|
|
####################################################
|
|
#
|
|
# isRedirect
|
|
#
|
|
####################################################
|
|
|
|
$http->setStatus('200');
|
|
is($http->isRedirect, '', 'isRedirect: is not');
|
|
|
|
$http->setStatus('302');
|
|
is($http->isRedirect, 1, 'isRedirect: is too');
|
|
|
|
####################################################
|
|
#
|
|
# setMimeType, getMimeType
|
|
#
|
|
####################################################
|
|
|
|
$http->setMimeType('');
|
|
is($http->getMimeType, 'text/html', 'set/get MimeType: default is text/html');
|
|
|
|
$http->setMimeType('image/jpeg');
|
|
is($http->getMimeType, 'image/jpeg', 'set/get MimeType: set specific type and get it');
|
|
|
|
####################################################
|
|
#
|
|
# setStreamedFile, getStreamedFile
|
|
#
|
|
####################################################
|
|
|
|
$http->setStreamedFile('');
|
|
is($http->getStreamedFile, undef, 'set/get StreamedFile: false values return undef, empty string');
|
|
$http->setStreamedFile(0);
|
|
is($http->getStreamedFile, undef, 'set/get StreamedFile: false values return undef, empty string');
|
|
|
|
$http->setStreamedFile('/home/streaming');
|
|
is($http->getStreamedFile, '/home/streaming', 'set/get StreamedFile: set specific location and get it');
|
|
|
|
####################################################
|
|
#
|
|
# setNoHeader and sendHeader
|
|
#
|
|
####################################################
|
|
|
|
$http->setNoHeader(1);
|
|
is($http->sendHeader, undef, 'sendHeader returns undef when setNoHeader is true');
|
|
|
|
$http->setNoHeader(0);
|
|
|
|
END {
|
|
}
|