AbstractRegionDataProviderTest.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Intl\Tests\Data\Provider;
  11. use Symfony\Component\Intl\Data\Provider\RegionDataProvider;
  12. use Symfony\Component\Intl\Intl;
  13. use Symfony\Component\Intl\Locale;
  14. /**
  15. * @author Bernhard Schussek <bschussek@gmail.com>
  16. */
  17. abstract class AbstractRegionDataProviderTest extends AbstractDataProviderTest
  18. {
  19. // The below arrays document the state of the ICU data bundled with this package.
  20. protected static $territories = array(
  21. 'AC',
  22. 'AD',
  23. 'AE',
  24. 'AF',
  25. 'AG',
  26. 'AI',
  27. 'AL',
  28. 'AM',
  29. 'AN',
  30. 'AO',
  31. 'AQ',
  32. 'AR',
  33. 'AS',
  34. 'AT',
  35. 'AU',
  36. 'AW',
  37. 'AX',
  38. 'AZ',
  39. 'BA',
  40. 'BB',
  41. 'BD',
  42. 'BE',
  43. 'BF',
  44. 'BG',
  45. 'BH',
  46. 'BI',
  47. 'BJ',
  48. 'BL',
  49. 'BM',
  50. 'BN',
  51. 'BO',
  52. 'BQ',
  53. 'BR',
  54. 'BS',
  55. 'BT',
  56. 'BV',
  57. 'BW',
  58. 'BY',
  59. 'BZ',
  60. 'CA',
  61. 'CC',
  62. 'CD',
  63. 'CF',
  64. 'CG',
  65. 'CH',
  66. 'CI',
  67. 'CK',
  68. 'CL',
  69. 'CM',
  70. 'CN',
  71. 'CO',
  72. 'CP',
  73. 'CR',
  74. 'CU',
  75. 'CV',
  76. 'CW',
  77. 'CX',
  78. 'CY',
  79. 'CZ',
  80. 'DE',
  81. 'DG',
  82. 'DJ',
  83. 'DK',
  84. 'DM',
  85. 'DO',
  86. 'DZ',
  87. 'EA',
  88. 'EC',
  89. 'EE',
  90. 'EG',
  91. 'EH',
  92. 'ER',
  93. 'ES',
  94. 'ET',
  95. 'EU',
  96. 'FI',
  97. 'FJ',
  98. 'FK',
  99. 'FM',
  100. 'FO',
  101. 'FR',
  102. 'GA',
  103. 'GB',
  104. 'GD',
  105. 'GE',
  106. 'GF',
  107. 'GG',
  108. 'GH',
  109. 'GI',
  110. 'GL',
  111. 'GM',
  112. 'GN',
  113. 'GP',
  114. 'GQ',
  115. 'GR',
  116. 'GS',
  117. 'GT',
  118. 'GU',
  119. 'GW',
  120. 'GY',
  121. 'HK',
  122. 'HM',
  123. 'HN',
  124. 'HR',
  125. 'HT',
  126. 'HU',
  127. 'IC',
  128. 'ID',
  129. 'IE',
  130. 'IL',
  131. 'IM',
  132. 'IN',
  133. 'IO',
  134. 'IQ',
  135. 'IR',
  136. 'IS',
  137. 'IT',
  138. 'JE',
  139. 'JM',
  140. 'JO',
  141. 'JP',
  142. 'KE',
  143. 'KG',
  144. 'KH',
  145. 'KI',
  146. 'KM',
  147. 'KN',
  148. 'KP',
  149. 'KR',
  150. 'KW',
  151. 'KY',
  152. 'KZ',
  153. 'LA',
  154. 'LB',
  155. 'LC',
  156. 'LI',
  157. 'LK',
  158. 'LR',
  159. 'LS',
  160. 'LT',
  161. 'LU',
  162. 'LV',
  163. 'LY',
  164. 'MA',
  165. 'MC',
  166. 'MD',
  167. 'ME',
  168. 'MF',
  169. 'MG',
  170. 'MH',
  171. 'MK',
  172. 'ML',
  173. 'MM',
  174. 'MN',
  175. 'MO',
  176. 'MP',
  177. 'MQ',
  178. 'MR',
  179. 'MS',
  180. 'MT',
  181. 'MU',
  182. 'MV',
  183. 'MW',
  184. 'MX',
  185. 'MY',
  186. 'MZ',
  187. 'NA',
  188. 'NC',
  189. 'NE',
  190. 'NF',
  191. 'NG',
  192. 'NI',
  193. 'NL',
  194. 'NO',
  195. 'NP',
  196. 'NR',
  197. 'NU',
  198. 'NZ',
  199. 'OM',
  200. 'PA',
  201. 'PE',
  202. 'PF',
  203. 'PG',
  204. 'PH',
  205. 'PK',
  206. 'PL',
  207. 'PM',
  208. 'PN',
  209. 'PR',
  210. 'PS',
  211. 'PT',
  212. 'PW',
  213. 'PY',
  214. 'QA',
  215. 'RE',
  216. 'RO',
  217. 'RS',
  218. 'RU',
  219. 'RW',
  220. 'SA',
  221. 'SB',
  222. 'SC',
  223. 'SD',
  224. 'SE',
  225. 'SG',
  226. 'SH',
  227. 'SI',
  228. 'SJ',
  229. 'SK',
  230. 'SL',
  231. 'SM',
  232. 'SN',
  233. 'SO',
  234. 'SR',
  235. 'SS',
  236. 'ST',
  237. 'SV',
  238. 'SX',
  239. 'SY',
  240. 'SZ',
  241. 'TA',
  242. 'TC',
  243. 'TD',
  244. 'TF',
  245. 'TG',
  246. 'TH',
  247. 'TJ',
  248. 'TK',
  249. 'TL',
  250. 'TM',
  251. 'TN',
  252. 'TO',
  253. 'TR',
  254. 'TT',
  255. 'TV',
  256. 'TW',
  257. 'TZ',
  258. 'UA',
  259. 'UG',
  260. 'UM',
  261. 'US',
  262. 'UY',
  263. 'UZ',
  264. 'VA',
  265. 'VC',
  266. 'VE',
  267. 'VG',
  268. 'VI',
  269. 'VN',
  270. 'VU',
  271. 'WF',
  272. 'WS',
  273. 'XK',
  274. 'YE',
  275. 'YT',
  276. 'ZA',
  277. 'ZM',
  278. 'ZW',
  279. );
  280. /**
  281. * @var RegionDataProvider
  282. */
  283. protected $dataProvider;
  284. protected function setUp()
  285. {
  286. parent::setUp();
  287. $this->dataProvider = new RegionDataProvider(
  288. $this->getDataDirectory().'/'.Intl::REGION_DIR,
  289. $this->createEntryReader()
  290. );
  291. }
  292. abstract protected function getDataDirectory();
  293. public function testGetRegions()
  294. {
  295. $this->assertSame(static::$territories, $this->dataProvider->getRegions());
  296. }
  297. /**
  298. * @dataProvider provideLocales
  299. */
  300. public function testGetNames($displayLocale)
  301. {
  302. $countries = array_keys($this->dataProvider->getNames($displayLocale));
  303. sort($countries);
  304. $this->assertSame(static::$territories, $countries);
  305. }
  306. public function testGetNamesDefaultLocale()
  307. {
  308. Locale::setDefault('de_AT');
  309. $this->assertSame(
  310. $this->dataProvider->getNames('de_AT'),
  311. $this->dataProvider->getNames()
  312. );
  313. }
  314. /**
  315. * @dataProvider provideLocaleAliases
  316. */
  317. public function testGetNamesSupportsAliases($alias, $ofLocale)
  318. {
  319. // Can't use assertSame(), because some aliases contain scripts with
  320. // different collation (=order of output) than their aliased locale
  321. // e.g. sr_Latn_ME => sr_ME
  322. $this->assertEquals(
  323. $this->dataProvider->getNames($ofLocale),
  324. $this->dataProvider->getNames($alias)
  325. );
  326. }
  327. /**
  328. * @dataProvider provideLocales
  329. */
  330. public function testGetName($displayLocale)
  331. {
  332. $names = $this->dataProvider->getNames($displayLocale);
  333. foreach ($names as $country => $name) {
  334. $this->assertSame($name, $this->dataProvider->getName($country, $displayLocale));
  335. }
  336. }
  337. }