-
-
Notifications
You must be signed in to change notification settings - Fork 342
/
Copy pathParseCloudTest.php
242 lines (210 loc) · 6.33 KB
/
ParseCloudTest.php
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<?php
namespace Parse\Test;
use Parse\ParseCloud;
use Parse\ParseGeoPoint;
use Parse\ParseObject;
use Parse\ParseUser;
use PHPUnit\Framework\TestCase;
class ParseCloudTest extends TestCase
{
public static function setUpBeforeClass() : void
{
Helper::setUp();
}
public function tearDown() : void
{
$user = ParseUser::getCurrentUser();
if (isset($user)) {
ParseUser::logOut();
$user->destroy(true);
}
// Reset the callable after each test
ParseCloud::setRequestCallable(function($method, $path, $sessionToken = null, $data = null, $useMasterKey = false, $contentType = 'application/json', $returnHeaders = false) {
return \Parse\ParseClient::_request($method, $path, $sessionToken, $data, $useMasterKey, $contentType, $returnHeaders);
});
parent::tearDown();
}
/**
* @group cloud-code
*/
public function testFunctionCall()
{
$response = ParseCloud::run('bar', [
'key1' => 'value2',
'key2' => 'value1'
]);
$this->assertEquals('Foo', $response);
}
public function testFunctionCallWithUser()
{
$user = new ParseUser();
$user->setUsername("someuser");
$user->setPassword("somepassword");
$user->signUp();
$response = ParseCloud::run('bar', [
'key1' => 'value2',
'key2' => 'value1'
]);
$this->assertEquals('Foo', $response);
ParseUser::logOut();
$user->destroy(true);
}
/**
* @group cloud-code
*/
public function testFunctionCallException()
{
$this->expectException(
'\Parse\ParseException',
'bad stuff happened'
);
ParseCloud::run('bar', [
'key1' => 'value1',
'key2' => 'value2'
]);
}
/**
* @group cloud-code
*/
public function testFunctionCallWithNullParams()
{
$this->expectException(
'Parse\ParseException',
'bad stuff happened'
);
$response = ParseCloud::run('bar', null);
}
/**
* @group cloud-code
*/
public function testFunctionCallWithEmptyParams() {
$this->expectException(
'Parse\ParseException',
'bad stuff happened'
);
$response = ParseCloud::run('bar', []);
}
/**
* @group cloud-code
*/
public function testFunctionCallWithoutResultKey()
{
// Mock the _request method to return a response without the 'result' key
$mockResponse = [];
$mockCallable = $this->getMockBuilder(\stdClass::class)
->addMethods(['__invoke'])
->getMock();
$mockCallable->expects($this->once())
->method('__invoke')
->willReturn($mockResponse);
// Set the mock callable in ParseCloud
ParseCloud::setRequestCallable($mockCallable);
$response = ParseCloud::run('bar', [
'key1' => 'value2',
'key2' => 'value1'
]);
// Since 'result' key is missing, the default value is returned
$this->assertEquals([], $response);
}
/**
* @group cloud-code
*/
public function testFunctionsWithObjectParamsFails()
{
// login as user
$obj = ParseObject::create('SomeClass');
$obj->set('name', 'Zanzibar');
$obj->save();
$params = ['key1' => $obj];
$this->expectException('\Exception', 'ParseObjects not allowed');
ParseCloud::run('foo', $params);
}
/**
* @group cloud-code
*/
public function testFunctionsWithGeoPointParamsDoNotThrow()
{
$params = ['key1' => new ParseGeoPoint(50, 50)];
$this->expectException(
'Parse\ParseException',
'Invalid function: "unknown_function"'
);
ParseCloud::run('unknown_function', $params);
}
/**
* @group cloud-code
*/
public function testUnknownFunctionFailure()
{
$params = ['key1' => 'value1'];
$this->expectException(
'Parse\ParseException',
'Invalid function: "unknown_function"'
);
ParseCloud::run('unknown_function', $params);
}
/**
* @group cloud-code-jobs
*/
public function testGetJobsData()
{
$jobsData = ParseCloud::getJobsData();
$this->assertNotNull($jobsData['jobs']);
$this->assertNotNull($jobsData['in_use']);
$this->assertEquals(0, count($jobsData['in_use']));
$this->assertEquals(3, count($jobsData['jobs']));
}
/**
* @group cloud-code-jobs
*/
public function testRunJob()
{
$jobStatusId = ParseCloud::startJob('CloudJob1', [
'startedBy' => 'Monty Python'
]);
$this->assertNotNull($jobStatusId);
$jobStatus = ParseCloud::getJobStatus($jobStatusId);
$this->assertNotNull($jobStatus);
$this->assertEquals('succeeded', $jobStatus->get('status'));
$this->assertEquals('Monty Python', $jobStatus->get('params')['startedBy']);
}
/**
* @group cloud-code-jobs
*/
public function testLongJob()
{
$jobStatusId = ParseCloud::startJob('CloudJob2');
$jobStatus = ParseCloud::getJobStatus($jobStatusId);
$this->assertNotNull($jobStatus);
$this->assertEquals('running', $jobStatus->get('status'));
}
/**
* @group cloud-code-jobs
*/
public function testBadJob()
{
$this->expectException('Parse\ParseException', 'Invalid job.');
ParseCloud::startJob('bad_job');
}
/**
* @group cloud-code-jobs
*/
public function testFailingJob()
{
$jobStatusId = ParseCloud::startJob('CloudJobFailing');
$this->assertNotNull($jobStatusId);
$jobStatus = ParseCloud::getJobStatus($jobStatusId);
$this->assertNotNull($jobStatus);
$this->assertEquals('failed', $jobStatus->get('status'));
$this->assertEquals('cloud job failed', $jobStatus->get('message'));
}
/**
* @group cloud-code-jobs
*/
public function testGettingNotARealJobStatus()
{
$this->expectException('Parse\ParseException', 'Object not found.');
$jobStatus = ParseCloud::getJobStatus('not-a-real-job-status');
$this->assertNull($jobStatus);
}
}