803 lines
30 KiB
Perl
803 lines
30 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 WebGUI::Test;
|
|
use WebGUI::Test::Maker::Permission;
|
|
use WebGUI::Session;
|
|
use WebGUI::Asset;
|
|
use WebGUI::User;
|
|
use WebGUI::Asset::Wobject::Navigation;
|
|
use WebGUI::Asset::Wobject::Folder;
|
|
use WebGUI::Asset::Sku;
|
|
use WebGUI::Asset::Sku::Product;
|
|
use WebGUI::AssetVersioning;
|
|
use WebGUI::VersionTag;
|
|
|
|
use Test::More;
|
|
use Test::Deep;
|
|
use Test::MockObject;
|
|
use HTML::TokeParser;
|
|
use Data::Dumper;
|
|
use Storable qw/dclone/;
|
|
|
|
my $session = WebGUI::Test->session;
|
|
|
|
my @getTitleTests = getTitleTests($session);
|
|
|
|
plan tests => 121
|
|
+ 2*scalar(@getTitleTests) #same tests used for getTitle and getMenuTitle
|
|
;
|
|
|
|
note "loadModule";
|
|
{
|
|
my $className = eval { WebGUI::Asset->loadModule('Moose::Asset'); };
|
|
my $e = Exception::Class->caught;
|
|
isa_ok($e, 'WebGUI::Error::InvalidParam', 'loadModule must get a WebGUI::Asset class');
|
|
cmp_deeply(
|
|
$e,
|
|
methods(
|
|
error => 'Not a WebGUI::Asset class',
|
|
param => 'Moose::Asset',
|
|
),
|
|
'... checking error message',
|
|
);
|
|
}
|
|
|
|
# Test the default constructor
|
|
my $defaultAsset = WebGUI::Asset->getDefault($session);
|
|
isa_ok($defaultAsset, 'WebGUI::Asset::Wobject::Layout');
|
|
|
|
# Test the new constructor
|
|
my $assetId = "PBnav00000000000000001"; # one of the default nav assets
|
|
|
|
# - explicit class
|
|
my $asset = WebGUI::Asset->newById($session, $assetId);
|
|
isa_ok ($asset, 'WebGUI::Asset::Wobject::Navigation');
|
|
is ($asset->getId, $assetId, 'new constructor explicit - returns correct asset');
|
|
|
|
# - new by hashref properties
|
|
$asset = undef;
|
|
$asset = WebGUI::Asset->newByPropertyHashRef($session, {
|
|
className=>"WebGUI::Asset::Wobject::Navigation",
|
|
assetId=>$assetId
|
|
});
|
|
isa_ok ($asset, 'WebGUI::Asset::Wobject::Navigation');
|
|
is ($asset->getId, $assetId, 'new constructor newByHashref - returns correct asset');
|
|
|
|
# - implicit class
|
|
$asset = undef;
|
|
$asset = WebGUI::Asset::Wobject::Navigation->new($session, $assetId);
|
|
isa_ok ($asset, 'WebGUI::Asset::Wobject::Navigation');
|
|
is ($asset->getId, $assetId, 'new constructor implicit - returns correct asset');
|
|
|
|
# - die gracefully
|
|
# -- no asset id
|
|
note "new, constructor fails";
|
|
{
|
|
my $deadAsset = eval { WebGUI::Asset->new($session, ''); };
|
|
my $e = Exception::Class->caught;
|
|
isa_ok($e, 'WebGUI::Error::InvalidParam', 'new must get an assetId');
|
|
cmp_deeply(
|
|
$e,
|
|
methods(
|
|
error => 'Asset constructor new() requires an assetId.',
|
|
),
|
|
'... checking error message',
|
|
);
|
|
}
|
|
|
|
# -- no class
|
|
my $primevalAsset = WebGUI::Asset->new($session, $assetId);
|
|
isa_ok ($primevalAsset, 'WebGUI::Asset');
|
|
|
|
# Test the newById Constructor
|
|
$asset = undef;
|
|
|
|
note "new";
|
|
use WebGUI::Asset::Wobject::Navigation;
|
|
$asset = WebGUI::Asset::Wobject::Navigation->new($session, $assetId);
|
|
isa_ok ($asset, 'WebGUI::Asset::Wobject::Navigation');
|
|
is ($asset->getId, $assetId, 'new constructor - returns correct asset when invoked with correct class');
|
|
|
|
note "getClassById";
|
|
{
|
|
my $deadAsset = eval { WebGUI::Asset->getClassById($session, 'RoysNonExistantAssetId'); };
|
|
my $e = Exception::Class->caught;
|
|
isa_ok($e, 'WebGUI::Error::InvalidParam', 'getClassById must have a valid assetId');
|
|
cmp_deeply(
|
|
$e,
|
|
methods(
|
|
error => "Couldn't lookup className",
|
|
param => 'RoysNonExistantAssetId',
|
|
),
|
|
'... checking error message',
|
|
);
|
|
}
|
|
|
|
note "newById";
|
|
{
|
|
my $deadAsset = eval { WebGUI::Asset->newById($session); };
|
|
my $e = Exception::Class->caught;
|
|
isa_ok($e, 'WebGUI::Error::InvalidParam', "newById won't work without an assetId");
|
|
cmp_deeply(
|
|
$e,
|
|
methods(
|
|
error => "newById must get an assetId",
|
|
),
|
|
'... checking error message',
|
|
);
|
|
}
|
|
|
|
note "newByUrl";
|
|
{
|
|
my $deadAsset = eval { WebGUI::Asset->newByUrl($session, '/workFromHomeScam'); };
|
|
my $e = Exception::Class->caught;
|
|
isa_ok($e, 'WebGUI::Error::ObjectNotFound');
|
|
cmp_deeply(
|
|
$e,
|
|
methods(
|
|
error => "The URL was requested, but does not exist in your asset tree.",
|
|
id => 'workfromhomescam',
|
|
),
|
|
'... checking error message',
|
|
);
|
|
my $root = eval { WebGUI::Asset->newByUrl($session, '/root'); };
|
|
isa_ok($root, 'WebGUI::Asset');
|
|
$root = eval { WebGUI::Asset->newByUrl($session, '/ROOT'); };
|
|
isa_ok($root, 'WebGUI::Asset');
|
|
$root = eval { WebGUI::Asset->newByUrl($session, '/root/'); };
|
|
isa_ok($root, 'WebGUI::Asset');
|
|
}
|
|
|
|
# -- no session
|
|
# Root Asset
|
|
my $rootAsset = WebGUI::Asset->getRoot($session);
|
|
isa_ok($rootAsset, 'WebGUI::Asset');
|
|
is($rootAsset->getId, 'PBasset000000000000001', 'Root Asset ID check');
|
|
|
|
# getMedia Constructor
|
|
|
|
my $mediaFolder = WebGUI::Asset->getMedia($session);
|
|
isa_ok($mediaFolder, 'WebGUI::Asset::Wobject::Folder');
|
|
is($mediaFolder->getId, 'PBasset000000000000003', 'Media Folder Asset ID check');
|
|
|
|
# getImportNode Constructor
|
|
|
|
my $importNode = WebGUI::Asset->getImportNode($session);
|
|
isa_ok($importNode, 'WebGUI::Asset::Wobject::Folder');
|
|
is($importNode->getId, 'PBasset000000000000002', 'Import Node Asset ID check');
|
|
is($importNode->getParent->getId, $rootAsset->getId, 'Import Nodes parent is Root Asset');
|
|
|
|
# tempspace Constructor
|
|
|
|
my $tempNode = WebGUI::Asset->getTempspace($session);
|
|
isa_ok($tempNode, 'WebGUI::Asset::Wobject::Folder');
|
|
is($tempNode->getId, 'tempspace0000000000000', 'Tempspace Asset ID check');
|
|
is($tempNode->getParent->getId, $rootAsset->getId, 'Tempspace parent is Root Asset');
|
|
|
|
################################################################
|
|
#
|
|
# urlExists
|
|
#
|
|
################################################################
|
|
|
|
##We need an asset with a URL for this one.
|
|
|
|
my $importUrl = $importNode->get('url');
|
|
my $importId = $importNode->getId;
|
|
|
|
ok( WebGUI::Asset->urlExists($session, $importUrl), 'url for import node exists');
|
|
ok( WebGUI::Asset->urlExists($session, uc($importUrl)), 'url for import node exists, case insensitive');
|
|
ok( !WebGUI::Asset->urlExists($session, '/foo/bar/baz'), 'made up url does not exist');
|
|
|
|
ok( !WebGUI::Asset->urlExists($session, $importUrl, {assetId => $importId}), 'url for import node only exists at specific id');
|
|
ok( !WebGUI::Asset->urlExists($session, '/foo/bar/baz', {assetId => $importId}), 'imaginary url does not exist at specific id');
|
|
ok( WebGUI::Asset->urlExists($session, $importUrl, {assetId => 'notAnWebGUIId'}), 'imaginary url does not exist at wrong id');
|
|
|
|
################################################################
|
|
#
|
|
# getName
|
|
#
|
|
################################################################
|
|
|
|
my $i18n = WebGUI::International->new($session, 'Asset_Wobject');
|
|
is($importNode->getName, $i18n->get('assetName', 'Asset_Folder'), 'getName: Returns the internationalized name of the Asset, core Asset');
|
|
|
|
################################################################
|
|
#
|
|
# addEditLabel
|
|
#
|
|
################################################################
|
|
|
|
is($importNode->addEditLabel, $i18n->get('edit').' '.$importNode->getName, 'addEditLabel, default mode is edit mode');
|
|
|
|
$session->request->setup_param({ func => 'add' });
|
|
is($importNode->addEditLabel, $i18n->get('add').' '.$importNode->getName, 'addEditLabel, use add mode');
|
|
|
|
################################################################
|
|
#
|
|
# fixUrl
|
|
#
|
|
################################################################
|
|
|
|
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
|
addToCleanup($versionTag);
|
|
$versionTag->set({name=>"Asset tests"});
|
|
|
|
my $properties = {
|
|
# '1234567890123456789012'
|
|
id => 'fixUrlAsset00000000012',
|
|
title => 'fixUrl Asset Test',
|
|
className => 'WebGUI::Asset::Wobject::Folder',
|
|
url => 'fixUrlFolderURL2',
|
|
};
|
|
|
|
my $fixUrlAsset = $defaultAsset->addChild($properties, $properties->{id});
|
|
|
|
# '1234567890123456789012'
|
|
$properties->{id} = 'fixUrlAsset00000000013';
|
|
$properties->{url} = 'fixUrlFolderURL9';
|
|
|
|
my $fixUrlAsset2 = $defaultAsset->addChild($properties, $properties->{id});
|
|
|
|
# '1234567890123456789012'
|
|
$properties->{id} = 'fixUrlAsset00000000014';
|
|
$properties->{url} = 'fixUrlFolderURL00';
|
|
|
|
my $fixUrlAsset3 = $defaultAsset->addChild($properties, $properties->{id});
|
|
|
|
# '1234567890123456789012'
|
|
$properties->{id} = 'fixUrlAsset00000000015';
|
|
$properties->{url} = 'fixUrlFolderURL100';
|
|
|
|
my $fixUrlAsset4 = $defaultAsset->addChild($properties, $properties->{id});
|
|
is($fixUrlAsset4->get('url'), 'fixurlfolderurl100', 'asset setup correctly for 100->101 test');
|
|
|
|
delete $properties->{url};
|
|
# '1234567890123456789012'
|
|
$properties->{id} = 'fixUrlAsset00000000016';
|
|
$properties->{menuTitle} = 'fix url folder url autogenerated';
|
|
|
|
my $fixUrlAsset5 = $defaultAsset->addChild($properties, $properties->{id});
|
|
|
|
my $properties2 = {
|
|
# '1234567890123456789012'
|
|
id => 'fixTitleAsset000000010',
|
|
title => '',
|
|
className => 'WebGUI::Asset::Snippet',
|
|
url => 'fixTitleAsset1',
|
|
};
|
|
|
|
my $fixTitleAsset = $defaultAsset->addChild($properties2, $properties2->{id});
|
|
##Commit this asset right away
|
|
$fixTitleAsset->commit;
|
|
|
|
$properties2 = {
|
|
# '1234567890123456789012'
|
|
id => 'getTitleAsset000000010',
|
|
title => '',
|
|
className => 'WebGUI::Asset::Snippet',
|
|
url => 'getTitleAsset1',
|
|
};
|
|
|
|
my $getTitleAsset = $defaultAsset->addChild($properties2, $properties2->{id});
|
|
$getTitleAsset->commit;
|
|
|
|
$versionTag->commit;
|
|
|
|
$session->setting->set('urlExtension', undef);
|
|
|
|
is($importNode->fixUrl('1234'.'_'x235 . 'abcdefghij'), '1234'.'_'x235 . 'abcdefghij', 'fixUrl leaves long URLs under 250 characters alone');
|
|
is($importNode->fixUrl('1234'.'_'x250 . 'abcdefghij'), '1234'.'_'x216, 'fixUrl truncates long URLs over 250 characters to 220 characters');
|
|
is $importNode->fixUrl('---'), '-', '... 3 dashes are collapsed down to a single dash';
|
|
|
|
$session->config->set('extrasURL', '/extras');
|
|
$session->config->set('uploadsURL', '/uploads');
|
|
|
|
is($importNode->fixUrl('/extras'), '_extras', 'underscore prepended to URLs that match the extrasURL');
|
|
is($importNode->fixUrl('/uploads'), '_uploads', 'underscore prepended to URLs that match the uploadsURL');
|
|
|
|
#Now that we have verified that extrasURL and uploadsURL both work, just test one.
|
|
$session->config->set('extrasURL', '/extras1/');
|
|
is($importNode->fixUrl('/extras1'), '_extras1', 'trailing underscore in extrasURL does not defeat the check');
|
|
|
|
$session->config->set('extrasURL', 'http://mysite.com/extras2');
|
|
is($importNode->fixUrl('/extras2'), '_extras2', 'underscore prepended to URLs that match the extrasURL, even with http://');
|
|
|
|
##Now, check extension removal
|
|
|
|
is($importNode->fixUrl('one.html/two.html'), 'one/two.html', 'extensions are not allowed higher up in the path');
|
|
is($importNode->fixUrl('one.html/two.html/three.html'), 'one/two/three.html', 'extensions are not allowed anywhere in the path');
|
|
is($importNode->fixUrl('one.one.html/two.html/three.html'), 'one/two/three.html', 'multiple dot extensions are removed in any path element');
|
|
is($importNode->fixUrl('.startsWithDot'), '.startswithdot', 'leading dots are okay');
|
|
|
|
##Now, check duplicate URLs
|
|
|
|
is($importNode->fixUrl('/rootyRootRoot'), 'rootyrootroot', 'URLs are lowercased');
|
|
is($importNode->fixUrl('/root'), 'root2', 'If a node exists, appends a "2" to it');
|
|
my $importNodeURL = $importNode->getUrl;
|
|
$importNodeURL =~ s{ ^ / }{}x;
|
|
is($importNode->fixUrl($importNodeURL), $importNodeURL, q{fixing an asset's own URL returns it unchanged});
|
|
|
|
is($importNode->fixUrl('fixUrlFolderURL2'), 'fixurlfolderurl3', 'if a URL exists, fix it by incrementing any ending digits 2 -> 3');
|
|
is($importNode->fixUrl('fixUrlFolderURL9'), 'fixurlfolderurl10', 'increments past single digits 9 -> 10');
|
|
is($importNode->fixUrl('fixUrlFolderURL00'), 'fixurlfolderurl1', 'initial zeroes are not preserved 00 -> 1');
|
|
is($importNode->fixUrl('fixUrlFolderURL100'), 'fixurlfolderurl101', '100->101');
|
|
|
|
is($fixUrlAsset5->fixUrl(), 'home/fix-url-folder-url-autogenerated', 'fixUrl will autogenerate a url if not provided one');
|
|
|
|
# Automatic extension adding
|
|
$session->setting->set('urlExtension', 'html');
|
|
is($importNode->fixUrl('fixurl'), 'fixurl.html', 'Automatic adding of extensions works');
|
|
is($importNode->fixUrl('fixurl.css'), 'fixurl.css', 'extensions aren\'t automatically added if there is already and extension');
|
|
$session->setting->set('urlExtension', undef);
|
|
|
|
|
|
################################################################
|
|
#
|
|
# getTitle
|
|
# getMenuTitle
|
|
#
|
|
################################################################
|
|
|
|
my $getTitleAssetName = $getTitleAsset->getName();
|
|
|
|
foreach my $test (@getTitleTests) {
|
|
my $expectedTitle = $test->{assetName} ? $getTitleAssetName : $test->{title};
|
|
$getTitleAsset->update({
|
|
title => $test->{title},
|
|
menuTitle => $test->{title},
|
|
});
|
|
is($getTitleAsset->getTitle, $expectedTitle, $test->{comment});
|
|
is($getTitleAsset->getMenuTitle, $expectedTitle, $test->{comment});
|
|
}
|
|
|
|
################################################################
|
|
#
|
|
# getIcon
|
|
#
|
|
################################################################
|
|
|
|
like($importNode->getIcon, qr{folder.gif$}, 'getIcon gets correct icon for importNode');
|
|
like($importNode->getIcon(1), qr{small/folder.gif$}, 'getIcon gets small icon for importNode');
|
|
|
|
my $extras = $session->config->get('extrasURL');
|
|
|
|
like($importNode->getIcon(), qr{$extras}, 'getIcon returns an icon from the extras URL');
|
|
|
|
like($defaultAsset->getIcon, qr{layout.gif$}, 'getIcon gets icon for a layout');
|
|
like($fixTitleAsset->getIcon, qr{snippet.gif$}, 'getIcon gets icon for a snippet');
|
|
|
|
|
|
TODO: {
|
|
local $TODO = "Coverage test";
|
|
ok(0, "Test the default name for the icon, if not given in the definition sub");
|
|
}
|
|
|
|
################################################################
|
|
#
|
|
# addMissing
|
|
#
|
|
################################################################
|
|
|
|
$session->user({ userId => 3 });
|
|
$session->var->switchAdminOff;
|
|
is($rootAsset->addMissing('/nowhereMan'), undef, q{addMissing doesn't return anything unless user is in Admin Mode});
|
|
|
|
$session->var->switchAdminOn;
|
|
my $addMissing = $rootAsset->addMissing('/nowhereMan');
|
|
ok($addMissing, 'addMissing returns some output when in Admin Mode');
|
|
|
|
{
|
|
|
|
my $parser = HTML::TokeParser->new(\$addMissing);
|
|
my $link = $parser->get_tag('a');
|
|
my $url = $link->[1]{'href'} || '-';
|
|
like($url, qr{func=add;class=WebGUI::Asset::Wobject::Layout;url=/nowhereMan$}, 'addMissing: Link will add a new page asset with correct URL');
|
|
|
|
}
|
|
|
|
################################################################
|
|
#
|
|
# getContainer
|
|
#
|
|
################################################################
|
|
|
|
is($rootAsset->getContainer->getId, $rootAsset->getId, 'getContainer: A folder is a container, its container is itself');
|
|
is($fixTitleAsset->getContainer->getId, $defaultAsset->getId, 'getContainer: A snippet is not a container, its container is its parent');
|
|
|
|
################################################################
|
|
#
|
|
# getToolbarState
|
|
# toggleToolbar
|
|
#
|
|
################################################################
|
|
|
|
is($getTitleAsset->getToolbarState, undef, 'getToolbarState: default toolbar state is undef');
|
|
$getTitleAsset->toggleToolbar();
|
|
is($getTitleAsset->getToolbarState, 1, 'getToolbarState: toggleToolbarState toggled the state to 1');
|
|
$getTitleAsset->toggleToolbar();
|
|
is($getTitleAsset->getToolbarState, 0, 'getToolbarState: toggleToolbarState toggled the state to 0');
|
|
|
|
################################################################
|
|
#
|
|
# getUiLevel
|
|
#
|
|
################################################################
|
|
|
|
#is($canEditAsset->getUiLevel, 1, 'getUiLevel: WebGUI::Asset uses the default uiLevel of 1');
|
|
is($fixTitleAsset->getUiLevel, 5, 'getUiLevel: Snippet has an uiLevel of 5');
|
|
|
|
my $origAssetUiLevel = $session->config->get('assetUiLevel');
|
|
$session->config->set('assets/WebGUI::Asset/uiLevel', 8);
|
|
$session->config->set('assets/WebGUI::Asset::Snippet/uiLevel', 8);
|
|
|
|
#is($canEditAsset->getUiLevel, 8, 'getUiLevel: WebGUI::Asset has a configured uiLevel of 8');
|
|
is($fixTitleAsset->getUiLevel, 8, 'getUiLevel: Snippet has a configured uiLevel of 8');
|
|
|
|
|
|
$session->style->sent(0); ##Prevent extra output from being generated by session->style
|
|
##At some point, a test will need to tie STDOUT and make sure
|
|
##that the output is correct.
|
|
#isa_ok($canViewAsset->getEditForm, 'WebGUI::TabForm', 'getEditForm: Returns a tabForm');
|
|
|
|
################################################################
|
|
#
|
|
# getNotFound
|
|
#
|
|
################################################################
|
|
|
|
my $origNotFoundPage = $session->setting->get('notFoundPage');
|
|
|
|
$session->setting->set('notFoundPage', WebGUI::Asset->getDefault($session)->getId);
|
|
|
|
isa_ok(WebGUI::Asset->getNotFound($session), 'WebGUI::Asset', 'getNotFound: Returns an asset');
|
|
is(WebGUI::Asset->getNotFound($session)->getId, WebGUI::Asset->getDefault($session)->getId, 'getNotFound: Returns the correct asset');
|
|
|
|
$session->setting->set('notFoundPage', $fixTitleAsset->getId);
|
|
is(WebGUI::Asset->getNotFound($session)->getId, $fixTitleAsset->getId, 'getNotFound: Returns the correct asset on a different asset');
|
|
|
|
$session->setting->set('notFoundPage', $origNotFoundPage);
|
|
|
|
################################################################
|
|
#
|
|
# isExportable
|
|
#
|
|
################################################################
|
|
is($rootAsset->get('isExportable'), 1, 'isExportable exists, defaults to 1');
|
|
|
|
################################################################
|
|
#
|
|
# getSeparator
|
|
#
|
|
################################################################
|
|
note "getSeparator";
|
|
is($rootAsset->getSeparator, '~~~PBasset000000000000001~~~', '... known assetId');
|
|
is($rootAsset->getSeparator('!'), '!!!PBasset000000000000001!!!', '... given pad character');
|
|
isnt($rootAsset->getSeparator, $mediaFolder->getSeparator, '... unique string');
|
|
|
|
################################################################
|
|
#
|
|
# get
|
|
#
|
|
################################################################
|
|
note "get";
|
|
my $assetProps = $rootAsset->get();
|
|
my $funkyTitle = q{Miss Annie's Whoopie Emporium and Sasparilla Shop};
|
|
$assetProps->{title} = $funkyTitle;
|
|
|
|
isnt( $rootAsset->get('title'), $funkyTitle, 'get returns a safe copy of the Asset properties');
|
|
|
|
################################################################
|
|
#
|
|
# getIsa
|
|
#
|
|
################################################################
|
|
note "getIsa";
|
|
my $node = WebGUI::Asset->getRoot($session);
|
|
my $product1 = $node->addChild({ className => 'WebGUI::Asset::Sku::Product'}, undef, undef, { skipAutoCommitWorkflows => 1});
|
|
my $product2 = $node->addChild({ className => 'WebGUI::Asset::Sku::Product'}, undef, undef, { skipAutoCommitWorkflows => 1});
|
|
my $product3 = $node->addChild({ className => 'WebGUI::Asset::Sku::Product'}, undef, undef, { skipAutoCommitWorkflows => 1});
|
|
my $pTag = WebGUI::VersionTag->getWorking($session);
|
|
$pTag->commit;
|
|
addToCleanup($pTag);
|
|
my $product4 = $node->addChild({ className => 'WebGUI::Asset::Sku::Product'}, undef, undef, { skipAutoCommitWorkflows => 1});
|
|
addToCleanup($product4);
|
|
|
|
my $getAProduct = WebGUI::Asset::Sku::Product->getIsa($session);
|
|
isa_ok($getAProduct, 'CODE');
|
|
my $counter = 0;
|
|
my $productIds = [];
|
|
while( my $product = $getAProduct->()) {
|
|
++$counter;
|
|
push @{ $productIds }, $product->getId;
|
|
}
|
|
is($counter, 3, 'getIsa: returned only 3 Products');
|
|
cmp_bag($productIds, [$product1->getId, $product2->getId, $product3->getId], 'getIsa returned the correct 3 products');
|
|
|
|
my $getASku = WebGUI::Asset::Sku->getIsa($session);
|
|
$counter = 0;
|
|
my $skuIds = [];
|
|
while( my $sku = $getASku->()) {
|
|
++$counter;
|
|
push @{ $skuIds }, $sku->getId;
|
|
}
|
|
is($counter, 3, 'getIsa: returned only 3 Products for a parent class');
|
|
cmp_bag($skuIds, [$product1->getId, $product2->getId, $product3->getId], 'getIsa returned the correct 3 products for a parent class');
|
|
|
|
my $getAnotherSku = WebGUI::Asset::Sku->getIsa($session, 0, { returnAll => 1, });
|
|
$counter = 0;
|
|
while( my $sku = $getAnotherSku->()) {
|
|
++$counter;
|
|
}
|
|
is($counter, 4, 'getIsa: returned all 4 skus with returnAll => 1');
|
|
|
|
$product1->purge;
|
|
$product2->purge;
|
|
$product3->purge;
|
|
$product4->purge;
|
|
|
|
################################################################
|
|
#
|
|
# inheritUrlFromParent
|
|
#
|
|
################################################################
|
|
note "inheritUrlFromParent";
|
|
|
|
my $versionTag4 = WebGUI::VersionTag->getWorking($session);
|
|
addToCleanup($versionTag4);
|
|
$versionTag4->set( { name => 'inheritUrlFromParent tests' } );
|
|
|
|
$properties = {
|
|
# '1234567890123456789012'
|
|
id => 'inheritUrlFromParent01',
|
|
title => 'inheritUrlFromParent01',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'inheriturlfromparent01',
|
|
};
|
|
|
|
my $iufpAsset = $defaultAsset->addChild($properties, $properties->{id});
|
|
$iufpAsset->commit;
|
|
|
|
$properties2 = {
|
|
# '1234567890123456789012'
|
|
id => 'inheritUrlFromParent02',
|
|
title => 'inheritUrlFromParent02',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'inheriturlfromparent02',
|
|
};
|
|
|
|
my $iufpAsset2 = $iufpAsset->addChild($properties2, $properties2->{id});
|
|
$iufpAsset2->update( { inheritUrlFromParent => 1 } );
|
|
is $iufpAsset2->inheritUrlFromParent, 1, 'inheritUrlFromParent set';
|
|
$iufpAsset2->commit;
|
|
is($iufpAsset2->url, 'inheriturlfromparent01/inheriturlfromparent02', 'inheritUrlFromParent works');
|
|
|
|
my $properties2a = {
|
|
# '1234567890123456789012'
|
|
id => 'inheritUrlFromParent2a',
|
|
title => 'inheritUrlFromParent2a',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'inheriturlfromparent2a',
|
|
inheritUrlFromParent => 1,
|
|
};
|
|
|
|
my $iufpAsset2a = $iufpAsset->addChild($properties2a, $properties2a->{id});
|
|
$iufpAsset2a->commit;
|
|
is($iufpAsset2a->url, 'inheriturlfromparent01/inheriturlfromparent2a', '... works when created with the property');
|
|
|
|
# works for setting, now try disabling. Should not change the URL.
|
|
$iufpAsset2->update( { inheritUrlFromParent => 0 } );
|
|
$iufpAsset2->commit;
|
|
is($iufpAsset2->url, 'inheriturlfromparent01/inheriturlfromparent02', '... setting inheritUrlFromParent to 0 works');
|
|
|
|
# also make sure that it is actually disabled
|
|
is($iufpAsset2->get('inheritUrlFromParent'), 0, "... disabling inheritUrlFromParent actually works");
|
|
|
|
# works for setting and disabling, now ensure it recurses
|
|
|
|
my $properties3 = {
|
|
# '1234567890123456789012'
|
|
id => 'inheritUrlFromParent03',
|
|
title => 'inheritUrlFromParent03',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'inheriturlfromparent03',
|
|
};
|
|
my $iufpAsset3 = $iufpAsset2->addChild($properties3, $properties3->{id});
|
|
$iufpAsset3->commit;
|
|
$iufpAsset2->update( { inheritUrlFromParent => 1 } );
|
|
$iufpAsset2->commit;
|
|
$iufpAsset3->update( { inheritUrlFromParent => 1 } );
|
|
$iufpAsset3->commit;
|
|
is($iufpAsset3->url, 'inheriturlfromparent01/inheriturlfromparent02/inheriturlfromparent03', '... recurses properly');
|
|
|
|
$iufpAsset2->update({url => 'iufp2'});
|
|
is($iufpAsset2->url, 'inheriturlfromparent01/iufp2', '... update works propertly when iUFP is not passed');
|
|
|
|
|
|
################################################################
|
|
#
|
|
# addRevision to uncommitted child of uncommitted parent
|
|
#
|
|
################################################################
|
|
|
|
my $versionTag5 = WebGUI::VersionTag->getWorking($session);
|
|
$versionTag5->set( { name => 'move revision of uncommitted child to uncommitted parent tests vt1' } );
|
|
|
|
$properties = {
|
|
|
|
# '1234567890123456789012'
|
|
id => 'moveVersionToParent_01',
|
|
title => 'moveVersionToParent_01',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'moveVersionToParent_01',
|
|
};
|
|
|
|
my $parentAsset = $defaultAsset->addChild( $properties, $properties->{id}, undef, { skipAutoCommitWorkflows => 1 } );
|
|
my $parentVersionTag = WebGUI::VersionTag->new($session, $parentAsset->tagId);
|
|
is( $parentVersionTag->get('isCommitted'), 0, 'built non-committed parent asset' );
|
|
|
|
|
|
my $versionTag6 = WebGUI::VersionTag->create( $session, {} );
|
|
$versionTag6->set( { name => 'move revision of uncommitted child to uncommitted parent tests vt2' } );
|
|
$versionTag6->setWorking;
|
|
|
|
$properties2 = {
|
|
|
|
# '1234567890123456789012'
|
|
id => 'moveVersionToParent_03',
|
|
title => 'moveVersionToParent_03',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'moveVersionToParent_03',
|
|
};
|
|
|
|
my $childAsset = $parentAsset->addChild(
|
|
$properties2, $properties2->{id},
|
|
time(),
|
|
{ skipAutoCommitWorkflows => 1 }
|
|
);
|
|
my $testAsset = WebGUI::Asset->newPending( $session, $childAsset->parentId );
|
|
my $testVersionTag = WebGUI::VersionTag->new( $session, $testAsset->tagId );
|
|
|
|
my $childVersionTag;
|
|
$childVersionTag = WebGUI::VersionTag->new( $session, $childAsset->tagId );
|
|
is( $childVersionTag->get('isCommitted'), 0, 'built non-committed child asset' );
|
|
|
|
is( $testAsset->tagId,
|
|
$childAsset->tagId,
|
|
'uncommitted parent asset and uncommitted child asset have same version tag at addChild'
|
|
);
|
|
|
|
$properties2 = {
|
|
|
|
# '1234567890123456789012'
|
|
id => 'moveVersionToParent_03',
|
|
title => 'moveVersionToParent_03a',
|
|
className => 'WebGUI::Asset::Wobject::Layout',
|
|
url => 'moveVersionToParent_03a',
|
|
};
|
|
sleep 2;
|
|
$childAsset->addRevision( $properties2, time(), { skipAutoCommitWorkflows => 1 } );
|
|
|
|
is( $parentVersionTag->get('isCommitted'), 0, 'confimr non-committed parent asset after revision' );
|
|
is( $childVersionTag->get('isCommitted'), 0, 'confirm non-committed child asset after revision' );
|
|
|
|
is( $testAsset->get('tagId'),
|
|
$childAsset->get('tagId'),
|
|
'uncommitted parent asset and uncommitted child asset have same version tag after addRevision'
|
|
);
|
|
|
|
eval { $testVersionTag->commit; };
|
|
|
|
$session->log->warn('parent asset is now committed');
|
|
is( $testVersionTag->get('isCommitted'), 1, 'parent asset is now committed' );
|
|
|
|
$childVersionTag = WebGUI::VersionTag->new( $session, $childAsset->get('tagId') );
|
|
is( $childVersionTag->get('isCommitted'), 1, 'child asset is now committed' );
|
|
|
|
################################################################
|
|
#
|
|
# cloneFromDb
|
|
#
|
|
################################################################
|
|
|
|
my $assetToCommit = $defaultAsset->addChild({ className => 'WebGUI::Asset::Snippet', title => 'Snippet to commit and clone from db', });
|
|
my $cloneTag = WebGUI::VersionTag->getWorking($session);
|
|
addToCleanup($cloneTag);
|
|
$cloneTag->commit;
|
|
is($assetToCommit->get('status'), 'pending', 'cloneFromDb: local asset is still pending');
|
|
$assetToCommit = $assetToCommit->cloneFromDb;
|
|
is($assetToCommit->get('status'), 'approved', '... returns fresh, commited asset from the db');
|
|
|
|
################################################################
|
|
#
|
|
# checkView
|
|
#
|
|
################################################################
|
|
|
|
my $trashedAsset = $defaultAsset->addChild({
|
|
className => 'WebGUI::Asset::Snippet', title => 'Trashy',
|
|
});
|
|
|
|
my $clippedAsset = $defaultAsset->addChild({
|
|
className => 'WebGUI::Asset::Snippet', title => 'Clippy',
|
|
});
|
|
|
|
my $checkTag = WebGUI::VersionTag->getWorking($session);
|
|
$checkTag->commit;
|
|
addToCleanup($checkTag);
|
|
$trashedAsset = $trashedAsset->cloneFromDb;
|
|
$clippedAsset = $clippedAsset->cloneFromDb;
|
|
$trashedAsset->trash;
|
|
$clippedAsset->cut;
|
|
is $trashedAsset->get('state'), 'trash', 'checkView setup: trashed an asset';
|
|
is $clippedAsset->get('state'), 'clipboard', '... clipped an asset';
|
|
|
|
$session->var->switchAdminOff;
|
|
$session->http->setRedirectLocation('');
|
|
$session->http->setStatus(200, 'OK');
|
|
|
|
$trashedAsset->checkView();
|
|
is $session->http->getStatus, 410, '... status set to 410 for trashed asset';
|
|
is $session->http->getRedirectLocation, '', '... no redirect set';
|
|
|
|
$session->http->setStatus(200, 'OK');
|
|
$clippedAsset->checkView();
|
|
is $session->http->getStatus, 410, '... status set to 410 for cut asset';
|
|
is $session->http->getRedirectLocation, '', '... no redirect set';
|
|
|
|
$session->var->switchAdminOn;
|
|
$session->http->setStatus(200, 'OK');
|
|
is $trashedAsset->checkView(), 'chunked', '... returns "chunked" when admin is on for trashed asset';
|
|
is $session->http->getRedirectLocation, $trashedAsset->getUrl('func=manageTrash'), '... trashed asset sets redirect to manageTrash';
|
|
|
|
$session->http->setRedirectLocation('');
|
|
is $clippedAsset->checkView(), 'chunked', 'checkView: returns "chunked" when admin is on for cut asset';
|
|
is $session->http->getRedirectLocation, $clippedAsset->getUrl('func=manageClipboard'), '... cut asset sets redirect to manageClipboard';
|
|
|
|
##Return an array of hashrefs. Each hashref describes a test
|
|
|
|
##Return an array of hashrefs. Each hashref describes a test
|
|
##for the getTitle and getMenuTitle tests. If "assetName" != 0, they
|
|
##will return the Asset's internationalized name.
|
|
|
|
sub getTitleTests {
|
|
my $session = shift;
|
|
return ({
|
|
title => undef,
|
|
assetName => 1,
|
|
comment => "getTitle: undef returns the Asset's name",
|
|
},
|
|
{
|
|
title => '',
|
|
assetName => 1,
|
|
comment => "getTitle: null string returns the Asset's name",
|
|
},
|
|
{
|
|
title => 'untitled',
|
|
assetName => 1,
|
|
comment => "getTitle: 'untitled' returns the Asset's name",
|
|
},
|
|
{
|
|
title => 'UnTiTlEd',
|
|
assetName => 1,
|
|
comment => "getTitle: 'untitled' in any case returns the Asset's title",
|
|
},
|
|
{
|
|
title => 'This is a good Title',
|
|
assetName => 0,
|
|
comment => "getTitle: Good titles are passed",
|
|
},
|
|
);
|
|
}
|