Add more unit tests for Pecl-based factory

Do not try to install UUID ext in HHVM run
This commit is contained in:
Thibaud Fabre
2014-12-17 02:39:03 +01:00
parent 2873c1ad3f
commit 34cc28cc30
4 changed files with 156 additions and 20 deletions
+1
View File
@@ -9,6 +9,7 @@ php:
before_script:
- composer self-update
- composer install --dev --prefer-source
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then pecl install uuid; fi;'
script:
- ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
+37 -12
View File
@@ -2,27 +2,50 @@
namespace Rhumsaa\Uuid;
/**
* Factory relying on PECL UUID library whenever possible, otherwise defaulting
* to pure PHP factory.
* @author thibaud
*
*/
class PeclUuidFactory implements UuidFactoryInterface
{
/**
*
* @var UuidFactoryInterface
*/
private $factory;
/**
*
* @var boolean
*/
private $hasExt = false;
/**
*
* @param UuidFactoryInterface $factory
*/
public function __construct(UuidFactoryInterface $factory)
{
$this->hasExt = extension_loaded('uuid');
$this->factory = $factory;
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::uuid1()
*/
public function uuid1($node = null, $clockSeq = null)
{
$uuid = uuid_create(UUID_TYPE_TIME);
if (! $this->hasExt || $node !== null || $clockSeq !== null) {
// If either param is not null, we cannot use PECL without breaking LSP.
return $this->factory->uuid1($node, $clockSeq);
}
return $this->fromString($uuid);
return $this->fromString(uuid_create(UUID_TYPE_TIME));
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::uuid3()
*/
public function uuid3($ns, $name)
@@ -30,17 +53,19 @@ class PeclUuidFactory implements UuidFactoryInterface
return $this->factory->uuid3($ns, $name);
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::uuid4()
*/
public function uuid4()
{
$uuid = uuid_create(UUID_TYPE_RANDOM);
if (! $this->hasExt) {
return $this->factory->uuid4();
}
return $this->fromString($uuid);
return $this->fromString(uuid_create(UUID_TYPE_RANDOM));
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::uuid5()
*/
public function uuid5($ns, $name)
@@ -48,7 +73,7 @@ class PeclUuidFactory implements UuidFactoryInterface
return $this->factory->uuid5($ns, $name);
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::fromBytes()
*/
public function fromBytes($bytes)
@@ -56,7 +81,7 @@ class PeclUuidFactory implements UuidFactoryInterface
return $this->factory->fromBytes($bytes);
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::fromString()
*/
public function fromString($name)
@@ -64,7 +89,7 @@ class PeclUuidFactory implements UuidFactoryInterface
return $this->factory->fromString($name);
}
/*
/**
* (non-PHPdoc) @see \Rhumsaa\Uuid\UuidFactoryInterface::fromInteger()
*/
public function fromInteger($integer)
+1 -1
View File
@@ -719,7 +719,7 @@ class Uuid implements UuidInterface, \JsonSerializable
public static function getFactory()
{
if (! self::$factory) {
self::$factory = new UuidFactory();
self::$factory = new PeclUuidFactory(new UuidFactory());
}
return self::$factory;
+117 -7
View File
@@ -2,16 +2,126 @@
namespace Rhumsaa\Uuid;
use Rhumsaa\Uuid\Provider\Time\SystemTimeProvider;
use Rhumsaa\Uuid\Provider\Time\FixedTimeProvider;
use Rhumsaa\Uuid\Generator\CombGenerator;
class PeclUuidTest extends UuidTest
class PeclUuidTest extends \PHPUnit_Framework_TestCase
{
private $mockFactory;
public static $mockNoExt = false;
protected function setUp()
{
$this->mockFactory = $this->getMock('Rhumsaa\Uuid\UuidFactoryInterface');
if (! function_exists('\Rhumsaa\Uuid\extension_loaded')) {
// Hackish, but allows mocking extension not avail without
// breaking the function if tests are loaded accidently in non test env.
eval('namespace Rhumsaa\Uuid { function extension_loaded($name) {
return ! PeclUuidTest::$mockNoExt;
} }');
}
Uuid::setFactory(new PeclUuidFactory($this->mockFactory));
}
public function getUuid1Params()
{
return [
[ true, null ],
[ null, true ],
[ true, true ]
];
}
/**
* @dataProvider getUuid1Params
*/
public function testUuid1WithParametersIsDelegated($node, $clockSeq)
{
$node = true;
$clockSeq = null;
$this->mockFactory->expects($this->once())
->method('uuid1')
->with($node, $clockSeq);
Uuid::uuid1($node, $clockSeq);
}
public function testUuid1WithoutParametersIsNotDelegated()
{
$this->mockFactory->expects($this->never())
->method('uuid1');
Uuid::uuid1();
}
public function testUuid1WithoutExtensionIsDelegated()
{
self::$mockNoExt = true;
Uuid::setFactory(new PeclUuidFactory($this->mockFactory));
$this->mockFactory->expects($this->once())
->method('uuid1');
Uuid::uuid1();
self::$mockNoExt = false;
}
public function testUuid1Version()
{
Uuid::setFactory(new PeclUuidFactory(new UuidFactory()));
RandomGeneratorFactory::$forceNoOpensslRandomPseudoBytes = false;
$uuid = Uuid::uuid1();
$this->assertEquals(1, $uuid->getVersion());
}
}
public function testUuid3IsDelegated()
{
$this->mockFactory->expects($this->once())
->method('uuid3');
Uuid::uuid3(Uuid::NAMESPACE_DNS, str_replace('\\', '.', __NAMESPACE__));
}
public function testUuid4WithoutExtensionIsDelegated()
{
self::$mockNoExt = true;
Uuid::setFactory(new PeclUuidFactory($this->mockFactory));
$this->mockFactory->expects($this->once())
->method('uuid4');
Uuid::uuid4();
self::$mockNoExt = false;
}
public function testUuid4WithParametersIsNeverDelegated()
{
$this->mockFactory->expects($this->never())
->method('uuid4');
Uuid::uuid4();
}
public function testUuid4Version()
{
Uuid::setFactory(new PeclUuidFactory(new UuidFactory()));
$uuid = Uuid::uuid4();
$this->assertEquals(4, $uuid->getVersion());
}
public function testUuid5IsDelegated()
{
$this->mockFactory->expects($this->once())
->method('uuid5');
Uuid::uuid5(Uuid::NAMESPACE_DNS, str_replace('\\', '.', __NAMESPACE__));
}
}