mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-24 01:03:35 +01:00
176 lines
3.6 KiB
PHP
176 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\User;
|
|
use Tests\TestCase;
|
|
use Illuminate\Auth\Authenticatable;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class UserTest extends TestCase
|
|
{
|
|
/** @var \App\User */
|
|
protected $user;
|
|
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->user = factory(User::class)->create();
|
|
}
|
|
|
|
|
|
/**
|
|
* test User creation via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserCreation()
|
|
{
|
|
$response = $this->json('POST', '/api/register', [
|
|
'name' => 'testCreate',
|
|
'email' => 'testCreate@example.org',
|
|
'password' => 'test',
|
|
'password_confirmation' => 'test',
|
|
]);
|
|
|
|
$response->assertStatus(200)
|
|
->assertJsonStructure([
|
|
'success' => ['token', 'name']
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User creation with missing values via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserCreationWithMissingValues()
|
|
{
|
|
$response = $this->json('POST', '/api/register', [
|
|
'name' => '',
|
|
'email' => '',
|
|
'password' => '',
|
|
'password_confirmation' => '',
|
|
]);
|
|
|
|
$response->assertStatus(400);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User creation with invalid values via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserCreationWithInvalidData()
|
|
{
|
|
$response = $this->json('POST', '/api/register', [
|
|
'name' => 'testInvalid',
|
|
'email' => 'email',
|
|
'password' => 'test',
|
|
'password_confirmation' => 'tset',
|
|
]);
|
|
|
|
$response->assertStatus(400);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User login via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserLogin()
|
|
{
|
|
$response = $this->json('POST', '/api/login', [
|
|
'email' => $this->user->email,
|
|
'password' => 'password'
|
|
]);
|
|
|
|
$response->assertStatus(200)
|
|
->assertJsonStructure([
|
|
'success' => ['token']
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User login with missing values via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserLoginWithMissingValues()
|
|
{
|
|
$response = $this->json('POST', '/api/login', [
|
|
'email' => '',
|
|
'password' => ''
|
|
]);
|
|
|
|
$response->assertStatus(400);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User login with invalid credentials via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserLoginWithInvalidCredential()
|
|
{
|
|
$response = $this->json('POST', '/api/login', [
|
|
'email' => $this->user->email,
|
|
'password' => 'badPassword'
|
|
]);
|
|
|
|
$response->assertStatus(401)
|
|
->assertJson([
|
|
'error' => 'Unauthorised'
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User logout via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testUserLogout()
|
|
{
|
|
$credentials = [
|
|
'email' => $this->user->email,
|
|
'password' => 'password'
|
|
];
|
|
|
|
Auth::attempt($credentials);
|
|
$token = Auth::user()->createToken('testToken')->accessToken;
|
|
$headers = ['Authorization' => "Bearer $token"];
|
|
|
|
$response = $this->json('POST', '/api/logout', [], $headers)
|
|
->assertStatus(200)
|
|
->assertJson([
|
|
'success' => 'signed out',
|
|
]);
|
|
}
|
|
|
|
|
|
/**
|
|
* test User logout via API
|
|
*
|
|
* @test
|
|
*/
|
|
public function testGetUserDetails()
|
|
{
|
|
$response = $this->actingAs($this->user, 'api')
|
|
->json('GET', '/api/user')
|
|
->assertStatus(200)
|
|
->assertJsonStructure(['id', 'name', 'email']);
|
|
}
|
|
|
|
}
|