Test for the printable macro. This macro DOES NOT test changing the style, only
the text generated by the macro.
This commit is contained in:
parent
e3ae42aa1a
commit
54d2d687e8
1 changed files with 156 additions and 0 deletions
156
t/Macro/r_printable.t
Normal file
156
t/Macro/r_printable.t
Normal file
|
|
@ -0,0 +1,156 @@
|
|||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001-2006 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::Macro::r_printable;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::International;
|
||||
use Data::Dumper;
|
||||
|
||||
use Test::More; # increment this value for each test you create
|
||||
use HTML::TokeParser;
|
||||
|
||||
my $session = WebGUI::Test->session;
|
||||
|
||||
my $homeAsset = WebGUI::Asset->getDefault($session);
|
||||
$session->asset($homeAsset);
|
||||
my ($versionTag, $template) = setupTest($session, $homeAsset);
|
||||
|
||||
my $i18n = WebGUI::International->new($session, 'Macro_r_printable');
|
||||
|
||||
my @testSets = (
|
||||
{
|
||||
comment => 'Linkonly test',
|
||||
text => 'linkonly',
|
||||
styleId => '',
|
||||
template => '',
|
||||
output => $session->url->page('op=makePrintable').';',
|
||||
},
|
||||
{
|
||||
comment => 'Empty macro call returns i18n label and url',
|
||||
text => '',
|
||||
styleId => '',
|
||||
template => '',
|
||||
output => \&simpleHTMLParser,
|
||||
},
|
||||
{
|
||||
comment => 'Text passed in shows up as a label',
|
||||
text => 'Print me!',
|
||||
styleId => '',
|
||||
template => '',
|
||||
output => \&simpleHTMLParser,
|
||||
},
|
||||
{
|
||||
comment => 'Custom styleId shows up in url',
|
||||
text => '',
|
||||
styleId => 'dddd0000DDDDAAAA--____',
|
||||
template => '',
|
||||
output => \&simpleHTMLParser,
|
||||
},
|
||||
{
|
||||
comment => 'Custom styleId and text',
|
||||
text => 'Print this?',
|
||||
styleId => 'dddd0000DDDDAAAA--____',
|
||||
template => '',
|
||||
output => \&simpleHTMLParser,
|
||||
},
|
||||
{
|
||||
comment => 'Custom template',
|
||||
text => '',
|
||||
styleId => '',
|
||||
template => $template->get('url'),
|
||||
output => \&simpleTextParser,
|
||||
},
|
||||
{
|
||||
comment => 'Custom text, styleId, template',
|
||||
text => 'Remove all the stupid graphics',
|
||||
styleId => 'absurdely-Long-AssetId',
|
||||
template => $template->get('url'),
|
||||
output => \&simpleTextParser,
|
||||
},
|
||||
);
|
||||
|
||||
my $numTests = 0;
|
||||
|
||||
foreach my $testSet (@testSets) {
|
||||
$numTests += 1 + (ref $testSet->{output} eq 'CODE');
|
||||
}
|
||||
|
||||
plan tests => $numTests;
|
||||
|
||||
foreach my $testSet (@testSets) {
|
||||
my $output = WebGUI::Macro::r_printable::process($session, $testSet->{text}, $testSet->{styleId}, $testSet->{template});
|
||||
if (ref $testSet->{output} eq 'CODE') {
|
||||
my ($url, $text) = $testSet->{output}->($output);
|
||||
|
||||
my $expectedText = $testSet->{text} ? $testSet->{text} : $i18n->get(53);
|
||||
is($text, $expectedText, 'TEXT: '.$testSet->{comment});
|
||||
|
||||
my $expectedUrl = $session->url->page('op=makePrintable').';';
|
||||
if ($testSet->{styleId}) {
|
||||
$expectedUrl = $session->url->append($expectedUrl, 'styleId='.$testSet->{styleId});
|
||||
}
|
||||
is($url, $expectedUrl, 'URL: '.$testSet->{comment});
|
||||
}
|
||||
else {
|
||||
is($output, $testSet->{output}, $testSet->{comment});
|
||||
}
|
||||
}
|
||||
|
||||
sub setupTest {
|
||||
my ($session, $defaultNode) = @_;
|
||||
|
||||
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
||||
$versionTag->set({name=>"r_printable test"});
|
||||
my $properties = {
|
||||
title => 'printable test template',
|
||||
className => 'WebGUI::Asset::Template',
|
||||
url => 'printable-test',
|
||||
namespace => 'Macro/r_printable',
|
||||
template => "HREF=<tmpl_var printable.url>\nLABEL=<tmpl_var printable.text>",
|
||||
# '1234567890123456789012'
|
||||
id => 'printable01100Template',
|
||||
};
|
||||
my $asset = $defaultNode->addChild($properties, $properties->{id});
|
||||
$versionTag->commit;
|
||||
|
||||
return $versionTag, $asset;
|
||||
}
|
||||
|
||||
sub simpleHTMLParser {
|
||||
my ($text) = @_;
|
||||
my $p = HTML::TokeParser->new(\$text);
|
||||
|
||||
my $token = $p->get_tag("a");
|
||||
my $url = $token->[1]{href} || "-";
|
||||
my $label = $p->get_trimmed_text("/a");
|
||||
|
||||
return ($url, $label);
|
||||
}
|
||||
|
||||
sub simpleTextParser {
|
||||
my ($text) = @_;
|
||||
|
||||
my ($url) = $text =~ /^HREF=(.+)$/m;
|
||||
my ($label) = $text =~ /^LABEL=(.+)$/m;
|
||||
|
||||
return ($url, $label);
|
||||
}
|
||||
|
||||
|
||||
END { ##Clean-up after yourself, always
|
||||
if (defined $versionTag and ref $versionTag eq 'WebGUI::VersionTag') {
|
||||
$versionTag->rollback;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue