class PhpTransliterationTest in Zircon Profile 8
Same name in this branch
- 8 core/tests/Drupal/Tests/Core/Transliteration/PhpTransliterationTest.php \Drupal\Tests\Core\Transliteration\PhpTransliterationTest
- 8 core/tests/Drupal/Tests/Component/Transliteration/PhpTransliterationTest.php \Drupal\Tests\Component\Transliteration\PhpTransliterationTest
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Transliteration/PhpTransliterationTest.php \Drupal\Tests\Core\Transliteration\PhpTransliterationTest
Tests Transliteration component functionality.
@group Transliteration
@coversClass \Drupal\Core\Transliteration\PhpTransliteration
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Transliteration\PhpTransliterationTest
Expanded class hierarchy of PhpTransliterationTest
File
- core/
tests/ Drupal/ Tests/ Core/ Transliteration/ PhpTransliterationTest.php, line 21 - Contains \Drupal\Tests\Core\Transliteration\PhpTransliterationTest.
Namespace
Drupal\Tests\Core\TransliterationView source
class PhpTransliterationTest extends UnitTestCase {
/**
* Tests the PhpTransliteration with an alter hook.
*
* @param string $langcode
* The langcode of the string.
* @param string $original
* The string which was not transliterated yet.
* @param string $expected
* The string expected after the transliteration.
* @param string|NULL $printable
* (optional) An alternative version of the original string which is
* printable in the output.
*
* @dataProvider providerTestPhpTransliterationWithAlter
*/
public function testPhpTransliterationWithAlter($langcode, $original, $expected, $printable = NULL) {
if ($printable === NULL) {
$printable = $original;
}
// Test each case both with a new instance of the transliteration class,
// and with one that builds as it goes.
$module_handler = $this
->getMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$module_handler
->expects($this
->any())
->method('alter')
->will($this
->returnCallback(function ($hook, &$overrides, $langcode) {
if ($langcode == 'zz') {
// The default transliteration of Ä is A, but change it to Z for testing.
$overrides[0xc4] = 'Z';
// Also provide transliterations of two 5-byte characters from
// http://en.wikipedia.org/wiki/Gothic_alphabet.
$overrides[0x10330] = 'A';
$overrides[0x10338] = 'Th';
}
}));
$transliteration = new PhpTransliteration(NULL, $module_handler);
$actual = $transliteration
->transliterate($original, $langcode);
$this
->assertSame($expected, $actual, "'{$printable}' transliteration to '{$actual}' is identical to '{$expected}' for language '{$langcode}' in service instance.");
}
/**
* Provides test data for testPhpTransliterationWithAlter.
*
* @return array
*/
public function providerTestPhpTransliterationWithAlter() {
$random_generator = new Random();
$random = $random_generator
->string(10);
// Make some strings with two, three, and four-byte characters for testing.
// Note that the 3-byte character is overridden by the 'kg' language.
$two_byte = 'Ä Ö Ü Å Ø äöüåøhello';
// These are two Gothic alphabet letters. See
// http://en.wikipedia.org/wiki/Gothic_alphabet
// They are not in our tables, but should at least give us '?' (unknown).
$five_byte = html_entity_decode('𐌰𐌸', ENT_NOQUOTES, 'UTF-8');
// Five-byte characters do not work in MySQL, so make a printable version.
$five_byte_printable = '𐌰𐌸';
$cases = array(
// Test the language override hook in the test module, which changes
// the transliteration of Ä to Z and provides for the 5-byte characters.
array(
'zz',
$two_byte,
'Z O U A O aouaohello',
),
array(
'zz',
$random,
$random,
),
array(
'zz',
$five_byte,
'ATh',
$five_byte_printable,
),
);
return $cases;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpTransliterationTest:: |
public | function | Provides test data for testPhpTransliterationWithAlter. | |
PhpTransliterationTest:: |
public | function | Tests the PhpTransliteration with an alter hook. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |