Files
UNIT3D-Community-Edition/tests/Feature/Http/Controllers/Staff/BanControllerTest.php
2023-07-11 18:27:15 +00:00

59 lines
1.8 KiB
PHP

<?php
uses(RefreshDatabase::class);
test('index returns an ok response', function (): void {
$this->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
$bans = \App\Models\Ban::factory()->times(3)->create();
$user = \App\Models\User::factory()->create();
$response = $this->actingAs($user)->get(route('staff.bans.index'));
$response->assertOk();
$response->assertViewIs('Staff.ban.index');
$response->assertViewHas('bans', $bans);
// TODO: perform additional assertions
});
test('store validates with a form request', function (): void {
$this->assertActionUsesFormRequest(
\App\Http\Controllers\Staff\BanController::class,
'store',
\App\Http\Requests\Staff\StoreBanRequest::class
);
});
test('store returns an ok response', function (): void {
$this->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
$user = \App\Models\User::factory()->create();
$authUser = \App\Models\User::factory()->create();
$response = $this->actingAs($authUser)->post(route('staff.bans.store'), [
// TODO: send request data
]);
$response->assertOk();
// TODO: perform additional assertions
});
test('store aborts with a 403', function (): void {
$this->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
$user = \App\Models\User::factory()->create();
$authUser = \App\Models\User::factory()->create();
// TODO: perform additional setup to trigger `abort_if(403)`...
$response = $this->actingAs($authUser)->post(route('staff.bans.store'), [
// TODO: send request data
]);
$response->assertForbidden();
});
// test cases...