MediaWiki  1.33.0
LanguageCodeTest.php
Go to the documentation of this file.
1 <?php
2 
9 class LanguageCodeTest extends PHPUnit\Framework\TestCase {
10 
11  use MediaWikiCoversValidator;
12 
13  public function testConstructor() {
14  $instance = new LanguageCode();
15 
16  $this->assertInstanceOf( LanguageCode::class, $instance );
17  }
18 
19  public function testGetDeprecatedCodeMapping() {
21 
22  $this->assertInternalType( 'array', $map );
23  $this->assertContainsOnly( 'string', array_keys( $map ) );
24  $this->assertArrayNotHasKey( '', $map );
25  $this->assertContainsOnly( 'string', $map );
26  $this->assertNotContains( '', $map );
27 
28  // Codes special to MediaWiki should never appear in a map of "deprecated" codes
29  $this->assertArrayNotHasKey( 'qqq', $map, 'documentation' );
30  $this->assertNotContains( 'qqq', $map, 'documentation' );
31  $this->assertArrayNotHasKey( 'qqx', $map, 'debug code' );
32  $this->assertNotContains( 'qqx', $map, 'debug code' );
33 
34  // Valid language codes that are currently not "deprecated"
35  $this->assertArrayNotHasKey( 'bh', $map, 'family of Bihari languages' );
36  $this->assertArrayNotHasKey( 'no', $map, 'family of Norwegian languages' );
37  $this->assertArrayNotHasKey( 'simple', $map );
38  }
39 
40  public function testReplaceDeprecatedCodes() {
41  $this->assertEquals( 'gsw', LanguageCode::replaceDeprecatedCodes( 'als' ) );
42  $this->assertEquals( 'gsw', LanguageCode::replaceDeprecatedCodes( 'gsw' ) );
43  $this->assertEquals( null, LanguageCode::replaceDeprecatedCodes( null ) );
44  }
45 
56  public function testBcp47( $code, $expected ) {
57  $this->assertEquals( $expected, LanguageCode::bcp47( $code ),
58  "Applying BCP 47 standard to '$code'"
59  );
60 
61  $code = strtolower( $code );
62  $this->assertEquals( $expected, LanguageCode::bcp47( $code ),
63  "Applying BCP 47 standard to lower case '$code'"
64  );
65 
66  $code = strtoupper( $code );
67  $this->assertEquals( $expected, LanguageCode::bcp47( $code ),
68  "Applying BCP 47 standard to upper case '$code'"
69  );
70  }
71 
75  public static function provideLanguageCodes() {
76  return [
77  // Extracted from BCP 47 (list not exhaustive)
78  # 2.1.1
79  [ 'en-ca-x-ca', 'en-CA-x-ca' ],
80  [ 'sgn-be-fr', 'sgn-BE-FR' ],
81  [ 'az-latn-x-latn', 'az-Latn-x-latn' ],
82  # 2.2
83  [ 'sr-Latn-RS', 'sr-Latn-RS' ],
84  [ 'az-arab-ir', 'az-Arab-IR' ],
85 
86  # 2.2.5
87  [ 'sl-nedis', 'sl-nedis' ],
88  [ 'de-ch-1996', 'de-CH-1996' ],
89 
90  # 2.2.6
91  [
92  'en-latn-gb-boont-r-extended-sequence-x-private',
93  'en-Latn-GB-boont-r-extended-sequence-x-private'
94  ],
95 
96  // Examples from BCP 47 Appendix A
97  # Simple language subtag:
98  [ 'DE', 'de' ],
99  [ 'fR', 'fr' ],
100  [ 'ja', 'ja' ],
101 
102  # Language subtag plus script subtag:
103  [ 'zh-hans', 'zh-Hans' ],
104  [ 'sr-cyrl', 'sr-Cyrl' ],
105  [ 'sr-latn', 'sr-Latn' ],
106 
107  # Extended language subtags and their primary language subtag
108  # counterparts:
109  [ 'zh-cmn-hans-cn', 'zh-cmn-Hans-CN' ],
110  [ 'cmn-hans-cn', 'cmn-Hans-CN' ],
111  [ 'zh-yue-hk', 'zh-yue-HK' ],
112  [ 'yue-hk', 'yue-HK' ],
113 
114  # Language-Script-Region:
115  [ 'zh-hans-cn', 'zh-Hans-CN' ],
116  [ 'sr-latn-RS', 'sr-Latn-RS' ],
117 
118  # Language-Variant:
119  [ 'sl-rozaj', 'sl-rozaj' ],
120  [ 'sl-rozaj-biske', 'sl-rozaj-biske' ],
121  [ 'sl-nedis', 'sl-nedis' ],
122 
123  # Language-Region-Variant:
124  [ 'de-ch-1901', 'de-CH-1901' ],
125  [ 'sl-it-nedis', 'sl-IT-nedis' ],
126 
127  # Language-Script-Region-Variant:
128  [ 'hy-latn-it-arevela', 'hy-Latn-IT-arevela' ],
129 
130  # Language-Region:
131  [ 'de-de', 'de-DE' ],
132  [ 'en-us', 'en-US' ],
133  [ 'es-419', 'es-419' ],
134 
135  # Private use subtags:
136  [ 'de-ch-x-phonebk', 'de-CH-x-phonebk' ],
137  [ 'az-arab-x-aze-derbend', 'az-Arab-x-aze-derbend' ],
146  # Private use registry values:
147  [ 'x-whatever', 'x-whatever' ],
148  [ 'qaa-qaaa-qm-x-southern', 'qaa-Qaaa-QM-x-southern' ],
149  [ 'de-qaaa', 'de-Qaaa' ],
150  [ 'sr-latn-qm', 'sr-Latn-QM' ],
151  [ 'sr-qaaa-rs', 'sr-Qaaa-RS' ],
152 
153  # Tags that use extensions
154  [ 'en-us-u-islamcal', 'en-US-u-islamcal' ],
155  [ 'zh-cn-a-myext-x-private', 'zh-CN-a-myext-x-private' ],
156  [ 'en-a-myext-b-another', 'en-a-myext-b-another' ],
157 
158  # Invalid:
159  // de-419-DE
160  // a-DE
161  // ar-a-aaa-b-bbb-a-ccc
162 
163  # Non-standard and deprecated language codes used by MediaWiki
164  [ 'als', 'gsw' ],
165  [ 'bat-smg', 'sgs' ],
166  [ 'be-x-old', 'be-tarask' ],
167  [ 'fiu-vro', 'vro' ],
168  [ 'roa-rup', 'rup' ],
169  [ 'zh-classical', 'lzh' ],
170  [ 'zh-min-nan', 'nan' ],
171  [ 'zh-yue', 'yue' ],
172  [ 'cbk-zam', 'cbk' ],
173  [ 'de-formal', 'de-x-formal' ],
174  [ 'eml', 'egl' ],
175  [ 'en-rtl', 'en-x-rtl' ],
176  [ 'es-formal', 'es-x-formal' ],
177  [ 'hu-formal', 'hu-x-formal' ],
178  [ 'kk-Arab', 'kk-Arab' ],
179  [ 'kk-Cyrl', 'kk-Cyrl' ],
180  [ 'kk-Latn', 'kk-Latn' ],
181  [ 'map-bms', 'jv-x-bms' ],
182  [ 'mo', 'ro-Cyrl-MD' ],
183  [ 'nrm', 'nrf' ],
184  [ 'nl-informal', 'nl-x-informal' ],
185  [ 'roa-tara', 'nap-x-tara' ],
186  [ 'simple', 'en-simple' ],
187  [ 'sr-ec', 'sr-Cyrl' ],
188  [ 'sr-el', 'sr-Latn' ],
189  [ 'zh-cn', 'zh-Hans-CN' ],
190  [ 'zh-sg', 'zh-Hans-SG' ],
191  [ 'zh-my', 'zh-Hans-MY' ],
192  [ 'zh-tw', 'zh-Hant-TW' ],
193  [ 'zh-hk', 'zh-Hant-HK' ],
194  [ 'zh-mo', 'zh-Hant-MO' ],
195  [ 'zh-hans', 'zh-Hans' ],
196  [ 'zh-hant', 'zh-Hant' ],
197  ];
198  }
199 
200 }
LanguageCode\replaceDeprecatedCodes
static replaceDeprecatedCodes( $code)
Replace deprecated language codes that were used in previous versions of MediaWiki to up-to-date,...
Definition: LanguageCode.php:165
LanguageCode\getDeprecatedCodeMapping
static getDeprecatedCodeMapping()
Returns a mapping of deprecated language codes that were used in previous versions of MediaWiki to up...
Definition: LanguageCode.php:128
LanguageCodeTest
LanguageCode Language.
Definition: LanguageCodeTest.php:9
LanguageCodeTest\testReplaceDeprecatedCodes
testReplaceDeprecatedCodes()
Definition: LanguageCodeTest.php:40
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:780
LanguageCodeTest\testGetDeprecatedCodeMapping
testGetDeprecatedCodeMapping()
Definition: LanguageCodeTest.php:19
LanguageCodeTest\provideLanguageCodes
static provideLanguageCodes()
Array format is ($code, $expected)
Definition: LanguageCodeTest.php:75
LanguageCodeTest\testBcp47
testBcp47( $code, $expected)
test
Definition: LanguageCodeTest.php:56
LanguageCode\bcp47
static bcp47( $code)
Get the normalised IETF language tag See unit test for examples.
Definition: LanguageCode.php:179
LanguageCodeTest\testConstructor
testConstructor()
Definition: LanguageCodeTest.php:13
LanguageCode
Methods for dealing with language codes.
Definition: LanguageCode.php:29
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52