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\Threading;
|
2016-08-18 18:04:48 +02:00
|
|
|
|
2016-08-23 23:47:40 +02:00
|
|
|
use Amp\Parallel\Threading\Thread;
|
|
|
|
use Amp\Parallel\Test\AbstractContextTest;
|
2017-01-09 18:11:25 +01:00
|
|
|
use AsyncInterop\Loop;
|
2015-08-28 23:58:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group threading
|
|
|
|
* @requires extension pthreads
|
|
|
|
*/
|
2016-08-19 00:36:58 +02:00
|
|
|
class ThreadTest extends AbstractContextTest {
|
|
|
|
public function createContext(callable $function) {
|
2015-09-26 06:41:15 +02:00
|
|
|
return new Thread($function);
|
2015-08-31 01:25:44 +02:00
|
|
|
}
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
public function testSpawnStartsThread() {
|
2016-12-30 02:17:26 +01:00
|
|
|
Loop::execute(\Amp\wrap(function () {
|
2015-08-31 01:25:44 +02:00
|
|
|
$thread = Thread::spawn(function () {
|
|
|
|
usleep(100);
|
|
|
|
});
|
|
|
|
|
2016-08-19 00:36:58 +02:00
|
|
|
return yield $thread->join();
|
2016-12-30 02:17:26 +01:00
|
|
|
}));
|
2015-08-31 01:25:44 +02:00
|
|
|
|
|
|
|
}
|
2015-08-28 23:58:15 +02:00
|
|
|
}
|