mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 13:14:23 +01:00
311 lines
8.7 KiB
PHP
311 lines
8.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Http\Auth;
|
|
|
|
use App\Models\Group;
|
|
use App\Models\TwoFAccount;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Tests\FeatureTestCase;
|
|
|
|
/**
|
|
* @covers \App\Http\Controllers\Auth\UserController
|
|
* @covers \App\Http\Middleware\RejectIfDemoMode
|
|
* @covers \App\Http\Requests\UserUpdateRequest
|
|
*/
|
|
class UserControllerTest extends FeatureTestCase
|
|
{
|
|
/**
|
|
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
|
|
*/
|
|
protected $user;
|
|
|
|
private const NEW_USERNAME = 'Jane DOE';
|
|
|
|
private const NEW_EMAIL = 'janedoe@example.org';
|
|
|
|
private const PASSWORD = 'password';
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setUp() : void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->user = User::factory()->create();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_returns_success()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => self::NEW_USERNAME,
|
|
'email' => self::NEW_EMAIL,
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertOk()
|
|
->assertExactJson([
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_without_changing_email_returns_success()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => self::NEW_USERNAME,
|
|
'email' => $this->user->email,
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertOk()
|
|
->assertExactJson([
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => $this->user->email,
|
|
'is_admin' => false,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => $this->user->email,
|
|
'is_admin' => false,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_without_changing_name_returns_success()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => $this->user->name,
|
|
'email' => self::NEW_EMAIL,
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertOk()
|
|
->assertExactJson([
|
|
'name' => $this->user->name,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => $this->user->name,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_with_uppercased_email_returns_success()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => self::NEW_USERNAME,
|
|
'email' => strtoupper(self::NEW_EMAIL),
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertOk()
|
|
->assertExactJson([
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => self::NEW_USERNAME,
|
|
'id' => $this->user->id,
|
|
'email' => self::NEW_EMAIL,
|
|
'is_admin' => false,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_in_demo_mode_returns_unchanged_user()
|
|
{
|
|
Config::set('2fauth.config.isDemoApp', true);
|
|
|
|
$name = $this->user->name;
|
|
$email = $this->user->email;
|
|
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => self::NEW_USERNAME,
|
|
'email' => self::NEW_EMAIL,
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertOk()
|
|
->assertExactJson([
|
|
'name' => $name,
|
|
'id' => $this->user->id,
|
|
'email' => $email,
|
|
'is_admin' => $this->user->is_admin,
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => $name,
|
|
'id' => $this->user->id,
|
|
'email' => $email,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_passing_wrong_password_returns_bad_request()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => self::NEW_USERNAME,
|
|
'email' => self::NEW_EMAIL,
|
|
'password' => 'wrongPassword',
|
|
])
|
|
->assertStatus(400);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_update_user_with_invalid_data_returns_validation_error()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('PUT', '/user', [
|
|
'name' => '',
|
|
'email' => '',
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertStatus(422);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_delete_user_returns_success()
|
|
{
|
|
TwoFAccount::factory()->for($this->user)->create();
|
|
Group::factory()->for($this->user)->create();
|
|
|
|
$admin = User::factory()->administrator()->create();
|
|
$this->assertDatabaseCount('users', 2);
|
|
|
|
$this->actingAs($this->user, 'web-guard')
|
|
->json('DELETE', '/user', [
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertNoContent();
|
|
|
|
$this->assertDatabaseMissing('users', [
|
|
'id' => $this->user->id,
|
|
]);
|
|
$this->assertDatabaseHas('users', [
|
|
'id' => $admin->id,
|
|
]);
|
|
$this->assertDatabaseCount('users', 1);
|
|
$this->assertDatabaseMissing('twofaccounts', [
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
$this->assertDatabaseMissing('groups', [
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
$this->assertDatabaseMissing('webauthn_credentials', [
|
|
'authenticatable_id' => $this->user->id,
|
|
]);
|
|
$this->assertDatabaseMissing('webauthn_recoveries', [
|
|
'email' => $this->user->email,
|
|
]);
|
|
$this->assertDatabaseMissing('oauth_access_tokens', [
|
|
'user_id' => $this->user->id,
|
|
]);
|
|
$this->assertDatabaseMissing('password_resets', [
|
|
'email' => $this->user->email,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_delete_user_in_demo_mode_returns_unauthorized()
|
|
{
|
|
Config::set('2fauth.config.isDemoApp', true);
|
|
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('DELETE', '/user', [
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertUnauthorized()
|
|
->assertJsonStructure([
|
|
'message',
|
|
]);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'id' => $this->user->id,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_delete_user_passing_wrong_password_returns_bad_request()
|
|
{
|
|
$response = $this->actingAs($this->user, 'web-guard')
|
|
->json('DELETE', '/user', [
|
|
'password' => 'wrongPassword',
|
|
])
|
|
->assertStatus(400);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'id' => $this->user->id,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_delete_the_only_admin_returns_bad_request()
|
|
{
|
|
/**
|
|
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
|
|
*/
|
|
$admin = User::factory()->administrator()->create();
|
|
|
|
$this->assertDatabaseCount('users', 2);
|
|
$this->assertEquals(1, User::admins()->count());
|
|
|
|
$response = $this->actingAs($admin, 'web-guard')
|
|
->json('DELETE', '/user', [
|
|
'password' => self::PASSWORD,
|
|
])
|
|
->assertStatus(400);
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'id' => $admin->id,
|
|
]);
|
|
}
|
|
}
|