78 lines
4.2 KiB
PowerShell
78 lines
4.2 KiB
PowerShell
param(
|
|
[string]$ApiBaseUrl = "http://192.168.200.61:18121/api/v1",
|
|
[string]$ClusterID = "cfc0743d-d960-49fb-9de8-96e063d5e4aa",
|
|
[string]$ActorUserID = "f67d943f-5397-4b3a-a229-695fe67ad700",
|
|
[string]$EntryNodeName = "test-1",
|
|
[string]$ExitNodeName = "test-2",
|
|
[string]$EntryBaseUrl = "http://192.168.200.61:19131",
|
|
[string]$ResultPath = "artifacts\c19z6-remote-workspace-mailbox-preflight-summary-smoke-result.json"
|
|
)
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$repoRoot = (Resolve-Path (Join-Path $PSScriptRoot "..\..")).ProviderPath
|
|
$sourceResultPath = "artifacts\c19z6-remote-workspace-mailbox-preflight-summary-source-result.json"
|
|
|
|
function Get-PropertyValue {
|
|
param([object]$Item, [string]$Name, [object]$Default = $null)
|
|
if ($null -eq $Item) { return $Default }
|
|
$property = $Item.PSObject.Properties[$Name]
|
|
if ($null -eq $property) { return $Default }
|
|
return $property.Value
|
|
}
|
|
|
|
$source = & powershell -ExecutionPolicy Bypass -File (Join-Path $PSScriptRoot "c19z5-remote-workspace-mailbox-preflight-provenance-smoke.ps1") `
|
|
-ApiBaseUrl $ApiBaseUrl `
|
|
-ClusterID $ClusterID `
|
|
-ActorUserID $ActorUserID `
|
|
-EntryNodeName $EntryNodeName `
|
|
-ExitNodeName $ExitNodeName `
|
|
-EntryBaseUrl $EntryBaseUrl `
|
|
-ResultPath $sourceResultPath
|
|
|
|
$sourceFile = Join-Path $repoRoot $sourceResultPath
|
|
$sourceResult = Get-Content -Raw -Path $sourceFile | ConvertFrom-Json
|
|
$preflight = Get-PropertyValue -Item $sourceResult -Name "preflight" -Default $null
|
|
$preflightJson = Get-PropertyValue -Item $preflight -Name "json" -Default $null
|
|
$summaryFields = Get-PropertyValue -Item $preflightJson -Name "operator_summary_fields" -Default $null
|
|
$resumeSequence = [int64](Get-PropertyValue -Item $summaryFields -Name "resume_sequence" -Default -1)
|
|
$firstRetained = [int64](Get-PropertyValue -Item $summaryFields -Name "first_retained_sequence" -Default -1)
|
|
$missingDropped = [int](Get-PropertyValue -Item $summaryFields -Name "missing_dropped_count" -Default -1)
|
|
|
|
$checks = [ordered]@{
|
|
source_smoke_passed = ([bool]$sourceResult.passed)
|
|
operator_summary_visible = ([string](Get-PropertyValue -Item $preflightJson -Name "operator_summary" -Default "") -eq "stale cursor gap: reset consumer and resync before resume")
|
|
operator_summary_fields_present = ($null -ne $summaryFields)
|
|
summary_diagnostic_state_visible = ([string](Get-PropertyValue -Item $summaryFields -Name "diagnostic_state" -Default "") -eq "stale_cursor_gap")
|
|
summary_recommended_action_visible = ([string](Get-PropertyValue -Item $summaryFields -Name "recommended_action" -Default "") -eq "reset_consumer_and_resync")
|
|
summary_action_reason_visible = ([string](Get-PropertyValue -Item $summaryFields -Name "action_reason" -Default "") -eq "consumer_cursor_before_first_retained_sequence")
|
|
summary_cursor_visible = ($resumeSequence -eq 1 -and [string](Get-PropertyValue -Item $summaryFields -Name "resume_from" -Default "") -eq "ack")
|
|
summary_retained_bounds_visible = ($firstRetained -gt $resumeSequence -and [int64](Get-PropertyValue -Item $summaryFields -Name "last_retained_sequence" -Default -1) -ge $firstRetained)
|
|
summary_missing_formula_visible = ($missingDropped -eq ($firstRetained - $resumeSequence - 1))
|
|
}
|
|
$failed = @($checks.GetEnumerator() | Where-Object { -not $_.Value } | ForEach-Object { $_.Key })
|
|
|
|
$result = [ordered]@{
|
|
schema_version = "c19z6.remote_workspace_mailbox_preflight_summary_smoke.v1"
|
|
source_result_path = $sourceFile
|
|
cluster_id = $ClusterID
|
|
adapter_session_id = [string](Get-PropertyValue -Item $sourceResult -Name "adapter_session_id" -Default "")
|
|
preflight = $preflight
|
|
checks = $checks
|
|
failed_checks = $failed
|
|
passed = ($failed.Count -eq 0)
|
|
}
|
|
|
|
$fullResultPath = Join-Path $repoRoot $ResultPath
|
|
$resultDir = Split-Path -Parent $fullResultPath
|
|
if ($resultDir) { New-Item -ItemType Directory -Force -Path $resultDir | Out-Null }
|
|
$result | ConvertTo-Json -Depth 100 | Set-Content -Encoding UTF8 -Path $fullResultPath
|
|
|
|
if (-not $result.passed) {
|
|
throw "C19Z6 remote workspace mailbox preflight summary smoke failed. Result: $fullResultPath Failed: $($failed -join ', ')"
|
|
}
|
|
|
|
Write-Host "C19Z6 remote workspace mailbox preflight summary smoke passed. Result: $fullResultPath"
|
|
$result
|