-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathCreateRequestWithDefaultsTest.php
More file actions
131 lines (115 loc) · 2.97 KB
/
Copy pathCreateRequestWithDefaultsTest.php
File metadata and controls
131 lines (115 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
namespace Intercom\Tests\Core\Pagination;
use PHPUnit\Framework\TestCase;
use Intercom\Core\Pagination\PaginationHelper;
class SearchRequest
{
/**
* @var ?StartingAfterPaging $pagination
*/
public ?StartingAfterPaging $pagination;
/**
* @var SingleFilterSearchRequest|MultipleFilterSearchRequest $query
*/
public SingleFilterSearchRequest|MultipleFilterSearchRequest $query;
/**
* @param array{
* pagination?: ?StartingAfterPaging,
* query: SingleFilterSearchRequest|MultipleFilterSearchRequest,
* } $values
*/
public function __construct(
array $values,
) {
$this->pagination = $values['pagination'] ?? null;
$this->query = $values['query'];
}
}
class StartingAfterPaging
{
/**
* @var int $perPage
*/
public int $perPage;
/**
* @var ?string $startingAfter
*/
public ?string $startingAfter;
/**
* @param array{
* perPage: int,
* startingAfter?: ?string,
* } $values
*/
public function __construct(
array $values,
) {
$this->perPage = $values['perPage'];
$this->startingAfter = $values['startingAfter'] ?? null;
}
}
class SingleFilterSearchRequest
{
/**
* @var ?string $field
*/
public ?string $field;
/**
* @var ?string $operator
*/
public ?string $operator;
/**
* @var ?string $value
*/
public ?string $value;
/**
* @param array{
* field?: ?string,
* operator?: ?string,
* value?: ?string,
* } $values
*/
public function __construct(
array $values = [],
) {
$this->field = $values['field'] ?? null;
$this->operator = $values['operator'] ?? null;
$this->value = $values['value'] ?? null;
}
}
class MultipleFilterSearchRequest
{
/**
* @var ?string $operator
*/
public ?string $operator;
/**
* @var array<MultipleFilterSearchRequest>|array<SingleFilterSearchRequest>|null $value
*/
public array|null $value;
/**
* @param array{
* operator?: ?string,
* value?: array<MultipleFilterSearchRequest>|array<SingleFilterSearchRequest>|null,
* } $values
*/
public function __construct(
array $values = [],
) {
$this->operator = $values['operator'] ?? null;
$this->value = $values['value'] ?? null;
}
}
class CreateRequestWithDefaultsTest extends TestCase
{
public function testCreateInstanceWithDefaults(): void
{
$instance = PaginationHelper::createRequestWithDefaults(SearchRequest::class);
$this->assertInstanceOf(SearchRequest::class, $instance);
$this->assertNull($instance->pagination);
$this->assertInstanceOf(SingleFilterSearchRequest::class, $instance->query);
$this->assertNull($instance->query->field);
$this->assertNull($instance->query->operator);
$this->assertNull($instance->query->value);
}
}