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:----HAJG8CZOVg1R7vcDOF7VCzgOGVOMF6Mzgcb8cRwesnOLZ/UBhoEiOCgAm+HPvTXS+W1rTccVdZAAx3fc60yUvGfcl0UR6CuwubJYhQFGmFD/iXsBqKZcMV6BJMOhCMQNZrfWfHtXfKUwNqzMqYjzHCs6Tx3WHQ2upQbmHVDwX0bOMYFlYT7ie0iS+4ySiYih7Y6ZztHrPO0qo5jDN/oeMEu/eU21rJrUZVtNykB/5UdJ1LHCJ/knaaxDaz2Gz2AC8CUwKc3iENoznoiGXRpT+CtSxeeWOKFi14d+XBjdI/K+rLdY19o042jMb4qxQlvwrrcIu7IgTZwbP9kg+aeZaD+Q681RFY/kfuYkBjLVBrYPvhDhw6lvgdw8Znmt/2vinoS7ggG9Ynei594khRIdbOt8coupbV8oPzL9lPUfRtoZhiMYKbu99X+4I2CpPwtw7uo3+jDFhPqL/SAI4WcYAYJtJqlBIpetzFH04rY+N6ElEb0xMt+2wjspUrmvN+Hcvwvei1gX5awFOQzoct2xs120LZD8JCoIZDDul9DdBFv1CHcO27rhOE3jMKsYh2VlA7TR4qS3dvmAGyuAVTwn08lMsIkCcXCj8wo9EbaBXrXdLb2Rw/R1zPpEE51Yqou3h4hQn4+68LMCrlt8lZTh1dl8gUVWJVNSoUJtp1u3WsY=----ATTACHMENT:----NDY3OTk2OTMyMTM0NTc0NiA5MzIwOTExNTUzMzU1NTAxIDIwNjEyMjY3MTc3NTg1OQ==