Skip to content

Commit 390a440

Browse files
authoredMay 27, 2021
Fix initialization of Result from Response (#22)
1 parent fd8326b commit 390a440

File tree

6 files changed

+30
-6
lines changed

6 files changed

+30
-6
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9+
## v0.4.2
10+
11+
### Fixed
12+
13+
- Fix initialization of Result from Response
14+
915
## v0.4.1
1016

1117
### Changed

‎examples/simple/sailor.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
use Spawnia\Sailor\Testing\MockClient;
99

1010
return [
11-
'simple' => new class extends EndpointConfig {
11+
'simple' => new class extends EndpointConfig
12+
{
1213
public function namespace(): string
1314
{
1415
return 'Spawnia\Sailor\Simple';

‎sailor.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
* This must return a map from endpoint names to EndpointConfig classes.
99
*/
1010
return [
11-
'example' => new class extends EndpointConfig {
11+
'example' => new class extends EndpointConfig
12+
{
1213
/**
1314
* Instantiate a client for Sailor to use for querying.
1415
*

‎src/Result.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ public static function fromResponse(Response $response): self
4444
$instance->errors = $response->errors ?? null;
4545
$instance->extensions = $response->extensions ?? null;
4646

47-
if (is_null($response->data)) {
48-
$instance->data = null;
49-
} else {
47+
if (isset($response->data)) {
5048
$instance->setData($response->data);
49+
} else {
50+
$instance->data = null;
5151
}
5252

5353
return $instance;

‎tests/Unit/IntrospectorTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ class IntrospectorTest extends TestCase
2727

2828
public function testPrintsIntrospection(): void
2929
{
30-
$endpointConfig = new class extends EndpointConfig {
30+
$endpointConfig = new class extends EndpointConfig
31+
{
3132
public function makeClient(): Client
3233
{
3334
$mockClient = new MockClient();

‎tests/Unit/ResultTest.php

+15
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,19 @@ public function testErrorFree(): void
3939
$this->expectException(ResultErrorsException::class);
4040
$result->errorFree();
4141
}
42+
43+
public function testWithErrors(): void
44+
{
45+
$result = MyScalarQueryResult::fromStdClass((object) [
46+
'errors' => [
47+
(object) [
48+
'message' => 'foo',
49+
],
50+
],
51+
]);
52+
self::assertNull($result->data);
53+
self::assertNotNull($result->errors);
54+
self::assertCount(1, $result->errors);
55+
self::assertNull($result->extensions);
56+
}
4257
}

0 commit comments

Comments
 (0)