2016-06-25 21:12:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Glmdev\Meta\Tests;
|
|
|
|
|
|
|
|
use Glmdev\Meta\Meta;
|
2016-06-25 22:10:21 +00:00
|
|
|
use Ramsey\Uuid\Uuid;
|
2016-06-25 21:12:01 +00:00
|
|
|
|
|
|
|
class MetaTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2016-06-25 22:10:21 +00:00
|
|
|
public function testReadWrite ()
|
|
|
|
{
|
|
|
|
$model = Meta::create();
|
|
|
|
|
|
|
|
$model->write('name', 'John');
|
|
|
|
$model->write('age', 15);
|
|
|
|
$model->write('email', 'Johnny@appleseed.com');
|
|
|
|
|
|
|
|
$this->assertEquals('John', $model->read('name'));
|
|
|
|
$this->assertEquals(15, $model->read('age'));
|
|
|
|
$this->assertEquals('Johnny@appleseed.com', $model->read('email'));
|
|
|
|
}
|
2016-06-25 21:12:01 +00:00
|
|
|
|
2016-06-25 22:10:21 +00:00
|
|
|
public function testUuid ()
|
2016-06-25 21:12:01 +00:00
|
|
|
{
|
2016-06-25 22:10:21 +00:00
|
|
|
$model = Meta::create();
|
|
|
|
$uuid = Uuid::uuid4();
|
|
|
|
|
|
|
|
$this->assertTrue($model->hasUuid());
|
|
|
|
|
|
|
|
$model->setRawUuid($uuid);
|
|
|
|
$this->assertEquals($uuid, $model->getUuid());
|
2016-06-25 21:12:01 +00:00
|
|
|
}
|
2016-06-26 01:00:13 +00:00
|
|
|
|
|
|
|
public function testUuidQuery ()
|
|
|
|
{
|
|
|
|
$model = Meta::create([
|
|
|
|
'meta' => serialize(['name' => 'Tony'])
|
|
|
|
]);
|
|
|
|
|
|
|
|
$queried = Meta::withUuid($model->getUuid())->first();
|
|
|
|
|
|
|
|
$this->assertEquals($model->read('name'), $queried->read('name'));
|
|
|
|
}
|
2016-06-25 21:12:01 +00:00
|
|
|
}
|