3 declare(strict_types=1);
52 protected function setUp(): void
54 $this->httpServiceMock = $this->getMockBuilder(Services::class)
55 ->disableOriginalConstructor()
64 $expectedContentValue =
'';
66 $response = $this->getMockBuilder(ResponseInterface::class)
67 ->disableOriginalConstructor()
71 ->method(
'withHeader')
75 $this->httpServiceMock->expects($this->once())
79 $this->httpServiceMock->expects($this->once())
80 ->method(
'saveResponse')
83 $this->httpServiceMock->expects($this->never())
84 ->method(
'sendResponse');
86 $xAccel =
new XAccel($this->httpServiceMock);
87 $result = $xAccel->prepare(
"this path is never used in this method");
89 $this->assertTrue($result);
97 $expectedHeader =
'X-Accel-Redirect';
98 $path =
'./normal/path';
100 $response = $this->getMockBuilder(ResponseInterface::class)
101 ->disableOriginalConstructor()
105 ->method(
'withHeader')
106 ->with($expectedHeader,
$path)
109 $this->httpServiceMock->expects($this->once())
113 $this->httpServiceMock->expects($this->once())
114 ->method(
'saveResponse')
117 $this->httpServiceMock->expects($this->once())
118 ->method(
'sendResponse');
121 $xAccel =
new XAccel($this->httpServiceMock);
122 $xAccel->deliver(
$path,
false);
130 $expectedHeader =
'X-Accel-Redirect';
131 $path =
'./data/path/to/what/ever';
132 $expectedPath =
'/secured-data/path/to/what/ever';
134 $response = $this->getMockBuilder(ResponseInterface::class)
135 ->disableOriginalConstructor()
139 ->method(
'withHeader')
140 ->with($expectedHeader, $expectedPath)
143 $this->httpServiceMock->expects($this->once())
147 $this->httpServiceMock->expects($this->once())
148 ->method(
'saveResponse')
151 $this->httpServiceMock->expects($this->once())
152 ->method(
'sendResponse');
154 $xAccel =
new XAccel($this->httpServiceMock);
155 $xAccel->deliver(
$path,
false);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testDeliverWithDataPathWhichShouldSucceed()
Services $httpServiceMock
testPrepareWhichShouldSucceed()
testDeliverWithNormalPathWhichShouldSucceed()