1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/test/unit/LibeventReactorTest.php
2013-09-12 19:59:05 -04:00

276 lines
7.8 KiB
PHP

<?php
use Alert\LibeventReactor;
class LibeventReactorTest extends PHPUnit_Framework_TestCase {
private function skipIfMissingExtLibevent() {
if (!extension_loaded('libevent')) {
$this->markTestSkipped(
'libevent extension not available'
);
}
}
function testEnablingWatcherAllowsSubsequentInvocation() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$watcherId = $reactor->once(function() use (&$testIncrement) {
$testIncrement++;
}, $delay = 0);
$reactor->disable($watcherId);
$reactor->once(function() use ($reactor) {
$reactor->stop();
}, $delay = 0.01);
$reactor->run();
$this->assertEquals(0, $testIncrement);
$reactor->enable($watcherId);
$reactor->once(function() use ($reactor) {
$reactor->stop();
}, $delay = 0.01);
$reactor->run();
$this->assertEquals(1, $testIncrement);
}
function testDisablingWatcherPreventsSubsequentInvocation() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$watcherId = $reactor->once(function() use (&$testIncrement) {
$testIncrement++;
}, $delay = 0);
$reactor->disable($watcherId);
$reactor->once(function() use ($reactor) {
$reactor->stop();
}, $delay = 0.01);
$reactor->run();
$this->assertEquals(0, $testIncrement);
}
function testUnresolvedEventsAreReenabledOnRunFollowingPreviousStop() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$reactor->once(function() use (&$testIncrement, $reactor) {
$testIncrement++;
$reactor->stop();
}, $delay = 0.1);
$reactor->immediately(function() use ($reactor) {
$reactor->stop();
});
$reactor->run();
$this->assertEquals(0, $testIncrement);
usleep(150000);
$reactor->run();
$this->assertEquals(1, $testIncrement);
}
function testImmediateExecution() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$reactor->immediately(function() use (&$testIncrement) {
$testIncrement++;
});
$reactor->tick();
$this->assertEquals(1, $testIncrement);
}
function testTickExecutesReadyEvents() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$reactor->once(function() use (&$testIncrement) {
$testIncrement++;
}, $delay = 0);
$reactor->tick();
$this->assertEquals(1, $testIncrement);
}
function testRunExecutesEventsUntilExplicitlyStopped() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$testIncrement = 0;
$reactor->repeat(function() use (&$testIncrement, $reactor) {
if ($testIncrement < 10) {
$testIncrement++;
} else {
$reactor->stop();
}
}, $delay = 0.001);
$reactor->run();
$this->assertEquals(10, $testIncrement);
}
function testOnceReturnsEventWatcher() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$watcherId = $reactor->once(function(){}, $delay = 0);
$this->assertSame(1, $watcherId);
$watcherId = $reactor->once(function(){}, $delay = 0);
$this->assertSame(2, $watcherId);
}
/**
* @expectedException RuntimeException
* @expectedExceptionMessage test
*/
function testReactorAllowsExceptionToBubbleUpDuringTick() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$reactor->once(function(){ throw new RuntimeException('test'); }, $delay = 0);
$reactor->tick();
}
/**
* @expectedException RuntimeException
* @expectedExceptionMessage test
*/
function testReactorAllowsExceptionToBubbleUpDuringRun() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$reactor->once(function(){ throw new RuntimeException('test'); }, $delay = 0);
$reactor->run();
}
/**
* @expectedException RuntimeException
* @expectedExceptionMessage test
*/
function testReactorAllowsExceptionToBubbleUpFromRepeatingAlarmDuringRun() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$reactor->repeat(function(){ throw new RuntimeException('test'); }, $interval = 0);
$reactor->run();
}
function testRepeatReturnsEventWatcher() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$watcherId = $reactor->repeat(function(){}, $interval = 1);
$this->assertSame(1, $watcherId);
}
function testCancelRemovesWatcher() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$watcherId = $reactor->once(function(){
$this->fail('Watcher was not cancelled as expected');
}, $delay = 0.001);
$reactor->once(function() use ($reactor, $watcherId) { $reactor->cancel($watcherId); }, $delay = 0);
$reactor->once(function() use ($reactor) { $reactor->stop(); }, $delay = 0.002);
$reactor->run();
}
function testOnWritableWatcher() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$flag = FALSE;
$reactor->onWritable(STDOUT, function() use ($reactor, &$flag) {
$flag = TRUE;
$reactor->stop();
});
$reactor->once(function() use ($reactor) { $reactor->stop(); }, 0.05);
$reactor->run();
$this->assertTrue($flag);
}
function testInitiallyDisabledWriteWatcher() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$increment = 0;
$reactor->onWritable(STDOUT, function() use (&$increment) { $increment++; }, $isEnabled = FALSE);
$reactor->once(function() use ($reactor) { $reactor->stop(); }, 0.05);
$reactor->run();
$this->assertSame(0, $increment);
}
function testInitiallyDisabledWriteWatcherIsTriggeredOnceEnabled() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$increment = 0;
$watcherId = $reactor->onWritable(STDOUT, function() use (&$increment) {
$increment++;
}, $isEnabled = FALSE);
$reactor->once(function() use ($reactor, $watcherId) {
$reactor->enable($watcherId);
}, 0.01);
$reactor->once(function() use ($reactor) { $reactor->stop(); }, 0.1);
$reactor->run();
$this->assertTrue($increment > 0);
}
/**
* @expectedException RuntimeException
*/
function testStreamWatcherDoesntSwallowExceptions() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor;
$reactor->onWritable(STDOUT, function() { throw new RuntimeException; });
$reactor->once(function() use ($reactor) { $reactor->stop(); }, 0.05);
$reactor->run();
}
function testGarbageCollection() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor();
$reactor->once(function() use ($reactor) { $reactor->stop(); }, 0.1);
$reactor->run();
}
function testAfterForkReinitializesWatchers() {
$this->skipIfMissingExtLibevent();
$reactor = new LibeventReactor();
$reactor->onWritable(STDOUT, function() use ($reactor) { $reactor->stop(); });
$reactor->beforeFork();
$reactor->afterFork();
$reactor->run();
}
}