mirror of
https://github.com/jonathan-martz/pocketbase-php-sdk.git
synced 2026-04-03 07:27:42 +00:00
refactoring collection a little bit, adjust token from collection manual,write some test for the simple logic, fixing superusers authAdmin
This commit is contained in:
48
tests/ClientTest.php
Normal file
48
tests/ClientTest.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
use Pb\Client;
|
||||
use Pb\Collection;
|
||||
use Pb\Settings;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class ClientTest extends TestCase
|
||||
{
|
||||
private Collection $collection;
|
||||
private ?string $url;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
$this->collection = new Collection($this->url, 'users');
|
||||
}
|
||||
|
||||
public function test_collection(): void
|
||||
{
|
||||
$pb = new Client($this->url);
|
||||
|
||||
$actual = $pb->collection('users');
|
||||
|
||||
$this->assertEquals($actual, $this->collection);
|
||||
}
|
||||
|
||||
public function test_settings(): void
|
||||
{
|
||||
$pb = new Client($this->url);
|
||||
|
||||
$actual = $pb->settings();
|
||||
|
||||
$this->assertEquals($actual, new Settings($this->url));
|
||||
}
|
||||
|
||||
public function test_setToken(){
|
||||
$token = 'test123';
|
||||
|
||||
$pb = new Client($this->url);
|
||||
$pb->setAuthToken($token);
|
||||
|
||||
$this->assertEquals($token, $pb->getAuthToken());
|
||||
$this->assertEquals($token, $pb->token);
|
||||
$pb->token = 'test456';
|
||||
$this->assertEquals('test456', $pb->getAuthToken());
|
||||
}
|
||||
}
|
||||
55
tests/CollectionGetFirstListItemTest.php
Normal file
55
tests/CollectionGetFirstListItemTest.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
use Pb\Collection;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class CollectionGetFirstListItemTest extends TestCase
|
||||
{
|
||||
private Collection $collection;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
$this->collection = new Collection($url, 'users');
|
||||
}
|
||||
|
||||
public function test_getOne(): void
|
||||
{
|
||||
$id = '6588yk36406qqv1';
|
||||
$actual = $this->collection->getFirstListItem('id="'.$id.'"');
|
||||
$expected = [
|
||||
'avatar' => '',
|
||||
'collectionId' => '_pb_users_auth_',
|
||||
'collectionName' => 'users',
|
||||
'created' => '2025-01-21 21:22:47.002Z',
|
||||
'emailVisibility' => false,
|
||||
'id' => '6588yk36406qqv1',
|
||||
'name' => 'Jonathan Martz',
|
||||
'updated' => '2025-01-21 21:22:47.002Z',
|
||||
'verified' => true
|
||||
];
|
||||
|
||||
$this->assertEquals($expected, $actual);
|
||||
$this->assertCount(9, $actual);
|
||||
}
|
||||
|
||||
public function test_getOneWrongId(): void
|
||||
{
|
||||
$id = '6588yk36406qqva';
|
||||
$actual = $this->collection->getFirstListItem('id="'.$id.'"');
|
||||
$expected = [
|
||||
'avatar' => '',
|
||||
'collectionId' => '_pb_users_auth_',
|
||||
'collectionName' => 'users',
|
||||
'created' => '2025-01-21 21:22:47.002Z',
|
||||
'emailVisibility' => false,
|
||||
'id' => '6588yk36406qqv1',
|
||||
'name' => 'Jonathan Martz',
|
||||
'updated' => '2025-01-21 21:22:47.002Z',
|
||||
'verified' => true
|
||||
];
|
||||
|
||||
$this->assertEquals($expected, $actual);
|
||||
$this->assertCount(9,$actual);
|
||||
}
|
||||
}
|
||||
28
tests/CollectionGetFullListTest.php
Normal file
28
tests/CollectionGetFullListTest.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use Pb\Collection;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class CollectionGetFullListTest extends TestCase
|
||||
{
|
||||
private string $url;
|
||||
private Collection $collection;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
$this->collection = new Collection($this->url, 'users');
|
||||
}
|
||||
|
||||
public function test_getFullList_gettingArrayWithOneUser(): void
|
||||
{
|
||||
$actual = $this->collection->getFullList([],100);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(1, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
}
|
||||
76
tests/CollectionGetListTest.php
Normal file
76
tests/CollectionGetListTest.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
use Pb\Collection;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class CollectionGetListTest extends TestCase
|
||||
{
|
||||
private string $url;
|
||||
private Collection $collection;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
$this->collection = new Collection($this->url, 'users');
|
||||
}
|
||||
|
||||
public function test_getList_gettingArrayWithOneItem(): void
|
||||
{
|
||||
$actual = $this->collection->getList(1, 10);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(1, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
|
||||
public function test_getListWithContainsMartz(): void
|
||||
{
|
||||
$actual = $this->collection->getList(1, 10, ['filter'=>'name~"%Martz%"']);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(1, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
|
||||
public function test_getListStartsWithMartz(): void
|
||||
{
|
||||
$actual = $this->collection->getList(1, 10, ['filter'=>'name~"Martz%"']);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(0, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
|
||||
public function test_getListStartWithJonathan(): void
|
||||
{
|
||||
$actual = $this->collection->getList(1, 10, ['filter'=>'name~"Jonathan%"']);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(1, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
|
||||
public function test_getListCheckingDifferentName(): void
|
||||
{
|
||||
$actual = $this->collection->getList(1, 10, ['filter'=>'name~"%Sibylle%"']);
|
||||
|
||||
$this->assertArrayHasKey('items', $actual, 'Key "items" does not exist in the response.');
|
||||
$this->assertArrayHasKey('page', $actual, 'Key "page" does not exist in the response.');
|
||||
$this->assertArrayHasKey('perPage', $actual, 'Key "perPage" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalItems', $actual, 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertArrayHasKey('totalPages', $actual, 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(0, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
}
|
||||
50
tests/CollectionGetOneTest.php
Normal file
50
tests/CollectionGetOneTest.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use Pb\Collection;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class CollectionGetOneTest extends TestCase
|
||||
{
|
||||
private string $url;
|
||||
private Collection $collection;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
$this->collection = new Collection($this->url, 'users');
|
||||
}
|
||||
|
||||
public function test_getOne(): void
|
||||
{
|
||||
$id = '6588yk36406qqv1';
|
||||
$actual = $this->collection->getOne($id);
|
||||
$expected = [
|
||||
'avatar' => '',
|
||||
'collectionId' => '_pb_users_auth_',
|
||||
'collectionName' => 'users',
|
||||
'created' => '2025-01-21 21:22:47.002Z',
|
||||
'emailVisibility' => false,
|
||||
'id' => '6588yk36406qqv1',
|
||||
'name' => 'Jonathan Martz',
|
||||
'updated' => '2025-01-21 21:22:47.002Z',
|
||||
'verified' => true
|
||||
];
|
||||
|
||||
$this->assertEquals($expected, $actual);
|
||||
$this->assertCount(9, $actual);
|
||||
}
|
||||
|
||||
public function test_getOneWrongId(): void
|
||||
{
|
||||
$id = '6588yk36406qqva';
|
||||
$actual = $this->collection->getOne($id);
|
||||
$expected = [
|
||||
'data' => [],
|
||||
'message' => "The requested resource wasn't found.",
|
||||
'status' => 404,
|
||||
];
|
||||
|
||||
$this->assertEquals($expected, $actual);
|
||||
$this->assertCount(3,$actual);
|
||||
}
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
<?php declare(strict_types=1);
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class CollectionTest extends TestCase
|
||||
{
|
||||
private $url;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->url = getenv('POCKETBASE_URL') ?: 'https://admin.pocketbase.dev';
|
||||
}
|
||||
|
||||
public function test_givenUrlAndCollectionNameUsers_thenCheckEmptyResult(): void
|
||||
{
|
||||
$collection = new \Pb\Collection($this->url, 'users');
|
||||
$actual = $collection->getList(1, 10);
|
||||
|
||||
$this->assertTrue(array_key_exists('items', $actual), 'Key "items" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('page', $actual), 'Key "page" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('perPage', $actual), 'Key "perPage" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('totalItems', $actual), 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('totalPages', $actual), 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(0, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
|
||||
public function test_givenFilterByName_thenCheckEmptyResult(): void
|
||||
{
|
||||
$collection = new \Pb\Collection($this->url, 'users', [
|
||||
'filter' => 'name ~ "%Jonathan%"'
|
||||
]);
|
||||
$actual = $collection->getList(1, 10);
|
||||
|
||||
$this->assertTrue(array_key_exists('items', $actual), 'Key "items" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('page', $actual), 'Key "page" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('perPage', $actual), 'Key "perPage" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('totalItems', $actual), 'Key "totalItems" does not exist in the response.');
|
||||
$this->assertTrue(array_key_exists('totalPages', $actual), 'Key "totalPages" does not exist in the response.');
|
||||
$this->assertCount(1, $actual['items'], 'Expected no items in the response.');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user