UUIDTest.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. namespace Tests\Unit;
  17. if (!defined('INSTALLDIR')) {
  18. define('INSTALLDIR', dirname(dirname(__DIR__)));
  19. }
  20. if (!defined('PUBLICDIR')) {
  21. define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
  22. }
  23. if (!defined('GNUSOCIAL')) {
  24. define('GNUSOCIAL', true);
  25. }
  26. if (!defined('STATUSNET')) { // Compatibility
  27. define('STATUSNET', true);
  28. }
  29. use PHPUnit\Framework\TestCase;
  30. use UUID;
  31. require_once INSTALLDIR . '/lib/util/common.php';
  32. final class UUIDTest extends TestCase
  33. {
  34. public function testGenerate()
  35. {
  36. $result = UUID::gen();
  37. static::assertRegExp(
  38. '/^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$/',
  39. $result
  40. );
  41. // Check version number
  42. static::assertSame(0x4000, hexdec(substr($result, 14, 4)) & 0xF000);
  43. static::assertSame(0x8000, hexdec(substr($result, 19, 4)) & 0xC000);
  44. }
  45. public function testUnique()
  46. {
  47. $reps = 100;
  48. $ids = [];
  49. for ($i = 0; $i < $reps; ++$i) {
  50. $ids[] = UUID::gen();
  51. }
  52. static::assertSame(count($ids), count(array_unique($ids)), 'UUIDs must be unique');
  53. }
  54. }