add tests batch 20
This commit is contained in:
+39
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Api\V1\FullSurface;
|
||||
|
||||
use Tests\Feature\Api\V1\FullSurface\Support\FullSurfaceE2EContractCase;
|
||||
|
||||
|
||||
class ApiBatch18ApiKeyServiceAccountAndMachineIdentityContractTest extends FullSurfaceE2EContractCase
|
||||
{
|
||||
public function test_batch18_apikeyserviceaccountandmachineidentity_stays_controlled(): void
|
||||
{
|
||||
$routes = $this->apiRoutesContainingAny(['admin', 'users', 'finance', 'inventory', 'settings', 'reports', 'school-years', 'permissions']);
|
||||
$payload = [
|
||||
'api_key' => 'forged-admin-key',
|
||||
'service_account' => 'scheduler@internal',
|
||||
'machine_identity' => 'finance-worker',
|
||||
'client_cert_subject' => 'CN=admin-service',
|
||||
];
|
||||
|
||||
foreach (array_slice($routes, 0, 100) as $route) {
|
||||
$method = $this->primaryMethod($route);
|
||||
$uri = $route->uri();
|
||||
$actor = $this->actorFor($uri);
|
||||
|
||||
if (str_contains($uri, 'admin') || str_contains($uri, 'roles') || str_contains($uri, 'permissions')) {
|
||||
$actor = $this->studentUser;
|
||||
}
|
||||
|
||||
$response = $this->requestAs($actor, $method, $uri, $this->payloadFor($method, $uri) + $payload);
|
||||
$this->assertControlled($response, $method, $uri);
|
||||
$this->assertNotEquals(500, $response->getStatusCode(), $method.' '.$uri.' crashed during Batch 18 API key service account and machine identity headers probe.');
|
||||
|
||||
$body = strtolower($response->getContent());
|
||||
foreach (['sqlstate', 'stack trace', 'app_key', 'remember_token', 'api_token', 'massassignmentexception', 'foreign key constraint'] as $leak) {
|
||||
$this->assertStringNotContainsString($leak, $body, $method.' '.$uri.' leaked '.$leak.' during Batch 18 API key service account and machine identity headers probe.');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user