UUIDTest.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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/common.php';
  32. final class UUIDTest extends TestCase
  33. {
  34. public function testGenerate()
  35. {
  36. $result = UUID::gen();
  37. $this->assertRegExp('/^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$/',
  38. $result);
  39. // Check version number
  40. $this->assertEquals(0x4000, hexdec(substr($result, 14, 4)) & 0xF000);
  41. $this->assertEquals(0x8000, hexdec(substr($result, 19, 4)) & 0xC000);
  42. }
  43. public function testUnique()
  44. {
  45. $reps = 100;
  46. $ids = array();
  47. for ($i = 0; $i < $reps; $i++) {
  48. $ids[] = UUID::gen();
  49. }
  50. $this->assertEquals(count($ids), count(array_unique($ids)), "UUIDs must be unique");
  51. }
  52. }