97 lines
3.2 KiB
Perl
97 lines
3.2 KiB
Perl
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2007 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 warnings;
|
|
use lib "$FindBin::Bin/../lib"; ##t/lib
|
|
|
|
use WebGUI::Test;
|
|
use WebGUI::Operation::Help;
|
|
use WebGUI::International;
|
|
use WebGUI::Session;
|
|
use Data::Dumper;
|
|
use WebGUI::Asset::Template;
|
|
|
|
#The goal of this test is to locate all of the international labels that it
|
|
#can and verify that they exist in all loaded language models
|
|
|
|
use Test::More; # increment this value for each test you create
|
|
my $numTests = 0;
|
|
plan skip_all => 'set CODE_COP to enable this test' unless $ENV{CODE_COP};
|
|
|
|
my $session = WebGUI::Test->session;
|
|
my $lib = WebGUI::Test->lib;
|
|
|
|
##Find the name of the International macro in the user's config file.
|
|
my $configFileMacros = $session->config->get('macros');
|
|
my %macroNameLookup = reverse %{ $configFileMacros };
|
|
my $international;
|
|
$international = (exists $macroNameLookup{'International'}) ? $macroNameLookup{'International'} : 'International';
|
|
|
|
#diag "International macro name = $international";
|
|
|
|
##Regexp setup for parsing out the Macro calls.
|
|
my $bareword = qr/([^,)]+)/; ##Anything that's not a comma
|
|
my $quotelike = qr/((['])([^'\s\$]+\s*)+([']))/;
|
|
my $sub_args = qr/(($quotelike|$bareword)(?:,\s*)?)+/; ##Don't really need spaces
|
|
my $macro = qr/
|
|
\^$international
|
|
\( ##Opening paren
|
|
($sub_args)
|
|
\); ##Closing paren and semicolon
|
|
/xo;
|
|
|
|
# put your tests here
|
|
|
|
my $getATemplate = WebGUI::Asset::Template->getIsa($session);
|
|
|
|
my @templateLabels;
|
|
my @questionableTemplates;
|
|
|
|
while (my $templateAsset = $getATemplate->()) {
|
|
my $template = $templateAsset->get('template');
|
|
if (!$template) {
|
|
push @questionableTemplates, {
|
|
url => $templateAsset->getUrl,
|
|
id => $templateAsset->getId,
|
|
title => $templateAsset->getTitle,
|
|
};
|
|
}
|
|
while ($template =~ /$macro/msgc) {
|
|
my ($label, $namespace) = split /,/, $1;
|
|
$label =~ tr/'//d;
|
|
$namespace =~ tr/'//d;
|
|
push @templateLabels, {
|
|
label => $label,
|
|
namespace => $namespace,
|
|
url => $templateAsset->getUrl,
|
|
id => $templateAsset->getId,
|
|
title => $templateAsset->getTitle,
|
|
};
|
|
}
|
|
}
|
|
|
|
$numTests = scalar @templateLabels + scalar @questionableTemplates;
|
|
|
|
plan tests => $numTests;
|
|
|
|
my $i18n = WebGUI::International->new($session);
|
|
|
|
foreach my $label ( @templateLabels ) {
|
|
ok($i18n->get(@{ $label }{qw(label namespace )} ),
|
|
sprintf "label: %s->%s inside %s, id: %s, url: %s", @{ $label }{qw/namespace label title id url/});
|
|
}
|
|
|
|
foreach my $label ( @questionableTemplates ) {
|
|
fail(
|
|
sprintf "Empty template: %s, id: %s, url: %s", @{ $label }{qw/title id url/}
|
|
);
|
|
}
|