mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
44 lines
1.4 KiB
PHP
44 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\ReportTemplates;
|
|
|
|
use App\Models\ReportTemplate;
|
|
use App\Models\User;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
use Tests\Concerns\TestsPermissionsRequirement;
|
|
use Tests\TestCase;
|
|
|
|
#[Group('custom-reporting')]
|
|
class ShowReportTemplateTest extends TestCase implements TestsPermissionsRequirement
|
|
{
|
|
public function testRequiresPermission()
|
|
{
|
|
$this->actingAs(User::factory()->create())
|
|
->get(route('report-templates.show', ReportTemplate::factory()->create()))
|
|
->assertNotFound();
|
|
}
|
|
|
|
public function testCanLoadASavedReportTemplate()
|
|
{
|
|
$user = User::factory()->canViewReports()->create();
|
|
$reportTemplate = ReportTemplate::factory()->make(['name' => 'My Awesome Template']);
|
|
$user->reportTemplates()->save($reportTemplate);
|
|
|
|
$this->actingAs($user)
|
|
->get(route('report-templates.show', $reportTemplate))
|
|
->assertOk()
|
|
->assertViewHas(['template' => function (ReportTemplate $templatePassedToView) use ($reportTemplate) {
|
|
return $templatePassedToView->is($reportTemplate);
|
|
}]);
|
|
}
|
|
|
|
public function testCannotLoadAnotherUsersSavedReportTemplate()
|
|
{
|
|
$reportTemplate = ReportTemplate::factory()->create();
|
|
|
|
$this->actingAs(User::factory()->canViewReports()->create())
|
|
->get(route('report-templates.show', $reportTemplate))
|
|
->assertNotFound();
|
|
}
|
|
}
|