56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
|
|
use App\Filament\Resources\PolicyResource\Pages\ViewPolicy;
|
|
use App\Models\Policy;
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use App\Services\Graph\AssignmentFetcher;
|
|
use App\Services\Intune\PolicySnapshotService;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
use Mockery\MockInterface;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('captures a policy snapshot with scope tags when requested', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
$tenant->makeCurrent();
|
|
$policy = Policy::factory()->for($tenant)->create([
|
|
'external_id' => 'policy-123',
|
|
]);
|
|
|
|
$user = User::factory()->create();
|
|
$this->actingAs($user);
|
|
|
|
$this->mock(PolicySnapshotService::class, function (MockInterface $mock) use ($policy) {
|
|
$mock->shouldReceive('fetch')
|
|
->once()
|
|
->andReturn([
|
|
'payload' => [
|
|
'id' => $policy->external_id,
|
|
'name' => $policy->display_name,
|
|
'roleScopeTagIds' => ['0'],
|
|
],
|
|
]);
|
|
});
|
|
|
|
$this->mock(AssignmentFetcher::class, function (MockInterface $mock) {
|
|
$mock->shouldReceive('fetch')->never();
|
|
});
|
|
|
|
Livewire::test(ViewPolicy::class, ['record' => $policy->getRouteKey()])
|
|
->callAction('capture_snapshot', data: [
|
|
'include_assignments' => false,
|
|
'include_scope_tags' => true,
|
|
]);
|
|
|
|
$version = $policy->versions()->first();
|
|
|
|
expect($version)->not->toBeNull();
|
|
expect($version->assignments)->toBeNull();
|
|
expect($version->scope_tags)->toBe([
|
|
'ids' => ['0'],
|
|
'names' => ['Default'],
|
|
]);
|
|
});
|