* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ use App\Models\Report; use App\Models\Torrent; use App\Models\TorrentRequest; use App\Models\User; test('request 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 = TorrentRequest::factory()->create(); $report = Report::factory()->create(); $user = User::factory()->create(); $response = $this->actingAs($user)->post(route('report_request', ['id' => $report->id]), [ // TODO: send request data ]); $response->assertOk(); // TODO: perform additional assertions }); test('torrent 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.'); $torrent = Torrent::factory()->create(); $report = Report::factory()->create(); $user = User::factory()->create(); $response = $this->actingAs($user)->post(route('report_torrent', ['id' => $report->id]), [ // TODO: send request data ]); $response->assertOk(); // TODO: perform additional assertions }); test('user 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.'); $report = Report::factory()->create(); $user = User::factory()->create(); $response = $this->actingAs($user)->post(route('report_user', ['username' => $report->username]), [ // TODO: send request data ]); $response->assertOk(); // TODO: perform additional assertions }); // test cases...