mirror of
https://github.com/BillyOutlast/UNIT3D.git
synced 2026-02-05 03:31:22 +01:00
In laravel 7 and onward, seeder naming convention was changed to be singular and without `Table`.
73 lines
2.0 KiB
PHP
73 lines
2.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
use App\Enums\UserGroup;
|
|
use App\Models\User;
|
|
use Database\Seeders\GroupSeeder;
|
|
|
|
test('edit returns an ok response', function (): void {
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->get(route('users.email.edit', [$user]));
|
|
|
|
$response->assertOk();
|
|
$response->assertViewIs('user.email.edit');
|
|
$response->assertViewHas('user', $user);
|
|
});
|
|
|
|
test('edit aborts with a 403', function (): void {
|
|
$this->seed(GroupSeeder::class);
|
|
|
|
$user = User::factory()->create([
|
|
'group_id' => UserGroup::MODERATOR->value,
|
|
]);
|
|
|
|
$authUser = User::factory()->create([
|
|
'group_id' => UserGroup::USER->value,
|
|
]);
|
|
|
|
$response = $this->actingAs($authUser)->get(route('users.email.edit', [$user]));
|
|
|
|
$response->assertForbidden();
|
|
});
|
|
|
|
test('update returns an ok response', function (): void {
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->patch(route('users.email.update', [$user]), [
|
|
'email' => fake()->unique()->safeEmail,
|
|
]);
|
|
|
|
$response->assertRedirect(route('users.email.edit', ['user' => $user]))
|
|
->assertSessionHas('success', 'Your email was updated successfully.');
|
|
});
|
|
|
|
test('update aborts with a 403', function (): void {
|
|
$this->seed(GroupSeeder::class);
|
|
|
|
$user = User::factory()->create([
|
|
'group_id' => UserGroup::MODERATOR->value,
|
|
]);
|
|
|
|
$authUser = User::factory()->create([
|
|
'group_id' => UserGroup::USER->value,
|
|
]);
|
|
|
|
$response = $this->actingAs($authUser)->patch(route('users.apikeys.update', [$user]));
|
|
|
|
$response->assertForbidden();
|
|
});
|