More (failing) tests

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-06-05 14:02:04 +01:00
parent 5cdb2b7163
commit 47420a802a

View file

@ -2,6 +2,7 @@
namespace Tests\Feature\Users\Ui;
use App\Models\LicenseSeat;
use App\Models\Location;
use App\Models\User;
use Tests\TestCase;
@ -40,6 +41,37 @@ class DeleteUserTest extends TestCase
$this->followRedirects($response)->assertSee('Error');
}
public function testDisallowUserDeletionIfStillHaveAccessories()
{
$user = User::factory()->create();
Accessory::factory()->count(3)->create(['assigned_to' => $user->id]);
$this->actingAs(User::factory()->deleteUsers()->create())->assertFalse($user->isDeletable());
$response = $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create())
->delete(route('users.destroy', $user->id))
->assertStatus(302)
->assertRedirect(route('users.index'));
$this->followRedirects($response)->assertSee('Error');
}
public function testDisallowUserDeletionIfStillHaveLicenses()
{
$user = User::factory()->create();
LicenseSeat::factory()->count(3)->create(['assigned_to' => $user->id]);
$this->actingAs(User::factory()->deleteUsers()->create())->assertFalse($user->isDeletable());
$response = $this->actingAs(User::factory()->deleteUsers()->viewUsers()->create())
->delete(route('users.destroy', $user->id))
->assertStatus(302)
->assertRedirect(route('users.index'));
$this->followRedirects($response)->assertSee('Error');
}
public function testAllowUserDeletionIfNotManagingLocations()
{
$manager = User::factory()->create();
@ -61,5 +93,18 @@ class DeleteUserTest extends TestCase
$this->actingAs(User::factory()->editUsers()->create())->assertFalse($manager->isDeletable());
}
public function testUsersCannotDeleteThemselves()
{
$manager = User::factory()->deleteUsers()->create();
$this->actingAs(User::factory()->deleteUsers()->create())->assertTrue($manager->isDeletable());
$response = $this->actingAs($manager)
->delete(route('users.destroy', $manager->id))
->assertStatus(302)
->assertRedirect(route('users.index'));
$this->followRedirects($response)->assertSee('Error');
}
}