167 lines
5 KiB
Perl
167 lines
5 KiB
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
|
|
#-------------------------------------------------------------------
|
|
|
|
use FindBin;
|
|
use strict;
|
|
use lib "$FindBin::Bin/../../lib";
|
|
use Test::MockObject;
|
|
use Test::MockObject::Extends;
|
|
|
|
##The goal of this test is to test the creation of Article Wobjects.
|
|
|
|
use WebGUI::Test;
|
|
use WebGUI::Session;
|
|
use Test::More tests => 8; # increment this value for each test you create
|
|
use Test::Deep;
|
|
use Data::Dumper;
|
|
|
|
my $templateId = 'INOUTBOARD_TEMPLATE___';
|
|
my $templateMock = Test::MockObject->new({});
|
|
$templateMock->set_isa('WebGUI::Asset::Template');
|
|
$templateMock->set_always('getId', $templateId);
|
|
my $templateVars;
|
|
$templateMock->mock('prepare', sub { } );
|
|
$templateMock->mock('process', sub { $templateVars = $_[1]; } );
|
|
$templateMock->set_true('prepare');
|
|
|
|
use WebGUI::Asset::Wobject::InOutBoard;
|
|
|
|
my $session = WebGUI::Test->session;
|
|
|
|
#Build a bunch of users
|
|
my @names = qw/red andy hadley boggs/;
|
|
|
|
my @users = ();
|
|
foreach my $name (@names) {
|
|
my $user = WebGUI::User->create($session);
|
|
$user->username($name);
|
|
push @users, $user;
|
|
}
|
|
WebGUI::Test->addToCleanup(@users);
|
|
|
|
# Do our work in the import node
|
|
my $node = WebGUI::Asset->getImportNode($session);
|
|
|
|
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
|
$versionTag->set({name=>"InOutBoard Test"});
|
|
WebGUI::Test->addToCleanup($versionTag);
|
|
my $board = $node->addChild({
|
|
className => 'WebGUI::Asset::Wobject::InOutBoard',
|
|
inOutTemplateId => $templateId,
|
|
});
|
|
|
|
WebGUI::Test->mockAssetId($templateId, $templateMock);
|
|
$board->prepareView();
|
|
|
|
# Test for a sane object type
|
|
isa_ok($board, 'WebGUI::Asset::Wobject::InOutBoard');
|
|
|
|
################################################################
|
|
#
|
|
# www_setStatus
|
|
#
|
|
################################################################
|
|
|
|
$session->request->setup_body({
|
|
delegate => $users[0]->userId,
|
|
status => 'In',
|
|
message => 'work time',
|
|
});
|
|
$session->scratch->set('userId', $users[0]->userId);
|
|
$board->www_setStatus;
|
|
my $status;
|
|
$status = $session->db->quickHashRef('select * from InOutBoard_status where assetId=? and userId=?',[$board->getId, $users[0]->userId]);
|
|
cmp_deeply(
|
|
$status,
|
|
{
|
|
assetId => $board->getId,
|
|
userId => $users[0]->getId,
|
|
status => 'In',
|
|
message => 'work time',
|
|
dateStamp => re('^\d+$'),
|
|
},
|
|
'www_setStatus: set status for a user'
|
|
);
|
|
my $statusLog;
|
|
$statusLog = $session->db->quickHashRef('select * from InOutBoard_statusLog where assetId=? and userId=?',[$board->getId, $users[0]->userId]);
|
|
cmp_deeply(
|
|
$statusLog,
|
|
{
|
|
assetId => $board->getId,
|
|
userId => $users[0]->getId,
|
|
status => 'In',
|
|
message => 'work time',
|
|
dateStamp => re('^\d+$'),
|
|
createdBy => 1,
|
|
},
|
|
'... set statusLog for a user'
|
|
);
|
|
|
|
$session->scratch->set('userId', $users[1]->userId);
|
|
$session->request->setup_body({
|
|
delegate => $users[1]->userId,
|
|
status => undef,
|
|
message => 'work time',
|
|
});
|
|
$board->www_setStatus;
|
|
$status = $session->db->quickHashRef('select * from InOutBoard_status where assetId=? and userId=?',[$board->getId, $users[1]->userId]);
|
|
cmp_deeply(
|
|
$status,
|
|
{ },
|
|
"... no status table entry made when the users's status is blank"
|
|
);
|
|
my $statusLog;
|
|
$statusLog = $session->db->quickHashRef('select * from InOutBoard_statusLog where assetId=? and userId=?',[$board->getId, $users[1]->userId]);
|
|
cmp_deeply(
|
|
$statusLog,
|
|
{ },
|
|
'... no statusLog set when status is blank'
|
|
);
|
|
|
|
|
|
$session->request->setup_body({ });
|
|
$session->scratch->delete('userId');
|
|
|
|
################################################################
|
|
#
|
|
# view
|
|
#
|
|
################################################################
|
|
|
|
$board->view;
|
|
cmp_bag(
|
|
$templateVars->{rows_loop},
|
|
[
|
|
{
|
|
deptHasChanged => ignore(),
|
|
status => 'In',
|
|
dateStamp => ignore(),
|
|
message => 'work time',
|
|
username => 'red',
|
|
},
|
|
ignore(), ignore(), ignore(), ignore(),
|
|
],
|
|
'view: returns one entry for each user, entry is correct for user with status'
|
|
);
|
|
|
|
WebGUI::Test->unmockAssetId($templateId);
|
|
################################################################
|
|
#
|
|
# purge
|
|
#
|
|
################################################################
|
|
|
|
my $boardId = $board->getId;
|
|
$board->purge;
|
|
my $count;
|
|
$count = $session->db->quickScalar('select count(*) from InOutBoard_status where assetId=?',[$boardId]);
|
|
is ($count, 0, 'purge: cleans up status table');
|
|
$count = $session->db->quickScalar('select count(*) from InOutBoard_statusLog where assetId=?',[$boardId]);
|
|
is ($count, 0, '... cleans up statusLog table');
|