mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Merge remote-tracking branch 'origin/1.5.x' into fix-message-status
This commit is contained in:
@@ -63,7 +63,7 @@ class AccountTest extends Scope
|
||||
|
||||
$this->assertArrayNotHasKey('errors', $session['body']);
|
||||
$this->assertIsArray($session['body']['data']);
|
||||
$this->assertIsArray($session['body']['data']['accountCreateEmailSession']);
|
||||
$this->assertIsArray($session['body']['data']['accountCreateEmailPasswordSession']);
|
||||
|
||||
$cookie = $session['cookies']['a_session_' . $this->getProject()['$id']];
|
||||
$this->assertNotEmpty($cookie);
|
||||
|
||||
@@ -1186,7 +1186,7 @@ trait Base
|
||||
}';
|
||||
case self::$CREATE_ACCOUNT_SESSION:
|
||||
return 'mutation createAccountEmailSession($email: String!, $password: String!){
|
||||
accountCreateEmailSession(email: $email, password: $password) {
|
||||
accountCreateEmailPasswordSession(email: $email, password: $password) {
|
||||
_id
|
||||
userId
|
||||
expire
|
||||
|
||||
@@ -287,7 +287,7 @@ class BatchTest extends Scope
|
||||
accountCreate(userId: $userId, email: $email, password: $password, name: $name) {
|
||||
name
|
||||
}
|
||||
accountCreateEmailSession(email: $email, password: $password) {
|
||||
accountCreateEmailPasswordSession(email: $email, password: $password) {
|
||||
expire
|
||||
}
|
||||
}',
|
||||
@@ -308,7 +308,7 @@ class BatchTest extends Scope
|
||||
$this->assertIsArray($response['body']['data']);
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$this->assertArrayHasKey('accountCreate', $response['body']['data']);
|
||||
$this->assertArrayHasKey('accountCreateEmailSession', $response['body']['data']);
|
||||
$this->assertArrayHasKey('accountCreateEmailPasswordSession', $response['body']['data']);
|
||||
$this->assertEquals('Tester', $response['body']['data']['accountCreate']['name']);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user