2024-10-15 19:58:33 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2024-10-15 22:01:20 +03:00
|
|
|
use App\Models\User;
|
2024-10-15 19:58:33 +03:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class UserTest extends TestCase
|
|
|
|
{
|
2024-10-15 22:01:20 +03:00
|
|
|
// FIXME: tests should be
|
|
|
|
// grouped and be separated in several files
|
|
|
|
|
|
|
|
public function test_success_get_users(): void
|
|
|
|
{
|
|
|
|
$this->get('/user')
|
|
|
|
->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_success_get_one_user(): void
|
|
|
|
{
|
|
|
|
$user = User::query()->first();
|
|
|
|
|
|
|
|
$this->get('/user/' . $user->id)
|
|
|
|
->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_fail_get_user_not_exists(): void
|
|
|
|
{
|
|
|
|
$this->get('/user/99999999')
|
|
|
|
->assertNotFound();
|
|
|
|
|
|
|
|
// FIXME: Not Fount or Bad request? or any else error?
|
|
|
|
// Maybe parse exception: id is numeric
|
|
|
|
// but in future updates id
|
|
|
|
// will be uuid, it is safer
|
|
|
|
$this->get('/user/sehtrgher')
|
|
|
|
->assertNotFound();
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: below tests should be in AuthTest
|
|
|
|
public function test_user_can_sign_up_with_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_user_cannot_sign_up_with_not_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_user_can_sign_in_with_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_user_cannot_sign_in_with_not_validate_data_or_wrong_credentials(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
// FIXME: above tests should be in AuthTest
|
|
|
|
|
|
|
|
// FIXME: admin tests in separate file
|
|
|
|
public function test_admin_can_create_user_with_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_admin_cannot_create_user_with_not_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_admin_can_update_user_with_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_admin_cannot_update_user_with_not_validate_data(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_admin_can_delete_user_that_exists(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_admin_cannot_delete_user_that_not_exists(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_unauthorized_cannot_do_admin_actions(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_user_cannot_do_admin_actions(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
2024-10-15 19:58:33 +03:00
|
|
|
}
|