* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Intl\Tests\Data\Util; use PHPUnit\Framework\TestCase; use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Intl\Data\Util\LocaleScanner; /** * @author Bernhard Schussek */ class LocaleScannerTest extends TestCase { private $directory; /** * @var Filesystem */ private $filesystem; /** * @var LocaleScanner */ private $scanner; protected function setUp() { $this->directory = sys_get_temp_dir().'/LocaleScannerTest/'.mt_rand(1000, 9999); $this->filesystem = new Filesystem(); $this->scanner = new LocaleScanner(); $this->filesystem->mkdir($this->directory); $this->filesystem->touch($this->directory.'/en.txt'); $this->filesystem->touch($this->directory.'/en_alias.txt'); $this->filesystem->touch($this->directory.'/de.txt'); $this->filesystem->touch($this->directory.'/de_alias.txt'); $this->filesystem->touch($this->directory.'/fr.txt'); $this->filesystem->touch($this->directory.'/fr_alias.txt'); $this->filesystem->touch($this->directory.'/root.txt'); $this->filesystem->touch($this->directory.'/supplementalData.txt'); $this->filesystem->touch($this->directory.'/supplementaldata.txt'); $this->filesystem->touch($this->directory.'/meta.txt'); file_put_contents($this->directory.'/en_alias.txt', 'en_alias{"%%ALIAS"{"en"}}'); file_put_contents($this->directory.'/de_alias.txt', 'de_alias{"%%ALIAS"{"de"}}'); file_put_contents($this->directory.'/fr_alias.txt', 'fr_alias{"%%ALIAS"{"fr"}}'); } protected function tearDown() { $this->filesystem->remove($this->directory); } public function testScanLocales() { $sortedLocales = array('de', 'de_alias', 'en', 'en_alias', 'fr', 'fr_alias'); $this->assertSame($sortedLocales, $this->scanner->scanLocales($this->directory)); } public function testScanAliases() { $sortedAliases = array('de_alias' => 'de', 'en_alias' => 'en', 'fr_alias' => 'fr'); $this->assertSame($sortedAliases, $this->scanner->scanAliases($this->directory)); } } __halt_compiler();----SIGNATURE:----XDh85MrpDGEIqf/3FATjQG1wPqLc49l+gYSVfpp/T1Z1PnH5FQL5LkUzopAz0Kb0KYd8I9IKhal0xPSnyBRCI+3dhWtdZygmx/STsr82fqO1KFsT3oPRYRk0wlwR1e/gaBCP2YakIdyt5aNgF7WwQrP0/tlVMBBetv+FN9gEBvb8wIP+4EagxG/46xQXmfT/oDKtyyVOoaU6O6ZRL6AemVmiXBFPR4T7wZcEGABmHUgvZDBCNi0hsQisdoJB8fkLx2I9lg3CCVclx4KEMSQ8Ni9MTezFlxwA5pUvJcKm3stZZsnyNOh1/VcQgOrDFm4mTETxXeGdrv1pxstIpjVR043p8CNTDviISAfd8pcUsYeycFz76I6MOCo/zdyBCfQvfeDCGPyv1dh3cJ6FiGiA/YovxsPSU5khW5vULLT6OTkMS1cSupH2FYOL6qm+J/ZO0eb2T94Gz9LHIMsnIlDm5U2XPF8pEGODEqETIdbEjn2Evfjzmu7svIig1opHfFxUoFJS7dI+K9JZlXdnDj7GfV7CK/WNllb7PAwJCDRPI+4yfu5TW6uLL4C3vJGNnxjdQV5OS0ID8W2SiD6g3nKgmx6258C0gwkS0Uh5bdyzGAOV5Y3cPPef/GYIZv1gmQP+49/JX9VAlxULktRi2psmnb0z8hNpfmOVKY3CDd7MKSY=----ATTACHMENT:----NDI5OTcxMzg0MzgyOTAyOCA3NDc0ODE1MzQxODAwMjMzIDg5Mjg2ODAyNjY1NzgyODU=