mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Merge pull request #7962 from deanurag/fix-7880-adding-hongkong-to-countries
FIX-7880-added-HongKong-to-countries.php
This commit is contained in:
@@ -73,6 +73,7 @@ return [
|
||||
'GD',
|
||||
'GT',
|
||||
'GY',
|
||||
'HK',
|
||||
'HN',
|
||||
'HR',
|
||||
'HT',
|
||||
|
||||
@@ -33,7 +33,7 @@ class BatchTest extends Scope
|
||||
$this->assertArrayNotHasKey('errors', $response['body'][1]);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
|
||||
$this->assertArrayHasKey('localeListContinents', $response['body'][1]['data']);
|
||||
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(7, $response['body'][1]['data']['localeListContinents']['total']);
|
||||
}
|
||||
|
||||
@@ -56,8 +56,8 @@ class BatchTest extends Scope
|
||||
$this->assertArrayNotHasKey('errors', $response['body'][1]);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][1]['data']);
|
||||
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(195, $response['body'][1]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][1]['data']['localeListCountries']['total']);
|
||||
}
|
||||
|
||||
public function testArrayBatchedMutations()
|
||||
@@ -184,7 +184,7 @@ class BatchTest extends Scope
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
|
||||
$this->assertArrayHasKey('localeListContinents', $response['body'][1]['data']);
|
||||
$this->assertArrayHasKey('accountCreate', $response['body'][2]['data']);
|
||||
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(7, $response['body'][1]['data']['localeListContinents']['total']);
|
||||
$this->assertEquals('Tester 1', $response['body'][2]['data']['accountCreate']['name']);
|
||||
}
|
||||
@@ -225,8 +225,8 @@ class BatchTest extends Scope
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][1]['data']);
|
||||
$this->assertArrayHasKey('accountCreate', $response['body'][2]['data']);
|
||||
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(195, $response['body'][1]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][1]['data']['localeListCountries']['total']);
|
||||
$this->assertArrayHasKey('_id', $response['body'][2]['data']['accountCreate']);
|
||||
}
|
||||
|
||||
@@ -251,7 +251,7 @@ class BatchTest extends Scope
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body']['data']);
|
||||
$this->assertArrayHasKey('localeListContinents', $response['body']['data']);
|
||||
$this->assertEquals(195, $response['body']['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body']['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(7, $response['body']['data']['localeListContinents']['total']);
|
||||
}
|
||||
|
||||
@@ -275,7 +275,7 @@ class BatchTest extends Scope
|
||||
$this->assertIsArray($response['body']['data']);
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body']['data']);
|
||||
$this->assertEquals(195, $response['body']['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body']['data']['localeListCountries']['total']);
|
||||
}
|
||||
|
||||
public function testQueryBatchedMutations()
|
||||
|
||||
@@ -30,7 +30,7 @@ class ContentTypeTest extends Scope
|
||||
$this->assertIsArray($response['body']['data']);
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$response = $response['body']['data']['localeListCountries'];
|
||||
$this->assertEquals(195, $response['total']);
|
||||
$this->assertEquals(196, $response['total']);
|
||||
}
|
||||
|
||||
public function testSingleQueryJSONContentType()
|
||||
@@ -46,7 +46,7 @@ class ContentTypeTest extends Scope
|
||||
$this->assertIsArray($response['body']['data']);
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$response = $response['body']['data']['localeListCountries'];
|
||||
$this->assertEquals(195, $response['total']);
|
||||
$this->assertEquals(196, $response['total']);
|
||||
}
|
||||
|
||||
public function testArrayBatchedJSONContentType()
|
||||
@@ -69,7 +69,7 @@ class ContentTypeTest extends Scope
|
||||
$this->assertArrayNotHasKey('errors', $response['body'][1]);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body'][0]['data']);
|
||||
$this->assertArrayHasKey('localeListContinents', $response['body'][1]['data']);
|
||||
$this->assertEquals(195, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body'][0]['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(7, $response['body'][1]['data']['localeListContinents']['total']);
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ class ContentTypeTest extends Scope
|
||||
$this->assertArrayNotHasKey('errors', $response['body']);
|
||||
$this->assertArrayHasKey('localeListCountries', $response['body']['data']);
|
||||
$this->assertArrayHasKey('localeListContinents', $response['body']['data']);
|
||||
$this->assertEquals(195, $response['body']['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(196, $response['body']['data']['localeListCountries']['total']);
|
||||
$this->assertEquals(7, $response['body']['data']['localeListContinents']['total']);
|
||||
}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ trait LocaleBase
|
||||
|
||||
$this->assertEquals($response['headers']['status-code'], 200);
|
||||
$this->assertIsArray($response['body']);
|
||||
$this->assertEquals(195, $response['body']['total']);
|
||||
$this->assertEquals(196, $response['body']['total']);
|
||||
$this->assertEquals($response['body']['countries'][0]['name'], 'Afghanistan');
|
||||
$this->assertEquals($response['body']['countries'][0]['code'], 'AF');
|
||||
|
||||
@@ -59,7 +59,7 @@ trait LocaleBase
|
||||
|
||||
$this->assertEquals($response['headers']['status-code'], 200);
|
||||
$this->assertIsArray($response['body']);
|
||||
$this->assertEquals(195, $response['body']['total']);
|
||||
$this->assertEquals(196, $response['body']['total']);
|
||||
$this->assertEquals($response['body']['countries'][0]['name'], 'Afganistán');
|
||||
$this->assertEquals($response['body']['countries'][0]['code'], 'AF');
|
||||
|
||||
@@ -247,7 +247,7 @@ trait LocaleBase
|
||||
}
|
||||
|
||||
$this->assertEquals($response['headers']['status-code'], 200);
|
||||
$this->assertEquals(195, $response['body']['total']);
|
||||
$this->assertEquals(196, $response['body']['total']);
|
||||
|
||||
$response = $this->client->call(Client::METHOD_GET, '/locale/continents', [
|
||||
'content-type' => 'application/json',
|
||||
|
||||
Reference in New Issue
Block a user