ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LanguageTagTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Tests\Data;
22 
26 
27 class LanguageTagTest extends TestCase
28 {
29  public function testFromString(): void
30  {
31  $tag = LanguageTag::fromString('de');
32  $this->assertInstanceOf(LanguageTag::class, $tag);
33  }
34 
38  public function testParse(string $input, bool $isOk): void
39  {
40  if (!$isOk) {
41  $this->expectException(NotOKException::class);
42  }
43  $tag = LanguageTag::fromString($input);
44  $this->assertInstanceOf(LanguageTag::class, $tag);
45  }
46 
50  public function testRisky(string $input, bool $isOk): void
51  {
52  $this->testParse($input, $isOk);
53  }
54 
59  public static function saveToRun(): array
60  {
61  return [
62  ['de', true],
63  ['d$', false],
64  ['aa-111', true],
65  ['aa-b1b1b', true],
66  ['aa-bb', true],
67  ['aa-bbb-ccc-ddd', true],
68  ['aa-bbb', true],
69  ['aa-bbbb-cc', true],
70  ['aa-bbbb', true],
71  ['aa-x-1234ab-d', true],
72  ['aa', true],
73  ['aaa-bbb-ccc', true],
74  ['aaaa', true],
75  ['aaaaa', true],
76  ['aaaaaa', true],
77  ['aaaaaaa', true],
78  ['aaaaaaaa', true],
79  ['afb', true],
80  ['ar-afb', true],
81  ['art-lojban', true],
82  ['ast', true],
83  ['az-Latn', true],
84  ['cel-gaulish', true],
85  ['cmn-Hans-CN', true],
86  ['de-CH-1901', true],
87  ['de-DE', true],
88  ['de-Qaaa', true],
89  ['de', true],
90  ['en-GB-oed', true],
91  ['en-US-x-twain', true],
92  ['en-US', true],
93  ['en', true],
94  ['es-005', true],
95  ['es-419', true],
96  ['fr-CA', true],
97  ['fr', true],
98  ['hak', true],
99  ['i-ami', true],
100  ['i-bnn', true],
101  ['i-default', true],
102  ['i-enochian', true],
103  ['i-hak', true],
104  ['i-klingon', true],
105  ['i-lux', true],
106  ['i-mingo', true],
107  ['i-navajo', true],
108  ['i-pwn', true],
109  ['i-tao', true],
110  ['i-tay', true],
111  ['i-tsu', true],
112  ['ja', true],
113  ['mas', true],
114  ['no-bok', true],
115  ['no-nyn', true],
116  ['sgn-BE-FR', true],
117  ['sgn-BE-NL', true],
118  ['sgn-CH-DE', true],
119  ['sl-IT-nedis', true],
120  ['sl-nedis', true],
121  ['sl-rozaj-biske', true],
122  ['sl-rozaj', true],
123  ['sr-Cyrl', true],
124  ['sr-Latn-QM', true],
125  ['sr-Latn-RS', true],
126  ['sr-Latn', true],
127  ['sr-Qaaa-RS', true],
128  ['x-111-aaaaa-BBB', true],
129  ['x-whatever', true],
130  ['yue-HK', true],
131  ['zh-Hans-CN', true],
132  ['zh-Hans', true],
133  ['zh-Hant-HK', true],
134  ['zh-Hant', true],
135  ['zh-cmn-Hans-CN', true],
136  ['zh-guoyu', true],
137  ['zh-hakka', true],
138  ['zh-min-nan', true],
139  ['zh-min', true],
140  ['zh-xiang', true],
141  ['zh-yue-HK', true],
142  ['zh-yue', true],
143  ];
144  }
145 
149  public static function risky(): array
150  {
151  if (function_exists('xdebug_info') && ((int) ini_get('xdebug.max_nesting_level')) < 780) {
152  self::markTestSkipped(sprintf(
153  'You are running under Xdebug. To be able to run all tests xdebug.max_nesting_level must be at least 780 (Currently %d).',
154  (int) ini_get('xdebug.max_nesting_level')
155  ));
156  }
157 
158  return [
159  ['aa-bbb-ccc-1111-ccccc-b1b1b', true],
160  ['aaa-bbb-ccc-ddd-abcd-123-abc123-0abc-b-01-abc123-x-01ab-abc12', true],
161  ['az-Arab-x-AZE-derbend', true],
162  ['de-CH-x-phonebk', true],
163  ['de-DE-u-co-phonebk', true],
164  ['en-US-u-islamcal', true],
165  ['en-a-myext-b-another', true],
166  ['hy-Latn-IT-arevela', true],
167  ['qaa-Qaaa-QM-x-southern', true],
168  ['aa-7-123abc-abc-a-12', true],
169  ['aa-b1b1b-6a8b-cccccc', true],
170  ['zh-CN-a-myext-x-private', true],
171  ];
172  }
173 }
static fromString(string $string)
Definition: LanguageTag.php:48
testRisky(string $input, bool $isOk)
risky
testParse(string $input, bool $isOk)
saveToRun