123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Files_Sharing\Tests\Middleware;
- use OCA\Files_Sharing\Controller\ShareInfoController;
- use OCA\Files_Sharing\Exceptions\S2SException;
- use OCA\Files_Sharing\Middleware\ShareInfoMiddleware;
- use OCP\AppFramework\Controller;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\JSONResponse;
- use OCP\Share\IManager as ShareManager;
- use Test\TestCase;
- class ShareInfoMiddlewareTest extends TestCase {
- /** @var ShareManager|\PHPUnit\Framework\MockObject\MockObject */
- private $shareManager;
- /** @var ShareInfoMiddleware */
- private $middleware;
- protected function setUp(): void {
- parent::setUp();
- $this->shareManager = $this->createMock(ShareManager::class);
- $this->middleware = new ShareInfoMiddleware($this->shareManager);
- }
- public function testBeforeControllerNoShareInfo() {
- $this->shareManager->expects($this->never())
- ->method($this->anything());
- $this->middleware->beforeController($this->createMock(ShareInfoMiddlewareTestController::class), 'foo');
- }
- public function testBeforeControllerShareInfoNoS2s() {
- $this->shareManager->expects($this->once())
- ->method('outgoingServer2ServerSharesAllowed')
- ->willReturn(false);
- $this->expectException(S2SException::class);
- $this->middleware->beforeController($this->createMock(ShareInfoController::class), 'foo');
- }
- public function testBeforeControllerShareInfo() {
- $this->shareManager->expects($this->once())
- ->method('outgoingServer2ServerSharesAllowed')
- ->willReturn(true);
- $this->middleware->beforeController($this->createMock(ShareInfoController::class), 'foo');
- }
- public function testAfterExceptionNoShareInfo() {
- $exeption = new \Exception();
- try {
- $this->middleware->afterException($this->createMock(ShareInfoMiddlewareTestController::class), 'foo', $exeption);
- $this->fail();
- } catch (\Exception $e) {
- $this->assertSame($exeption, $e);
- }
- }
- public function testAfterExceptionNoS2S() {
- $exeption = new \Exception();
- try {
- $this->middleware->afterException($this->createMock(ShareInfoController::class), 'foo', $exeption);
- $this->fail();
- } catch (\Exception $e) {
- $this->assertSame($exeption, $e);
- }
- }
- public function testAfterExceptionS2S() {
- $expected = new JSONResponse([], Http::STATUS_NOT_FOUND);
- $this->assertEquals(
- $expected,
- $this->middleware->afterException($this->createMock(ShareInfoController::class), 'foo', new S2SException())
- );
- }
- public function testAfterControllerNoShareInfo() {
- $response = $this->createMock(Http\Response::class);
- $this->assertEquals(
- $response,
- $this->middleware->afterController($this->createMock(ShareInfoMiddlewareTestController::class), 'foo', $response)
- );
- }
- public function testAfterControllerNoJSON() {
- $response = $this->createMock(Http\Response::class);
- $this->assertEquals(
- $response,
- $this->middleware->afterController($this->createMock(ShareInfoController::class), 'foo', $response)
- );
- }
- public function testAfterControllerJSONok() {
- $data = ['foo' => 'bar'];
- $response = new JSONResponse($data);
- $expected = new JSONResponse([
- 'data' => $data,
- 'status' => 'success',
- ]);
- $this->assertEquals(
- $expected,
- $this->middleware->afterController($this->createMock(ShareInfoController::class), 'foo', $response)
- );
- }
- public function testAfterControllerJSONerror() {
- $data = ['foo' => 'bar'];
- $response = new JSONResponse($data, Http::STATUS_FORBIDDEN);
- $expected = new JSONResponse([
- 'data' => $data,
- 'status' => 'error',
- ], Http::STATUS_FORBIDDEN);
- $this->assertEquals(
- $expected,
- $this->middleware->afterController($this->createMock(ShareInfoController::class), 'foo', $response)
- );
- }
- }
- class ShareInfoMiddlewareTestController extends Controller {
- }
|