TenantAtlas/tests/Unit/GraphContractRegistryTest.php
ahmido 93dbd3b13d fix(tests): remove per-file TestCase uses (#45)
What Changed

Removed per-file uses(TestCase::class ...) bindings in Unit tests to avoid Pest v4 “folder already uses the test case” discovery failure (kept RefreshDatabase where needed).
Updated the backup scheduling job test to pass the newly required BulkOperationService when manually calling RunBackupScheduleJob::handle().
Where

Unit (bulk cleanup across 56 files)
RunBackupScheduleJobTest.php
Verification

./vendor/bin/sail test → 443 passed, 5 skipped

Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local>
Reviewed-on: #45
2026-01-08 00:41:46 +00:00

104 lines
4.0 KiB
PHP

<?php
use App\Services\Graph\GraphContractRegistry;
use App\Services\Graph\GraphResponse;
beforeEach(function () {
config()->set('graph_contracts.types.deviceConfiguration', [
'resource' => 'deviceManagement/deviceConfigurations',
'allowed_select' => ['id', 'displayName'],
'allowed_expand' => ['assignments'],
'type_family' => [
'#microsoft.graph.deviceConfiguration',
'#microsoft.graph.windows10CustomConfiguration',
],
]);
config()->set('graph_contracts.types.settingsCatalogPolicy', [
'resource' => 'deviceManagement/configurationPolicies',
'allowed_select' => ['id'],
'allowed_expand' => [],
'type_family' => ['#microsoft.graph.deviceManagementConfigurationPolicy'],
'update_whitelist' => ['name', 'description'],
'update_map' => ['displayName' => 'name'],
'update_strip_keys' => ['platforms', 'technologies', 'templateReference', 'assignments'],
'settings_write' => [
'path_template' => 'deviceManagement/configurationPolicies/{id}/settings/{settingId}',
'method' => 'PATCH',
],
]);
$this->registry = app(GraphContractRegistry::class);
});
it('sanitizes disallowed select and expand values', function () {
$result = $this->registry->sanitizeQuery('deviceConfiguration', [
'$select' => ['id', 'displayName', 'unsupported'],
'$expand' => ['assignments', 'badExpand'],
]);
$query = $result['query'];
$warnings = $result['warnings'];
expect($query['$select'])->toBe('id,displayName');
expect($query['$expand'])->toBe('assignments');
expect($warnings)->not->toBeEmpty();
});
it('matches derived types within family', function () {
expect($this->registry->matchesTypeFamily('deviceConfiguration', '#microsoft.graph.windows10CustomConfiguration'))->toBeTrue();
expect($this->registry->matchesTypeFamily('deviceConfiguration', '#microsoft.graph.androidCompliancePolicy'))->toBeFalse();
});
it('detects capability errors for downgrade', function () {
$response = new GraphResponse(
success: false,
data: [],
status: 400,
errors: [['message' => 'Request is invalid due to $select']]
);
$shouldDowngrade = $this->registry->shouldDowngradeOnCapabilityError($response, ['$select' => ['displayName']]);
expect($shouldDowngrade)->toBeTrue();
});
it('provides contract for settings catalog policies', function () {
$contract = config('graph_contracts.types.settingsCatalogPolicy');
expect($contract)->not->toBeEmpty();
expect($contract['resource'])->toBe('deviceManagement/configurationPolicies');
expect($this->registry->matchesTypeFamily('settingsCatalogPolicy', '#microsoft.graph.deviceManagementConfigurationPolicy'))->toBeTrue();
});
it('sanitizes update payloads for settings catalog policies', function () {
$payload = [
'id' => 'scp-1',
'@odata.type' => '#microsoft.graph.deviceManagementConfigurationPolicy',
'displayName' => 'Config',
'Description' => 'desc',
'version' => 5,
'createdDateTime' => '2024-01-01T00:00:00Z',
'settings' => [
[
'id' => 'setting-1',
'settingInstance' => [
'@odata.type' => '#microsoft.graph.deviceManagementConfigurationSimpleSettingInstance',
'settingDefinitionId' => 'setting_definition',
'simpleSettingValue' => ['value' => 'bar'],
],
],
],
'Platforms' => ['windows'],
'unknown' => 'drop-me',
];
$sanitized = $this->registry->sanitizeUpdatePayload('settingsCatalogPolicy', $payload);
expect($sanitized)->toHaveKeys(['name', 'description']);
expect($sanitized)->not->toHaveKey('id');
expect($sanitized)->not->toHaveKey('@odata.type');
expect($sanitized)->not->toHaveKey('version');
expect($sanitized)->not->toHaveKey('platforms');
expect($sanitized)->not->toHaveKey('settings');
});