request = $this->createMock(IRequest::class); $this->middleWare = new NotModifiedMiddleware( $this->request ); $this->controller = $this->createMock(Controller::class); } public function dataModified(): array { $now = new \DateTime(); return [ [null, '', null, '', false], ['etag', 'etag', null, '', false], ['etag', '"wrongetag"', null, '', false], ['etag', '', null, '', false], [null, '"etag"', null, '', false], ['etag', '"etag"', null, '', true], [null, '', $now, $now->format(\DateTimeInterface::RFC2822), true], [null, '', $now, $now->format(\DateTimeInterface::ATOM), false], [null, '', null, $now->format(\DateTimeInterface::RFC2822), false], [null, '', $now, '', false], ['etag', '"etag"', $now, $now->format(\DateTimeInterface::ATOM), true], ['etag', '"etag"', $now, $now->format(\DateTimeInterface::RFC2822), true], ]; } /** * @dataProvider dataModified */ public function testMiddleware(?string $etag, string $etagHeader, ?\DateTime $lastModified, string $lastModifiedHeader, bool $notModifiedSet) { $this->request->method('getHeader') ->willReturnCallback(function (string $name) use ($etagHeader, $lastModifiedHeader) { if ($name === 'IF_NONE_MATCH') { return $etagHeader; } if ($name === 'IF_MODIFIED_SINCE') { return $lastModifiedHeader; } return ''; }); $response = new Http\Response(); if ($etag !== null) { $response->setETag($etag); } if ($lastModified !== null) { $response->setLastModified($lastModified); } $response->setStatus(Http::STATUS_OK); $result = $this->middleWare->afterController($this->controller, 'myfunction', $response); if ($notModifiedSet) { $this->assertSame(Http::STATUS_NOT_MODIFIED, $result->getStatus()); } else { $this->assertSame(Http::STATUS_OK, $result->getStatus()); } } }