1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace JDesrosiers\Resourceful\SchemaControllerProvider\Test; |
4
|
|
|
|
5
|
|
|
use JDesrosiers\Resourceful\Resourceful; |
6
|
|
|
use JDesrosiers\Resourceful\ResourcefulServiceProvider\ResourcefulServiceProvider; |
7
|
|
|
use JDesrosiers\Resourceful\SchemaControllerProvider\SchemaControllerProvider; |
8
|
|
|
use PHPUnit_Framework_TestCase; |
9
|
|
|
use Symfony\Component\HttpFoundation\Response; |
10
|
|
|
use Symfony\Component\HttpKernel\Client; |
11
|
|
|
|
12
|
|
|
class SchemaControllerProviderTest extends PHPUnit_Framework_TestCase |
13
|
|
|
{ |
14
|
|
|
private $app; |
15
|
|
|
private $client; |
16
|
|
|
|
17
|
|
|
public function setUp() |
18
|
|
|
{ |
19
|
|
|
$this->app = new Resourceful(); |
20
|
|
|
$this->app["debug"] = true; |
21
|
|
|
|
22
|
|
|
$this->app->register(new ResourcefulServiceProvider(), [ |
23
|
|
|
"resourceful.schemas" => $this->getMockBuilder("Doctrine\Common\Cache\Cache")->getMock(), |
24
|
|
|
]); |
25
|
|
|
|
26
|
|
|
$this->app->mount("/schema", new SchemaControllerProvider()); |
|
|
|
|
27
|
|
|
$this->app->flush(); |
28
|
|
|
|
29
|
|
|
$this->client = new Client($this->app); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
public function testGet() |
33
|
|
|
{ |
34
|
|
|
$this->app["resourceful.schemas"]->method("contains") |
35
|
|
|
->willReturn(true); |
36
|
|
|
|
37
|
|
|
$schema = new \stdClass(); |
38
|
|
|
$schema->{'$schema'} = "http://json-schema.org/draft-04/hyper-schema"; |
39
|
|
|
$this->app["resourceful.schemas"]->method("fetch") |
40
|
|
|
->willReturn($schema); |
41
|
|
|
|
42
|
|
|
$headers = [ |
43
|
|
|
"HTTP_ACCEPT" => "application/json", |
44
|
|
|
]; |
45
|
|
|
$this->client->request("GET", "/schema/foo", [], [], $headers); |
46
|
|
|
$response = $this->client->getResponse(); |
47
|
|
|
|
48
|
|
|
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode()); |
49
|
|
|
$this->assertEquals("application/schema+json", $response->headers->get("Content-Type")); |
50
|
|
|
$this->assertEquals("<http://json-schema.org/draft-04/hyper-schema>; rel=\"describedby\"", $response->headers->get("Link")); |
51
|
|
|
$this->assertJsonStringEqualsJsonString(json_encode($schema), $response->getContent()); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
public function testGetWithDefaultSchema() |
55
|
|
|
{ |
56
|
|
|
$this->app["resourceful.schemas"]->method("contains") |
57
|
|
|
->willReturn(true); |
58
|
|
|
|
59
|
|
|
$this->app["resourceful.schemas"]->method("fetch") |
60
|
|
|
->willReturn(new \stdClass()); |
61
|
|
|
|
62
|
|
|
$headers = [ |
63
|
|
|
"HTTP_ACCEPT" => "application/json", |
64
|
|
|
]; |
65
|
|
|
$this->client->request("GET", "/schema/foo", [], [], $headers); |
66
|
|
|
$response = $this->client->getResponse(); |
67
|
|
|
|
68
|
|
|
$this->assertEquals(Response::HTTP_OK, $response->getStatusCode()); |
69
|
|
|
$this->assertEquals("application/schema+json", $response->headers->get("Content-Type")); |
70
|
|
|
$this->assertEquals("<http://json-schema.org/hyper-schema>; rel=\"describedby\"", $response->headers->get("Link")); |
71
|
|
|
$this->assertJsonStringEqualsJsonString('{}', $response->getContent()); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
public function testGetNotFound() |
75
|
|
|
{ |
76
|
|
|
$this->app["resourceful.schemas"]->method("fetch") |
77
|
|
|
->will($this->returnValueMap(["/schema/error" => true])); |
78
|
|
|
|
79
|
|
|
$headers = [ |
80
|
|
|
"HTTP_ACCEPT" => "application/json", |
81
|
|
|
]; |
82
|
|
|
$this->client->request("GET", "/schema/bar", [], [], $headers); |
83
|
|
|
$response = $this->client->getResponse(); |
84
|
|
|
$content = json_decode($response->getContent()); |
85
|
|
|
|
86
|
|
|
$this->assertEquals(Response::HTTP_NOT_FOUND, $response->getStatusCode()); |
87
|
|
|
$this->assertEquals("application/json", $response->headers->get("Content-Type")); |
88
|
|
|
$this->assertEquals("</schema/error>; rel=\"describedby\"", $response->headers->get("Link")); |
89
|
|
|
$this->assertEquals('Not Found', $content->message); |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: