Conflicts: docs/gotcha.txt lib/WebGUI.pm lib/WebGUI/Asset.pm lib/WebGUI/Asset/File/GalleryFile/Photo.pm lib/WebGUI/Asset/Post.pm lib/WebGUI/Asset/Story.pm lib/WebGUI/Asset/Template.pm lib/WebGUI/Asset/Wobject/Calendar.pm lib/WebGUI/Asset/Wobject/GalleryAlbum.pm lib/WebGUI/Asset/Wobject/Navigation.pm lib/WebGUI/AssetLineage.pm lib/WebGUI/AssetTrash.pm lib/WebGUI/Config.pm lib/WebGUI/Form/Template.pm lib/WebGUI/Group.pm lib/WebGUI/Inbox.pm lib/WebGUI/Workflow/Activity/DeleteExpiredSessions.pm lib/WebGUI/Workflow/Activity/TrashExpiredEvents.pm sbin/testEnvironment.pl t/AdSpace.t t/AdSpace/Ad.t t/Asset/Asset.t t/Asset/AssetExportHtml.t t/Asset/AssetLineage.t t/Asset/EMSSubmissionForm.t t/Asset/Event.t t/Asset/File/GalleryFile/Photo/00base.t t/Asset/File/GalleryFile/Photo/comment.t t/Asset/File/GalleryFile/Photo/download.t t/Asset/File/GalleryFile/Photo/edit.t t/Asset/File/GalleryFile/Photo/exif.t t/Asset/File/GalleryFile/Photo/makeResolutions.t t/Asset/File/GalleryFile/Photo/makeShortcut.t t/Asset/File/Image/setfile.t t/Asset/File/setfile.t t/Asset/Post.t t/Asset/Post/Thread/getAdjacentThread.t t/Asset/Sku.t t/Asset/Sku/ProductCollateral.t t/Asset/Story.t t/Asset/Template.t t/Asset/Template/HTMLTemplateExpr.t t/Asset/Wobject/Gallery/00base.t t/Asset/Wobject/GalleryAlbum/00base.t t/Asset/Wobject/GalleryAlbum/ajax.t t/Asset/Wobject/GalleryAlbum/delete.t t/Asset/Wobject/Matrix.t t/Asset/Wobject/StoryArchive.t t/Asset/Wobject/Survey/ExpressionEngine.t t/Asset/Wobject/Survey/Reports.t t/AssetAspect/RssFeed.t t/Auth/mech.t t/Config.t t/Group.t t/Help/isa.t t/International.t t/Mail/Send.t t/Operation/AdSpace.t t/Operation/Auth.t t/Pluggable.t t/Session.t t/Session/DateTime.t t/Session/ErrorHandler.t t/Session/Scratch.t t/Session/Stow.t t/Shop/Cart.t t/Shop/Pay.t t/Shop/PayDriver/ITransact.t t/Shop/PayDriver/PayPalStd.t t/Shop/Ship.t t/Shop/ShipDriver.t t/Shop/TaxDriver/EU.t t/Shop/TaxDriver/Generic.t t/Shop/Transaction.t t/Shop/Vendor.t t/VersionTag.t t/Workflow/Activity/ArchiveOldStories.t t/Workflow/Activity/ExpireIncompleteSurveyResponses.t t/lib/WebGUI/Test.pm
126 lines
4.8 KiB
Perl
126 lines
4.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 lib "$FindBin::Bin/lib";
|
|
use WebGUI::Test;
|
|
use WebGUI::Session;
|
|
use Test::More; # increment this value for each test you create
|
|
use File::Copy;
|
|
use File::Spec;
|
|
use WebGUI::Content::SetLanguage;
|
|
|
|
my $session = WebGUI::Test->session;
|
|
|
|
my $numTests = 1; ##For conditional load check
|
|
my $langTests = 4; ##For language look-up tests
|
|
$numTests += 20 + $langTests;
|
|
|
|
plan tests => $numTests;
|
|
|
|
my $loaded = use_ok('WebGUI::International');
|
|
|
|
SKIP: {
|
|
|
|
skip 'Module was not loaded, skipping all tests', $numTests-1 unless $loaded;
|
|
|
|
my $i18n = WebGUI::International->new($session, undef, 'English');
|
|
|
|
isa_ok($i18n, 'WebGUI::International', 'object of correct type created');
|
|
|
|
is($i18n->getNamespace(), 'WebGUI', 'getNamespace: default namespace is undef');
|
|
is($i18n->get('topicName'), 'WebGUI', 'get: get English label for topicName with default namespace: WebGUI');
|
|
|
|
$i18n->setNamespace('WebGUI');
|
|
is($i18n->getNamespace(), 'WebGUI', 'getNamespace: set namespace to WebGUI');
|
|
is($i18n->get('topicName'), 'WebGUI', 'get: get English label for topicName: WebGUI');
|
|
is($i18n->get('84'), 'Group Name', 'get: get English label for 84: Group Name');
|
|
|
|
$i18n->setNamespace('Asset');
|
|
is($i18n->getNamespace(), 'Asset', 'getNamespace: set namespace to Asset');
|
|
is($i18n->get('topicName'), 'Assets', 'get: get English label for topicName in Asset: Assets');
|
|
is($i18n->get('topicName', 'WebGUI'), 'WebGUI', 'get: test manual namespace override');
|
|
|
|
installPigLatin();
|
|
WebGUI::Test->addToCleanup(sub {
|
|
unlink File::Spec->catfile(WebGUI::Test->lib, qw/WebGUI i18n PigLatin WebGUI.pm/);
|
|
unlink File::Spec->catfile(WebGUI::Test->lib, qw/WebGUI i18n PigLatin.pm/);
|
|
rmdir File::Spec->catdir(WebGUI::Test->lib, qw/WebGUI i18n PigLatin/);
|
|
});
|
|
|
|
#tests for sub new
|
|
my $i18nNew1 = WebGUI::International->new($session);
|
|
is($i18nNew1->{_language}, 'English', 'Calling new without parameters should return object with language English');
|
|
is($i18nNew1->{_namespace}, 'WebGUI', 'Calling without parameters should give namespace WebgUI');
|
|
my $i18nNew2 = WebGUI::International->new($session, 'WebGUI::Asset');
|
|
is($i18nNew2->{_language}, 'English', 'Calling new with only namespace parameter should return object with language English');
|
|
is($i18nNew2->{_namespace}, 'WebGUI::Asset', 'Calling with only parameter namespace should give requested namespace');
|
|
my $i18nNew3 = WebGUI::International->new($session, undef , 'PigLatin');
|
|
is($i18nNew3->{_language}, 'PigLatin', 'Calling new with only language parameter should return object with language PigLatin');
|
|
is($i18nNew3->{_namespace}, 'WebGUI', 'Calling with only parameter namespace should give WebGUI ');
|
|
my $languages = $i18n->getLanguages();
|
|
|
|
my $gotPigLatin = exists $languages->{PigLatin};
|
|
|
|
SKIP: {
|
|
skip 'No PigLatin language pack for testing', $langTests unless $gotPigLatin;
|
|
is(
|
|
$i18n->get('account','WebGUI','English'),
|
|
$i18n->get('account','WebGUI','PigLatin'),
|
|
'Language check: missing key returns English key'
|
|
);
|
|
is(
|
|
$i18n->get('webgui','WebGUI','PigLatin'),
|
|
'ebGUIWay',
|
|
'Language check: existing key returns native language key'
|
|
);
|
|
is(
|
|
$i18n->get('104','Asset','PigLatin'),
|
|
$i18n->get('104', 'WebGUI', 'English'),
|
|
'Language check: key from missing file return English key'
|
|
);
|
|
is(
|
|
$i18n->get('neverAValidKey','notAValidFile','PigLatin'),
|
|
undef,
|
|
'Language check: key from non-existant file returns an empty string'
|
|
);
|
|
is(
|
|
$i18n->get('key with spaces in it','WebGUI','PigLatin'),
|
|
'Key Contained Spaces',
|
|
'keys with spaces work'
|
|
);
|
|
|
|
}
|
|
|
|
is($i18n->getLanguage('English', 'label'), 'English', 'getLanguage, specific property');
|
|
|
|
isa_ok($i18n->getLanguage('English'), 'HASH', 'getLanguage, without a specific property returns a hashref');
|
|
|
|
#test for sub new with language overridden by scratch
|
|
my $formvariables = {
|
|
'op' =>'setLanguage',
|
|
'language' => 'PigLatin'
|
|
};
|
|
$session->request->setup_body($formvariables);
|
|
WebGUI::Content::SetLanguage::handler($session);
|
|
my $newi18n = WebGUI::International->new($session);
|
|
is(
|
|
$newi18n->get('webgui','WebGUI','PigLatin'),
|
|
'ebGUIWay',
|
|
'if the piglatin language is in the scratch that messages should be retrieved'
|
|
);
|
|
is(
|
|
$newi18n->get('104','Asset','PigLatin'),
|
|
$newi18n->get('104', 'WebGUI', 'English'),
|
|
'Language check after SetLanguage contentHandler : key from missing file return English key'
|
|
);
|
|
|
|
#vim:ft=perl
|