/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
symfony
/
uid
/
Tests
/
Command
/
Upload File
HOME
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Uid\Tests\Command; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Tester\CommandTester; use Symfony\Component\Uid\Command\InspectUuidCommand; final class InspectUuidCommandTest extends TestCase { public function testInvalid() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(1, $commandTester->execute(['uuid' => 'foobar'])); $this->assertStringContainsString('Invalid UUID: "foobar"', $commandTester->getDisplay()); } public function testNil() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '00000000-0000-0000-0000-000000000000'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version nil toRfc4122 (canonical) 00000000-0000-0000-0000-000000000000 toBase58 1111111111111111111111 toBase32 00000000000000000000000000 toHex 0x00000000000000000000000000000000 ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testUnknown() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '461cc9b9-2397-0dba-91e9-33af4c63f7ec'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 0 toRfc4122 (canonical) 461cc9b9-2397-0dba-91e9-33af4c63f7ec toBase58 9f9nftX6dw4oVPm5uT17um toBase32 263K4VJ8WQ1PX93T9KNX667XZC toHex 0x461cc9b923970dba91e933af4c63f7ec ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); $this->assertSame(0, $commandTester->execute(['uuid' => '461cc9b9-2397-2dba-91e9-33af4c63f7ec'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 2 toRfc4122 (canonical) 461cc9b9-2397-2dba-91e9-33af4c63f7ec toBase58 9f9nftX6fjLfNnvSAHMV7Z toBase32 263K4VJ8WQ5PX93T9KNX667XZC toHex 0x461cc9b923972dba91e933af4c63f7ec ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); $this->assertSame(0, $commandTester->execute(['uuid' => '461cc9b9-2397-adba-91e9-33af4c63f7ec'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 10 toRfc4122 (canonical) 461cc9b9-2397-adba-91e9-33af4c63f7ec toBase58 9f9nftX6nvS6vPZqBckwvj toBase32 263K4VJ8WQNPX93T9KNX667XZC toHex 0x461cc9b92397adba91e933af4c63f7ec ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); $this->assertSame(0, $commandTester->execute(['uuid' => '461cc9b9-2397-cdba-91e9-33af4c63f7ec'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 12 toRfc4122 (canonical) 461cc9b9-2397-cdba-91e9-33af4c63f7ec toBase58 9f9nftX6pihxonjBST7K8X toBase32 263K4VJ8WQSPX93T9KNX667XZC toHex 0x461cc9b92397cdba91e933af4c63f7ec ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV1() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '4c8e3a2a-5993-11eb-a861-2bf05af69e52'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 1 toRfc4122 (canonical) 4c8e3a2a-5993-11eb-a861-2bf05af69e52 toBase58 ATJGVdrgFqvc6thDFXv1Qu toBase32 2CHRX2MPCK27NTGR9BY1DFD7JJ toHex 0x4c8e3a2a599311eba8612bf05af69e52 ----------------------- -------------------------------------- Time 2021-01-18 13:44:34.438609 UTC ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV3() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => 'd108a1a0-957e-3c77-b110-d3f912374439'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 3 toRfc4122 (canonical) d108a1a0-957e-3c77-b110-d3f912374439 toBase58 Sp7q16VVeC7zPsMPVEToq2 toBase32 6H12GT15BY7HVV246KZ493EH1S toHex 0xd108a1a0957e3c77b110d3f912374439 ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV4() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '705c6eab-a535-4f49-bd51-436d0e81206a'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 4 toRfc4122 (canonical) 705c6eab-a535-4f49-bd51-436d0e81206a toBase58 EsjuVs1nd42xt7jSB8hNQH toBase32 3GBHQAQ99N9X4VTMA3DM78283A toHex 0x705c6eaba5354f49bd51436d0e81206a ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV5() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '4ec6c3ad-de94-5f75-b5f0-ad56661a30c4'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 5 toRfc4122 (canonical) 4ec6c3ad-de94-5f75-b5f0-ad56661a30c4 toBase58 AjCoyQeK6TtFemqYWV5uKZ toBase32 2ERV1TVQMMBXTVBW5DASK1MC64 toHex 0x4ec6c3adde945f75b5f0ad56661a30c4 ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV6() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '1eb59937-b0a7-6288-a861-db3dc2d8d4db'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 6 toRfc4122 (canonical) 1eb59937-b0a7-6288-a861-db3dc2d8d4db toBase58 4nwhs6vwvNU2AbcCSD1XP8 toBase32 0YPPCKFC57CA4AGREV7Q1DHN6V toHex 0x1eb59937b0a76288a861db3dc2d8d4db ----------------------- -------------------------------------- Time 2021-01-18 13:45:52.427892 UTC ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV7() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '017f22e2-79b0-7cc3-98c4-dc0c0c07398f'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 7 toRfc4122 (canonical) 017f22e2-79b0-7cc3-98c4-dc0c0c07398f toBase58 1BihbxwwQ4NZZpKRH9JDCz toBase32 01FWHE4YDGFK1SHH6W1G60EECF toHex 0x017f22e279b07cc398c4dc0c0c07398f ----------------------- -------------------------------------- Time 2022-02-22 19:22:22.000000 UTC ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } public function testV8() { $commandTester = new CommandTester(new InspectUuidCommand()); $this->assertSame(0, $commandTester->execute(['uuid' => '017f22e2-79b0-8cc3-98c4-dc0c0c07398f'])); $this->assertSame(<<<EOF ----------------------- -------------------------------------- Label Value ----------------------- -------------------------------------- Version 8 toRfc4122 (canonical) 017f22e2-79b0-8cc3-98c4-dc0c0c07398f toBase58 1BihbxwwQxWVWWu6QZUPot toBase32 01FWHE4YDGHK1SHH6W1G60EECF toHex 0x017f22e279b08cc398c4dc0c0c07398f ----------------------- -------------------------------------- EOF , $commandTester->getDisplay(true)); } }