91 lines
4.5 KiB
PowerShell
91 lines
4.5 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\c19z9-remote-workspace-mailbox-preflight-retained-window-smoke-result.json"
|
|
)
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$repoRoot = (Resolve-Path (Join-Path $PSScriptRoot "..\..")).ProviderPath
|
|
$sourceResultPath = "artifacts\c19z9-remote-workspace-mailbox-preflight-retained-window-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
|
|
}
|
|
|
|
function Test-RetainedWindow {
|
|
param([object]$Sink, [string]$AdapterSessionID)
|
|
if ($null -eq $Sink) { return $false }
|
|
$readiness = Get-PropertyValue -Item $Sink -Name "adapter_runtime_readiness" -Default $null
|
|
$rollup = Get-PropertyValue -Item $readiness -Name "last_preflight" -Default $null
|
|
if ($null -eq $rollup) { return $false }
|
|
$resumeSequence = [int64](Get-PropertyValue -Item $rollup -Name "resume_sequence" -Default -1)
|
|
$firstRetained = [int64](Get-PropertyValue -Item $rollup -Name "first_retained_sequence" -Default -1)
|
|
$lastRetained = [int64](Get-PropertyValue -Item $rollup -Name "last_retained_sequence" -Default -1)
|
|
$missingDropped = [int](Get-PropertyValue -Item $rollup -Name "missing_dropped_count" -Default -1)
|
|
return (
|
|
[string](Get-PropertyValue -Item $readiness -Name "adapter_session_id" -Default "") -eq $AdapterSessionID -and
|
|
[string](Get-PropertyValue -Item $rollup -Name "diagnostic_state" -Default "") -eq "stale_cursor_gap" -and
|
|
[string](Get-PropertyValue -Item $rollup -Name "operator_status" -Default "") -eq "resync_required" -and
|
|
[string](Get-PropertyValue -Item $rollup -Name "operator_severity" -Default "") -eq "warn" -and
|
|
$firstRetained -gt $resumeSequence -and
|
|
$lastRetained -ge $firstRetained -and
|
|
$missingDropped -eq ($firstRetained - $resumeSequence - 1) -and
|
|
[int64](Get-PropertyValue -Item $rollup -Name "mailbox_dropped_total" -Default 0) -ge 3
|
|
)
|
|
}
|
|
|
|
$source = & powershell -ExecutionPolicy Bypass -File (Join-Path $PSScriptRoot "c19z8-remote-workspace-mailbox-preflight-rollup-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
|
|
$adapterSessionID = [string](Get-PropertyValue -Item $sourceResult -Name "adapter_session_id" -Default "")
|
|
$observed = Get-PropertyValue -Item $sourceResult -Name "observed" -Default $null
|
|
|
|
$checks = [ordered]@{
|
|
source_smoke_passed = ([bool]$sourceResult.passed)
|
|
adapter_session_id_present = ($adapterSessionID -match "^rap-rw-adapter-session-[0-9a-f]{24}$")
|
|
workload_retained_window_visible = (Test-RetainedWindow -Sink $observed.workload_sink -AdapterSessionID $adapterSessionID)
|
|
telemetry_retained_window_visible = (Test-RetainedWindow -Sink $observed.telemetry_sink -AdapterSessionID $adapterSessionID)
|
|
}
|
|
$failed = @($checks.GetEnumerator() | Where-Object { -not $_.Value } | ForEach-Object { $_.Key })
|
|
|
|
$result = [ordered]@{
|
|
schema_version = "c19z9.remote_workspace_mailbox_preflight_retained_window_smoke.v1"
|
|
source_result_path = $sourceFile
|
|
cluster_id = $ClusterID
|
|
adapter_session_id = $adapterSessionID
|
|
observed = $observed
|
|
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 "C19Z9 remote workspace mailbox preflight retained-window smoke failed. Result: $fullResultPath Failed: $($failed -join ', ')"
|
|
}
|
|
|
|
Write-Host "C19Z9 remote workspace mailbox preflight retained-window smoke passed. Result: $fullResultPath"
|
|
$result
|