findAll()); $event = $manipulator->create(WebhookEvent::NEW_FEED_ENTRY, WebhookEvent::FEED_ENTRY_TYPE, array( 'feed_id' => self::$DI['feed_public_entry']->getFeed()->getId(), 'entry_id' => self::$DI['feed_public_entry']->getId() )); $this->assertGreaterThan($nbEvents, count(self::$DI['app']['repo.webhook-event']->findAll())); } public function testDelete() { $manipulator = new WebhookEventManipulator(self::$DI['app']['EM'], self::$DI['app']['repo.webhook-event']); $event = $manipulator->create(WebhookEvent::NEW_FEED_ENTRY, WebhookEvent::FEED_ENTRY_TYPE, array( 'feed_id' => self::$DI['feed_public_entry']->getFeed()->getId(), 'entry_id' => self::$DI['feed_public_entry']->getId() )); $eventMem = clone $event; $countBefore = count(self::$DI['app']['repo.webhook-event']->findAll()); self::$DI['app']['manipulator.webhook-delivery']->create($event); $manipulator->delete($event); $this->assertGreaterThan(count(self::$DI['app']['repo.webhook-event']->findAll()), $countBefore); $tokens = self::$DI['app']['repo.api-oauth-tokens']->findOauthTokens($eventMem); $this->assertEquals(0, count($tokens)); } public function testUpdate() { $manipulator = new WebhookEventManipulator(self::$DI['app']['EM'], self::$DI['app']['repo.webhook-event']); $event = $manipulator->create(WebhookEvent::NEW_FEED_ENTRY, WebhookEvent::FEED_ENTRY_TYPE, array( 'feed_id' => self::$DI['feed_public_entry']->getFeed()->getId(), 'entry_id' => self::$DI['feed_public_entry']->getId() )); $event->setProcessed(true); $manipulator->update($event); $event = self::$DI['app']['repo.webhook-event']->find($event->getId()); $this->assertTrue($event->isProcessed()); } public function testProcessed() { $manipulator = new WebhookEventManipulator(self::$DI['app']['EM'], self::$DI['app']['repo.webhook-event']); $event = $manipulator->create(WebhookEvent::NEW_FEED_ENTRY, WebhookEvent::FEED_ENTRY_TYPE, array( 'feed_id' => self::$DI['feed_public_entry']->getFeed()->getId(), 'entry_id' => self::$DI['feed_public_entry']->getId() )); $manipulator->processed($event); $this->assertTrue($event->isProcessed()); } }