1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

Added missing test

This commit is contained in:
Eldad Fux 2021-01-10 13:56:48 +02:00
parent 3721910363
commit 59c8ae731b

View file

@ -125,12 +125,12 @@ trait UsersBase
/**
* @depends testGetUser
*/
public function testUpdateUserPrefs(array $data):array
public function testUpdateAndGetUserPrefs(array $data):array
{
/**
* Test for SUCCESS
*/
$user = $this->client->call(Client::METHOD_PATCH, '/users/' . $data['userId'] . '/prefs', array_merge([
$user = $this->client->call(Client::METHOD_PATCH, '/users/'.$data['userId'].'/prefs', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
], $this->getHeaders()), [
@ -144,6 +144,17 @@ trait UsersBase
$this->assertEquals($user['body']['funcKey1'], 'funcValue1');
$this->assertEquals($user['body']['funcKey2'], 'funcValue2');
$user = $this->client->call(Client::METHOD_GET, '/users/'.$data['userId'].'/prefs', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
], $this->getHeaders()));
$this->assertEquals($user['headers']['status-code'], 200);
$this->assertEquals($user['body'], [
'funcKey1' => 'funcValue1',
'funcKey2' => 'funcValue2',
]);
/**
* Test for FAILURE
*/