1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/test/Sync/AbstractParcelTest.php

56 lines
1.5 KiB
PHP
Raw Normal View History

2016-12-30 02:16:04 +01:00
<?php
2015-08-28 23:58:15 +02:00
2016-08-23 23:47:40 +02:00
namespace Amp\Parallel\Test\Sync;
2016-08-18 18:04:48 +02:00
use Amp\PHPUnit\TestCase;
2017-11-29 21:40:07 +01:00
use Amp\Promise;
2015-08-28 23:58:15 +02:00
2016-08-19 00:36:58 +02:00
abstract class AbstractParcelTest extends TestCase {
2015-08-28 23:58:15 +02:00
/**
2016-08-23 23:47:40 +02:00
* @return \Amp\Parallel\Sync\Parcel
2015-08-28 23:58:15 +02:00
*/
abstract protected function createParcel($value);
2016-08-19 00:36:58 +02:00
public function testUnwrapIsOfCorrectType() {
2017-11-29 21:40:07 +01:00
$object = $this->createParcel(new \stdClass);
$this->assertInstanceOf('stdClass', Promise\wait($object->unwrap()));
2015-08-28 23:58:15 +02:00
}
2016-08-19 00:36:58 +02:00
public function testUnwrapIsEqual() {
2016-08-23 01:25:19 +02:00
$object = new \stdClass;
2015-08-28 23:58:15 +02:00
$shared = $this->createParcel($object);
2017-11-29 21:40:07 +01:00
$this->assertEquals($object, Promise\wait($shared->unwrap()));
2015-08-28 23:58:15 +02:00
}
/**
* @depends testUnwrapIsEqual
*/
2016-08-19 00:36:58 +02:00
public function testSynchronized() {
$parcel = $this->createParcel(0);
2016-08-19 00:36:58 +02:00
$awaitable = $parcel->synchronized(function ($value) {
$this->assertSame(0, $value);
2016-08-22 06:40:48 +02:00
usleep(10000);
return 1;
2016-08-19 00:36:58 +02:00
});
$callback = $this->createCallback(1);
$callback->method('__invoke')
2016-08-19 00:36:58 +02:00
->with($this->identicalTo(null), $this->identicalTo(1));
2017-03-22 00:45:23 +01:00
$awaitable->onResolve($callback);
2016-08-19 00:36:58 +02:00
$awaitable = $parcel->synchronized(function ($value) {
$this->assertSame(1, $value);
2016-08-22 06:40:48 +02:00
usleep(10000);
return 2;
2016-08-19 00:36:58 +02:00
});
$callback = $this->createCallback(1);
$callback->method('__invoke')
2016-08-19 00:36:58 +02:00
->with($this->identicalTo(null), $this->identicalTo(2));
2017-03-22 00:45:23 +01:00
$awaitable->onResolve($callback);
}
2015-08-28 23:58:15 +02:00
}