88 lines
2.8 KiB
Perl
88 lines
2.8 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 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;
|
|
use WebGUI::Macro::Callback;
|
|
|
|
#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;
|
|
|
|
my $session = WebGUI::Test->session;
|
|
my $lib = WebGUI::Test->lib;
|
|
|
|
## Remove all macros but International, and set them to call WebGUI::Macro::Callback
|
|
WebGUI::Test->originalConfig('macros');
|
|
my $originalMacros = $session->config->get('macros');
|
|
my $configFileMacros = {};
|
|
for my $macro (keys %$originalMacros) {
|
|
if ($originalMacros->{$macro} eq 'International') {
|
|
$configFileMacros->{$macro} = 'Callback';
|
|
}
|
|
}
|
|
$session->config->set('macros', $configFileMacros);
|
|
|
|
# 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,
|
|
};
|
|
}
|
|
WebGUI::Macro::Callback::setCallback(sub {
|
|
my ($session, $label, $namespace) = @_;
|
|
push @templateLabels, {
|
|
label => $label,
|
|
namespace => $namespace,
|
|
url => $templateAsset->getUrl,
|
|
id => $templateAsset->getId,
|
|
title => $templateAsset->getTitle,
|
|
};
|
|
});
|
|
WebGUI::Macro::process($session, \$template);
|
|
}
|
|
|
|
$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/}
|
|
);
|
|
}
|