given($eventId = 'hoa://Event/Test') ->when($result = SUT::getEvent($eventId)) ->then ->object($result) ->isInstanceOf('Hoa\Event\Event') ->object(SUT::getEvent($eventId)) ->isIdenticalTo($result); } public function case_register_source_instance() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source() ) ->when($result = SUT::register($eventId, $source)) ->then ->variable($result) ->isNull() ->boolean(SUT::eventExists($eventId)) ->isTrue(); } public function case_register_source_name() { $this ->given( $eventId = 'hoa://Event/Test', $source = 'Mock\Hoa\Event\Source' ) ->when($result = SUT::register($eventId, $source)) ->then ->variable($result) ->isNull() ->boolean(SUT::eventExists($eventId)) ->isTrue(); } public function case_register_redeclare() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), SUT::register($eventId, $source) ) ->exception(function () use ($eventId, $source) { SUT::register($eventId, $source); }) ->isInstanceOf('Hoa\Event\Exception'); } public function case_register_not_a_source_instance() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \StdClass() ) ->exception(function () use ($eventId, $source) { $result = SUT::register($eventId, $source); }) ->isInstanceOf('Hoa\Event\Exception'); } public function case_register_not_a_source_name() { $this ->given( $eventId = 'hoa://Event/Test', $source = 'StdClass' ) ->exception(function () use ($eventId, $source) { $result = SUT::register($eventId, $source); }) ->isInstanceOf('Hoa\Event\Exception'); } public function case_unregister() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), SUT::register($eventId, $source) ) ->when($result = SUT::unregister($eventId)) ->then ->boolean(SUT::eventExists($eventId)) ->isFalse(); } public function case_unregister_hard() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), SUT::register($eventId, $source), $event = SUT::getEvent($eventId) ) ->when($result = SUT::unregister($eventId, true)) ->then ->boolean(SUT::eventExists($eventId)) ->isFalse() ->object(SUT::getEvent($eventId)) ->isNotIdenticalTo($event); } public function case_unregister_not_registered() { $this ->given($eventId = 'hoa://Event/Test') ->when($result = SUT::unregister($eventId)) ->then ->variable($result) ->isNull(); } public function case_attach() { $this ->given( $event = SUT::getEvent('hoa://Event/Test'), $callable = function () { } ) ->when($result = $event->attach($callable)) ->then ->object($result) ->isIdenticalTo($event) ->boolean($event->isListened()) ->isTrue(); } public function case_detach() { $this ->given( $event = SUT::getEvent('hoa://Event/Test'), $callable = function () { }, $event->attach($callable) ) ->when($result = $event->detach($callable)) ->then ->object($result) ->isIdenticalTo($event) ->boolean($event->isListened()) ->isFalse(); } public function case_detach_unattached() { $this ->given( $event = SUT::getEvent('hoa://Event/Test'), $callable = function () { } ) ->when($result = $event->detach($callable)) ->then ->object($result) ->isIdenticalTo($event) ->boolean($event->isListened()) ->isFalse(); } public function case_is_listened() { $this ->given($event = SUT::getEvent('hoa://Event/Test')) ->when($result = $event->isListened()) ->then ->boolean($event->isListened()) ->isFalse(); } public function case_notify() { $self = $this; $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), $bucket = new LUT\Bucket(), SUT::register($eventId, $source), SUT::getEvent($eventId)->attach( function (LUT\Bucket $receivedBucket) use ($self, $source, $bucket, &$called) { $called = true; $this ->object($receivedBucket) ->isIdenticalTo($bucket) ->object($receivedBucket->getSource()) ->isIdenticalTo($source); } ) ) ->when($result = SUT::notify($eventId, $source, $bucket)) ->then ->variable($result) ->isNull() ->boolean($called) ->isTrue(); } public function case_notify_unregistered_event_id() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), $data = new LUT\Bucket() ) ->exception(function () use ($eventId, $source, $data) { SUT::notify($eventId, $source, $data); }) ->isInstanceOf('Hoa\Event\Exception'); } public function case_event_exists() { $this ->given( $eventId = 'hoa://Event/Test', $source = new \Mock\Hoa\Event\Source(), SUT::register($eventId, $source) ) ->when($result = SUT::eventExists($eventId)) ->then ->boolean($result) ->isTrue(); } public function case_event_not_exists() { $this ->given($eventId = 'hoa://Event/Test') ->when($result = SUT::eventExists($eventId)) ->then ->boolean($result) ->isFalse(); } }