Add copy with descendants.
This commit is contained in:
parent
2ea377b87d
commit
39ffaba487
4 changed files with 143 additions and 2 deletions
|
|
@ -34,8 +34,7 @@ These methods are available from this class:
|
||||||
|
|
||||||
=head2 duplicate ( $class, $asset )
|
=head2 duplicate ( $class, $asset )
|
||||||
|
|
||||||
Duplicates the asset. Extracted out so that it can be subclassed by copy with children,
|
Duplicates the asset with children,
|
||||||
and copy with descendants.
|
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|
|
||||||
58
lib/WebGUI/AssetHelper/Copy/WithDescendants.pm
Normal file
58
lib/WebGUI/AssetHelper/Copy/WithDescendants.pm
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
package WebGUI::AssetHelper::Copy::WithDescendants;
|
||||||
|
|
||||||
|
use strict;
|
||||||
|
use Class::C3;
|
||||||
|
use base qw/WebGUI::AssetHelper::Copy/;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head1 NAME
|
||||||
|
|
||||||
|
Package WebGUI::AssetHelper::Copy::WithDescendants
|
||||||
|
|
||||||
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
Copy an Asset to the Clipboard, with all descendants.
|
||||||
|
|
||||||
|
=head1 METHODS
|
||||||
|
|
||||||
|
These methods are available from this class:
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head2 duplicate ( $class, $asset )
|
||||||
|
|
||||||
|
Duplicates the asset with descendants.
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub duplicate {
|
||||||
|
my ($class, $asset) = @_;
|
||||||
|
return $asset->duplicateBranch();
|
||||||
|
}
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head2 getMessage ( )
|
||||||
|
|
||||||
|
Returns the name of the i18n message to use
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub getMessage {
|
||||||
|
return 'copied asset with descendants';
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
@ -1388,6 +1388,12 @@ Couldn't open %-s because %-s <br />
|
||||||
context => q{%s will be replaced by the title of the asset.},
|
context => q{%s will be replaced by the title of the asset.},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'copied asset with descendants' => {
|
||||||
|
message => q{Asset %s was copied to the clipboard with all descendants.},
|
||||||
|
lastUpdated => 0,
|
||||||
|
context => q{%s will be replaced by the title of the asset.},
|
||||||
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
|
||||||
78
t/AssetHelper/Copy/WithDescendants.t
Normal file
78
t/AssetHelper/Copy/WithDescendants.t
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
# 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::Copy::WithDescendants;
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# 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);
|
||||||
|
my $root = WebGUI::Asset->getRoot($session);
|
||||||
|
|
||||||
|
$session->user({userId => 3});
|
||||||
|
|
||||||
|
{
|
||||||
|
|
||||||
|
$output = WebGUI::AssetHelper::Copy::WithDescendants->process($home);
|
||||||
|
cmp_deeply(
|
||||||
|
$output,
|
||||||
|
{
|
||||||
|
message => re('was copied to the clipboard with all descendants'),
|
||||||
|
},
|
||||||
|
'AssetHelper/Copy/WithDescendants redirects the back to the copied asset'
|
||||||
|
);
|
||||||
|
|
||||||
|
my $clippies = $root->getLineage(["descendants"], {statesToInclude => [qw{clipboard clipboard-limbo}], returnObjects => 1,});
|
||||||
|
is @{ $clippies }, 27, '... only copied the asset to the clipboard with children';
|
||||||
|
addToCleanup(@{ $clippies });
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
$session->setting->set('skipCommitComments', 0);
|
||||||
|
|
||||||
|
$output = WebGUI::AssetHelper::Copy::WithDescendants->process($home);
|
||||||
|
cmp_deeply(
|
||||||
|
$output,
|
||||||
|
{
|
||||||
|
message => re('was copied to the clipboard with all descendants'),
|
||||||
|
open_tab => re('^'.$home->getUrl),
|
||||||
|
},
|
||||||
|
'AssetHelper/Copy/WithDescendants opens a tab for commit comments'
|
||||||
|
);
|
||||||
|
|
||||||
|
my $clippies = $home->getAssetsInClipboard();
|
||||||
|
addToCleanup(@{ $clippies });
|
||||||
|
}
|
||||||
|
|
||||||
|
#vim:ft=perl
|
||||||
Loading…
Add table
Add a link
Reference in a new issue