1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/cases/REST/NextCloudNews/TestVersions.php

55 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2017-12-22 03:47:19 +00:00
namespace JKingWeb\Arsse\TestCase\REST\NextCloudNews;
2017-08-29 14:50:31 +00:00
2017-12-22 03:47:19 +00:00
use JKingWeb\Arsse\REST\NextCloudNews\Versions;
use Psr\Http\Message\ResponseInterface;
use Zend\Diactoros\ServerRequest;
use Zend\Diactoros\Response\JsonResponse as Response;
use Zend\Diactoros\Response\EmptyResponse;
2017-07-20 22:36:03 +00:00
/** @covers \JKingWeb\Arsse\REST\NextCloudNews\Versions */
2017-12-22 03:47:19 +00:00
class TestVersions extends \JKingWeb\Arsse\Test\AbstractTest {
2017-08-29 14:50:31 +00:00
public function setUp() {
$this->clearData();
}
protected function req(string $method, string $target): ResponseInterface {
$url = "/index.php/apps/news/api".$target;
$server = [
'REQUEST_METHOD' => $method,
'REQUEST_URI' => $url,
];
$req = new ServerRequest($server, [], $url, $method, "php://memory");
$req = $req->withRequestTarget($target);
return (new Versions)->dispatch($req);
}
2017-08-29 14:50:31 +00:00
public function testFetchVersionList() {
$exp = new Response(['apiLevels' => ['v1-2']]);
$this->assertResponse($exp, $this->req("GET", "/"));
$this->assertResponse($exp, $this->req("GET", "/"));
$this->assertResponse($exp, $this->req("GET", "/"));
}
public function testRespondToOptionsRequest() {
$exp = new EmptyResponse(204, ['Allow' => "HEAD,GET"]);
$this->assertResponse($exp, $this->req("OPTIONS", "/"));
}
2017-08-29 14:50:31 +00:00
public function testUseIncorrectMethod() {
$exp = new EmptyResponse(405, ['Allow' => "HEAD,GET"]);
$this->assertResponse($exp, $this->req("POST", "/"));
}
2017-08-29 14:50:31 +00:00
public function testUseIncorrectPath() {
$exp = new EmptyResponse(404);
$this->assertResponse($exp, $this->req("GET", "/ook"));
$this->assertResponse($exp, $this->req("OPTIONS", "/ook"));
}
2017-08-29 14:50:31 +00:00
}