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

58 lines
2.1 KiB
PHP

<?php
uses(RefreshDatabase::class);
test('destroy 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.');
$torrentRequest = \App\Models\TorrentRequest::factory()->create();
$torrentRequestClaim = \App\Models\TorrentRequestClaim::factory()->create();
$user = \App\Models\User::factory()->create();
$response = $this->actingAs($user)->delete(route('requests.claims.destroy', [$torrentRequest, 'claim' => $claim]));
$response->assertOk();
$this->assertModelMissing($claim);
// TODO: perform additional assertions
});
test('destroy 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.');
$torrentRequest = \App\Models\TorrentRequest::factory()->create();
$torrentRequestClaim = \App\Models\TorrentRequestClaim::factory()->create();
$user = \App\Models\User::factory()->create();
// TODO: perform additional setup to trigger `abort_unless(403)`...
$response = $this->actingAs($user)->delete(route('requests.claims.destroy', [$torrentRequest, 'claim' => $claim]));
$response->assertForbidden();
});
test('store validates with a form request', function (): void {
$this->assertActionUsesFormRequest(
\App\Http\Controllers\ClaimController::class,
'store',
\App\Http\Requests\StoreTorrentRequestClaimRequest::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.');
$torrentRequest = \App\Models\TorrentRequest::factory()->create();
$user = \App\Models\User::factory()->create();
$response = $this->actingAs($user)->post(route('requests.claims.store', [$torrentRequest]), [
// TODO: send request data
]);
$response->assertOk();
// TODO: perform additional assertions
});
// test cases...