Ready for 7.10.29 development.
This commit is contained in:
commit
c806f99b7b
4236 changed files with 1217679 additions and 0 deletions
59
t/Asset/Wobject/SQLReport.t
Normal file
59
t/Asset/Wobject/SQLReport.t
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# vim:syntax=perl
|
||||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001-2009 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
|
||||
#------------------------------------------------------------------
|
||||
|
||||
# Write a little about what this script tests.
|
||||
#
|
||||
#
|
||||
|
||||
use FindBin;
|
||||
use strict;
|
||||
use lib "$FindBin::Bin/../../lib";
|
||||
use Test::More;
|
||||
use Test::Deep;
|
||||
use Data::Dumper;
|
||||
|
||||
use WebGUI::Test; # Must use this before any other WebGUI modules
|
||||
use WebGUI::Session;
|
||||
use WebGUI::Asset::Wobject::SQLReport;
|
||||
|
||||
################################################################
|
||||
#
|
||||
# setup session, users and groups for this test
|
||||
#
|
||||
################################################################
|
||||
|
||||
my $session = WebGUI::Test->session;
|
||||
|
||||
plan tests => 4;
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# put your tests here
|
||||
|
||||
my $defaultNode = WebGUI::Asset->getDefault($session);
|
||||
|
||||
my $report = $defaultNode->addChild({
|
||||
className => 'WebGUI::Asset::Wobject::SQLReport',
|
||||
title => 'test report',
|
||||
cacheTimeout => 50,
|
||||
dqQuery1 => 'select * from users',
|
||||
});
|
||||
|
||||
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
||||
$versionTag->commit;
|
||||
addToCleanup($versionTag);
|
||||
|
||||
isa_ok($report, 'WebGUI::Asset::Wobject::SQLReport');
|
||||
|
||||
is($report->get('cacheTimeout'), 50, 'cacheTimeout set correctly');
|
||||
ok(abs($report->getContentLastModified - (time - 50)) < 2, 'getContentLastModified overridden correctly');
|
||||
|
||||
$report->update({cacheTimeout => 250});
|
||||
ok(abs($report->getContentLastModified - (time - 250)) < 2, '... tracks cacheTimeout');
|
||||
Loading…
Add table
Add a link
Reference in a new issue