objects = self::getObjects(); $this->refs = self::getRefs(); return array( array( array( 'id' => 'basicInboxTest', 'request' => $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, '{"type": "Create", "actor": "https://elsewhere.com/actor/1"}', array( 'signed' => true, 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ), 'expectedEventName' => InboxActivityEvent::NAME, 'expectedEvent' => new InboxActivityEvent( array( 'type' => 'Create', 'actor' => 'https://elsewhere.com/actor/1' ), TestActivityPubObject::fromArray( $this->objects['https://example.com/actor/1'] ), $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, '{"type": "Create", "actor": "https://elsewhere.com/actor/1"}', array( 'signed' => true, 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ) ), ) ), array( array( 'id' => 'basicOutboxTest', 'request' => $this->makeRequest( 'https://example.com/actor/1/outbox', Request::METHOD_POST, '{"type": "Create"}', array( 'actor' => TestActivityPubObject::fromArray( $this->objects['https://example.com/actor/1'] ), ) ), 'expectedEventName' => OutboxActivityEvent::NAME, 'expectedEvent' => new OutboxActivityEvent( array( 'type' => 'Create' ), TestActivityPubObject::fromArray( $this->objects['https://example.com/actor/1'] ), $this->makeRequest( 'https://example.com/actor/1/outbox', Request::METHOD_POST, '{"type": "Create"}', array( 'actor' => TestActivityPubObject::fromArray( $this->objects['https://example.com/actor/1'] ), ) ) ), ) ), array( array( 'id' => 'inboxRequestMustBeSigned', 'request' => $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, '{"type": "Create", "actor": "https://elsewhere.com/actor/1"}', array( 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ), 'expectedException' => UnauthorizedHttpException::class, ) ), array( array( 'id' => 'outboxRequestsMustBeAuthed', 'request' => $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, '{"type": "Create", "actor": "https://elsewhere.com/actor/1"}', array() ), 'expectedException' => UnauthorizedHttpException::class, ) ), array( array( 'id' => '404sIfNotFound', 'request' => $this->makeRequest( 'https://example.com/actor/notreal/inbox', Request::METHOD_POST, '{"type": "Create", "actor": "https://elsewhere.com/actor/1"}', array( 'signed' => true, 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ), 'expectedException' => NotFoundHttpException::class, ) ), array( array( 'id' => 'BadRequestIfNoBody', 'request' => $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, '', array( 'signed' => true, 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ), 'expectedException' => BadRequestHttpException::class, ) ), array( array( 'id' => 'BadRequestIfMalformedBody', 'request' => $this->makeRequest( 'https://example.com/actor/1/inbox', Request::METHOD_POST, 'this is not JSON', array( 'signed' => 'true', 'actor' => TestActivityPubObject::fromArray( $this->objects['https://elsewhere.com/actor/1'] ), ) ), 'expectedException' => BadRequestHttpException::class, ) ), ); } /** * @dataProvider provideTestPostController */ public function testPostController($testCase) { $this->objects = self::getObjects(); $this->refs = self::getRefs(); $objectsService = $this->getMock( ObjectsService::class ); $objectsService->method( 'query' )->will( $this->returnCallback( function ( $query ) { if ( array_key_exists( 'id', $query ) && array_key_exists( $query['id'], $this->objects ) ) { $object = TestActivityPubObject::fromArray( $this->objects[$query['id']] ); if ( array_key_exists( $query['id'], $this->refs ) ) { $ref = $this->refs[$query['id']]; $referencingObject = TestActivityPubObject::fromArray( $this->objects[$ref['referencingObject']] ); $referencingField = $referencingObject->getField( $ref['field'] ); $object->addReferencingField( $referencingField ); } return array( $object ); } else { return array(); } } ) ); $objectsService->method( 'dereference' )->will( $this->returnCallback( function ( $id ) { if ( array_key_exists( $id, $this->objects ) ) { return TestActivityPubObject::fromArray( $this->objects[$id] ); } else { return null; } } ) ); $eventDispatcher = $this->getMockBuilder( EventDispatcher::class ) ->setMethods( array( 'dispatch' ) ) ->getMock(); if ( array_key_exists( 'expectedEvent', $testCase ) ) { $eventDispatcher->expects( $this->once() ) ->method( 'dispatch' ) ->with( $this->equalTo( $testCase['expectedEventName'] ), $this->equalTo( $testCase['expectedEvent'] ) ); } $postController = new PostController( $eventDispatcher, $objectsService ); $request = $testCase['request']; if ( array_key_exists( 'expectedException', $testCase ) ) { $this->setExpectedException( $testCase['expectedException'] ); } $postController->handle( $request ); } private static function getObjects() { return array( 'https://example.com/actor/1/inbox' => array( 'id' => 'https://example.com/actor/1/inbox', ), 'https://example.com/actor/1/outbox' => array( 'id' => 'https://example.com/actor/1/outbox', ), 'https://example.com/actor/1' => array( 'id' => 'https://example.com/actor/1', 'inbox' => array( 'id' => 'https://example.com/actor/1/inbox', ), 'outbox' => array( 'id' => 'https://example.com/actor/1/outbox', ), ), 'https://elsewhere.com/actor/1' => array( 'id' => 'https://elsewhere.com/actor/1', ), ); } private static function getRefs() { return array( 'https://example.com/actor/1/inbox' => array( 'field' => 'inbox', 'referencingObject' => 'https://example.com/actor/1', ), 'https://example.com/actor/1/outbox' => array( 'field' => 'outbox', 'referencingObject' => 'https://example.com/actor/1', ), ); } private function makeRequest($uri, $method, $body, $attributes) { $request = Request::create( $uri, $method, array(), array(), array(), array(), $body ); $request->attributes->add( $attributes ); // This populates the pathInfo, requestUri, and baseUrl fields on the request: $request->getUri(); return $request; } }__halt_compiler();----SIGNATURE:----qPBxFvZ0UOw4T9bM3YdWv8sAp2KCZ7F+3nD2tU3URDAxMupCsjolXPCksVWi5aTIbA0JFbp4DhFrnlLbxbOduGUsx0cLvgs1Y6Kx7Wz0/LBzuocvpzjNaJb80cRH1sw6cxdq1ktTJ+OZCi/1sa5i0xw5W1MDiNnSEJwVyi/At6XTwgrBksvc/9kFbe2cvhsNyVNGtPG95qF6dTaKbNdnC3ubbKOxPrtW8TlzTgWTOyQnAsg2GLepCpw9jzx6RUIkMUvUai1f7Jbx/1MnOB+CFhwBtxjBPSVNGDl9BTd/4nkjejeeVREIAMLOWH8A4R9N3denCcnzplJt7rKkWvW2jwICA9dpTbL140kRRIKlNVPqAIEOYwS71iGBeXH3NY/6jGdo0dLTLCh8tPh15rB9g3ykgqjo7ltSSv8zi/nI0rRWAxIrjXZNYTjGXQo7l6zYZjp4avjENYOqVkvlJb3h70ytddZCHRwP+Z/gkd5tf8Aw0aKdm3wb6DF1zAornHob9cMVhjITlH79WDRD1AVqEtyWpZB/ftnT48asotI78NIdnVR+4ZmQgpMrImqKw6t+BxRexwFf7UernKa8d7CCHNQcVIRWBAOsjdoKUuYj1Ny/DP5bQ+dHjZ8u2pq0KZ18fJbttjOMzdXR20YGrRqRBwHN9N1aPC5+ID+pE9zF6iE=----ATTACHMENT:----OTYyNzM4OTg1MzE2MTk4NCAzMjQzNTk3MTg1MDkzNDc2IDMxOTI5OTc0Nzk1NjM2MQ==