response = m::mock(ResponseFactory::class); } /** * Test that a node not in maintenance mode continues through the request cycle. */ public function testHandle() { $server = Server::factory()->make(); $node = Node::factory()->make(['maintenance' => 0]); $server->setRelation('node', $node); $this->setRequestAttribute('server', $server); $this->getMiddleware()->handle($this->request, $this->getClosureAssertions()); } /** * Test that a node in maintenance mode returns an error view. */ public function testHandleInMaintenanceMode() { $server = Server::factory()->make(); $node = Node::factory()->make(['maintenance_mode' => 1]); $server->setRelation('node', $node); $this->setRequestAttribute('server', $server); $this->response->shouldReceive('view') ->once() ->with('errors.maintenance') ->andReturn(new Response()); $response = $this->getMiddleware()->handle($this->request, $this->getClosureAssertions()); $this->assertInstanceOf(Response::class, $response); } private function getMiddleware(): MaintenanceMiddleware { return new MaintenanceMiddleware($this->response); } }