Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
6ec23a5e
Commit
6ec23a5e
authored
8 years ago
by
Hanne Moa
Browse files
Options
Downloads
Patches
Plain Diff
Test module \SimpleSAML\Locale\Localization
parent
e72501a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/SimpleSAML/Locale/Localization.php
+11
-1
11 additions, 1 deletion
lib/SimpleSAML/Locale/Localization.php
tests/lib/SimpleSAML/Locale/LocalizationTest.php
+87
-0
87 additions, 0 deletions
tests/lib/SimpleSAML/Locale/LocalizationTest.php
with
98 additions
and
1 deletion
lib/SimpleSAML/Locale/Localization.php
+
11
−
1
View file @
6ec23a5e
...
@@ -42,6 +42,16 @@ class Localization
...
@@ -42,6 +42,16 @@ class Localization
*/
*/
private
$localeDomainMap
=
array
();
private
$localeDomainMap
=
array
();
/*
* Pointer to currently active translator
*/
private
$translator
;
/*
* Currently active domain
*/
private
$currentDomain
;
/**
/**
* Constructor
* Constructor
...
@@ -75,7 +85,7 @@ class Localization
...
@@ -75,7 +85,7 @@ class Localization
* @param string $localeDir Location of translations
* @param string $localeDir Location of translations
* @param string $domain Domain at location
* @param string $domain Domain at location
*/
*/
p
rivate
function
addDomain
(
$localeDir
,
$domain
)
p
ublic
function
addDomain
(
$localeDir
,
$domain
)
{
{
$this
->
localeDomainMap
[
$domain
]
=
$localeDir
;
$this
->
localeDomainMap
[
$domain
]
=
$localeDir
;
}
}
...
...
This diff is collapsed.
Click to expand it.
tests/lib/SimpleSAML/Locale/LocalizationTest.php
0 → 100644
+
87
−
0
View file @
6ec23a5e
<?php
namespace
SimpleSAML\Test\Locale
;
use
Gettext\Translations
;
use
Gettext\Translator
;
use
SimpleSAML\Locale\Localization
;
class
LocalizationTest
extends
\PHPUnit_Framework_TestCase
{
/**
* Test SimpleSAML\Locale\Localization().
*/
public
function
testLocalization
()
{
// The constructor should activate the default domain
$c
=
\SimpleSAML_Configuration
::
loadFromArray
(
array
(
'language.i18n.backend'
=>
'twig.gettextgettext'
)
);
$l
=
new
Localization
(
$c
);
$this
->
assertTrue
(
$l
->
isI18NBackendDefault
());
$this
->
assertEquals
(
Localization
::
DEFAULT_DOMAIN
,
'ssp'
);
$this
->
assertEquals
(
$l
->
getCurrentDomain
(),
Localization
::
DEFAULT_DOMAIN
);
}
/**
* Test SimpleSAML\Locale\Localization::activateDomain().
*/
public
function
testAddDomain
()
{
$c
=
\SimpleSAML_Configuration
::
loadFromArray
(
array
(
'language.i18n.backend'
=>
'twig.gettextgettext'
)
);
$l
=
new
Localization
(
$c
);
$newDomain
=
'test'
;
$newDomainLocaleDir
=
'/tmp/nonexistent.po'
;
$l
->
addDomain
(
$newDomainLocaleDir
,
$newDomain
);
$registeredDomains
=
$l
->
getRegisteredDomains
();
$this
->
assertArrayHasKey
(
$newDomain
,
$registeredDomains
);
$this
->
assertEquals
(
$registeredDomains
[
$newDomain
],
$newDomainLocaleDir
);
}
/**
* Test SimpleSAML\Locale\Localization::activateDomain().
*/
public
function
testActivateDomain
()
{
// Add the domain to activate
$c
=
\SimpleSAML_Configuration
::
loadFromArray
(
array
(
'language.i18n.backend'
=>
'twig.gettextgettext'
)
);
$l
=
new
Localization
(
$c
);
$newDomain
=
'test'
;
$newDomainLocaleDir
=
$l
->
getLocaleDir
();
$l
->
addDomain
(
$newDomainLocaleDir
,
$newDomain
);
// Activate
$l
->
activateDomain
(
$newDomain
);
$curDomain
=
$l
->
getCurrentDomain
();
$this
->
assertEquals
(
$curDomain
,
$newDomain
);
}
/**
* Test SimpleSAML\Locale\Localization::restoreDefaultDomain().
*/
public
function
testRestoreDefaultDomain
()
{
// Add the domain to reset from
$c
=
\SimpleSAML_Configuration
::
loadFromArray
(
array
(
'language.i18n.backend'
=>
'twig.gettextgettext'
)
);
$l
=
new
Localization
(
$c
);
$newDomain
=
'ssp'
;
$newDomainLocaleDir
=
$l
->
getLocaleDir
();
$l
->
addDomain
(
$newDomainLocaleDir
,
$newDomain
);
$l
->
activateDomain
(
$newDomain
);
// Reset
$l
->
restoreDefaultDomain
();
# $curDomain = $l->getCurrentDomain();
# $this->assertEquals($curDomain, Localization::DEFAULT_DOMAIN);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment