Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
123 lines
3.6 KiB
JSON
123 lines
3.6 KiB
JSON
{
|
|
"mappings": [
|
|
{
|
|
"name": "Microsoft OAuth Authorization",
|
|
"request": {
|
|
"method": "GET",
|
|
"urlPathPattern": "/common/oauth2/v2.0/authorize.*"
|
|
},
|
|
"response": {
|
|
"status": 302,
|
|
"headers": {
|
|
"Location": "{{request.query.redirect_uri.[0]}}?code=mock-auth-code-{{randomValue type='UUID'}}&state={{request.query.state.[0]}}"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Microsoft OAuth Token Exchange",
|
|
"request": {
|
|
"method": "POST",
|
|
"urlPath": "/common/oauth2/v2.0/token",
|
|
"bodyPatterns": [{
|
|
"contains": "grant_type=authorization_code"
|
|
}]
|
|
},
|
|
"response": {
|
|
"status": 200,
|
|
"jsonBody": {
|
|
"access_token": "mock-access-{{randomValue type='UUID'}}",
|
|
"refresh_token": "mock-refresh-{{randomValue type='UUID'}}",
|
|
"expires_in": 3600,
|
|
"token_type": "Bearer",
|
|
"scope": "https://graph.microsoft.com/Mail.Read https://graph.microsoft.com/Mail.Send https://graph.microsoft.com/Mail.ReadWrite offline_access"
|
|
},
|
|
"headers": {
|
|
"Content-Type": "application/json"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Microsoft OAuth Token Refresh",
|
|
"request": {
|
|
"method": "POST",
|
|
"urlPath": "/common/oauth2/v2.0/token",
|
|
"bodyPatterns": [{
|
|
"contains": "grant_type=refresh_token"
|
|
}]
|
|
},
|
|
"response": {
|
|
"status": 200,
|
|
"jsonBody": {
|
|
"access_token": "mock-refreshed-access-{{randomValue type='UUID'}}",
|
|
"refresh_token": "mock-refreshed-refresh-{{randomValue type='UUID'}}",
|
|
"expires_in": 3600,
|
|
"token_type": "Bearer",
|
|
"scope": "https://graph.microsoft.com/Mail.Read https://graph.microsoft.com/Mail.Send https://graph.microsoft.com/Mail.ReadWrite offline_access"
|
|
},
|
|
"headers": {
|
|
"Content-Type": "application/json"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Microsoft Graph User Profile",
|
|
"request": {
|
|
"method": "GET",
|
|
"urlPath": "/v1.0/me"
|
|
},
|
|
"response": {
|
|
"status": 200,
|
|
"jsonBody": {
|
|
"id": "test-user-{{randomValue type='UUID'}}",
|
|
"displayName": "Test User",
|
|
"mail": "test@example.com",
|
|
"userPrincipalName": "test@example.com"
|
|
},
|
|
"headers": {
|
|
"Content-Type": "application/json"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Microsoft Graph Create Subscription",
|
|
"request": {
|
|
"method": "POST",
|
|
"urlPath": "/v1.0/subscriptions"
|
|
},
|
|
"response": {
|
|
"status": 201,
|
|
"jsonBody": {
|
|
"id": "mock-subscription-{{randomValue type='UUID'}}",
|
|
"resource": "me/mailFolders('Inbox')/messages",
|
|
"changeType": "created",
|
|
"notificationUrl": "{{jsonPath request.body '$.notificationUrl'}}",
|
|
"expirationDateTime": "{{now offset='7 days' format='yyyy-MM-dd\\'T\\'HH:mm:ss.SSS\\'Z\\''}}",
|
|
"clientState": "{{jsonPath request.body '$.clientState'}}"
|
|
},
|
|
"headers": {
|
|
"Content-Type": "application/json"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Microsoft Webhook Validation",
|
|
"priority": 1,
|
|
"request": {
|
|
"method": "POST",
|
|
"urlPathPattern": "/.*",
|
|
"queryParameters": {
|
|
"validationToken": {
|
|
"matches": ".*"
|
|
}
|
|
}
|
|
},
|
|
"response": {
|
|
"status": 200,
|
|
"body": "{{request.query.validationToken.[0]}}",
|
|
"headers": {
|
|
"Content-Type": "text/plain"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |