mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-20 11:49:31 -06:00
63 lines
2.2 KiB
PHP
63 lines
2.2 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();
|
|
$user = \App\Models\User::factory()->create();
|
|
|
|
$response = $this->actingAs($user)->delete(route('requests.approved_fills.destroy', [$torrentRequest]));
|
|
|
|
$response->assertOk();
|
|
$this->assertModelMissing($torrentRequest);
|
|
|
|
// 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();
|
|
$user = \App\Models\User::factory()->create();
|
|
|
|
// TODO: perform additional setup to trigger `abort_unless(403)`...
|
|
|
|
$response = $this->actingAs($user)->delete(route('requests.approved_fills.destroy', [$torrentRequest]));
|
|
|
|
$response->assertForbidden();
|
|
});
|
|
|
|
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.approved_fills.store', [$torrentRequest]), [
|
|
// 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.');
|
|
|
|
$torrentRequest = \App\Models\TorrentRequest::factory()->create();
|
|
$user = \App\Models\User::factory()->create();
|
|
|
|
// TODO: perform additional setup to trigger `abort_unless(403)`...
|
|
|
|
$response = $this->actingAs($user)->post(route('requests.approved_fills.store', [$torrentRequest]), [
|
|
// TODO: send request data
|
|
]);
|
|
|
|
$response->assertForbidden();
|
|
});
|
|
|
|
// test cases...
|