22 lines
909 B
PHP
22 lines
909 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Services\Intune\SecretClassificationService;
|
|
|
|
it('protects exact secret fields and keeps safe configuration language visible', function (): void {
|
|
$service = app(SecretClassificationService::class);
|
|
|
|
expect($service->protectsField('snapshot', 'password'))->toBeTrue();
|
|
expect($service->protectsField('snapshot', 'clientSecret'))->toBeTrue();
|
|
expect($service->protectsField('snapshot', 'passwordMinimumLength'))->toBeFalse();
|
|
expect($service->protectsField('snapshot', 'tokenType'))->toBeFalse();
|
|
});
|
|
|
|
it('supports exact path-based protection decisions', function (): void {
|
|
$service = app(SecretClassificationService::class);
|
|
|
|
expect($service->protectsField('snapshot', 'password', '/wifi/password'))->toBeTrue();
|
|
expect($service->protectsField('snapshot', 'passwordMinimumLength', '/settings/passwordMinimumLength'))->toBeFalse();
|
|
});
|