91 lines
2.6 KiB
Perl
91 lines
2.6 KiB
Perl
# 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 WebGUI::Test; # Must use this before any other WebGUI modules
|
|
use WebGUI::Session;
|
|
use WebGUI::Asset;
|
|
use WebGUI::AssetHelper::Demote;
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Init
|
|
my $session = WebGUI::Test->session;
|
|
|
|
|
|
#----------------------------------------------------------------------------
|
|
# Tests
|
|
|
|
plan tests => 3; # Increment this number for each test you create
|
|
|
|
#----------------------------------------------------------------------------
|
|
# put your tests here
|
|
|
|
my $output;
|
|
my $home = WebGUI::Asset->getDefault($session);
|
|
|
|
$session->user({userId => 3});
|
|
|
|
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
|
|
|
my $newPage = $home->addChild({
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
title => 'Test page',
|
|
}, undef, undef, { skipAutoCommitWorkflows => 1, });
|
|
|
|
my $article1 = $newPage->addChild({
|
|
className => 'WebGUI::Asset::Wobject::Article',
|
|
title => 'Article_1',
|
|
}, undef, undef, { skipAutoCommitWorkflows => 1, });
|
|
|
|
my $article2 = $newPage->addChild({
|
|
className => 'WebGUI::Asset::Wobject::Article',
|
|
title => 'Article_2',
|
|
}, undef, undef, { skipAutoCommitWorkflows => 1, });
|
|
|
|
$versionTag->commit;
|
|
addToCleanup($versionTag);
|
|
|
|
$session->user({userId => 1});
|
|
$output = WebGUI::AssetHelper::Demote->process($article1);
|
|
cmp_deeply(
|
|
$output,
|
|
{
|
|
error => re('You do not have sufficient privileges'),
|
|
},
|
|
'AssetHelper/Demote checks for editing privileges'
|
|
);
|
|
|
|
$session->user({userId => 3});
|
|
$output = WebGUI::AssetHelper::Demote->process($article1);
|
|
cmp_deeply(
|
|
$output,
|
|
{
|
|
message => re('was demoted'),
|
|
},
|
|
'AssetHelper/Demote returns a message'
|
|
);
|
|
|
|
my $assets = $newPage->getLineage(['children'], { returnObjects => 1 });
|
|
cmp_deeply(
|
|
[ map { $_->getTitle } @{ $assets } ],
|
|
[ qw{Article_2 Article_1} ],
|
|
'... and assets were rearranged'
|
|
);
|
|
|
|
#vim:ft=perl
|