一键导入
cli-e2e-testing
Guide for writing Aspire CLI end-to-end tests using Hex1b terminal automation. Use this when asked to create, modify, or debug CLI E2E tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guide for writing Aspire CLI end-to-end tests using Hex1b terminal automation. Use this when asked to create, modify, or debug CLI E2E tests.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Review a GitHub pull request for problems. Use when asked to review a PR, do a code review, check a PR for issues, or review pull request changes. Focuses only on identifying problems — not style nits or praise.
Create a pull request using the repository PR template. Use when asked to: create PR, open PR, push and create PR, submit PR, open pull request, send changes for review.
Reproduces and fixes flaky or quarantined tests. Tries local reproduction first (fast), then falls back to CI reproduce workflow (reproduce-flaky-tests.yml). Use this when asked to investigate, reproduce, debug, or fix a flaky test, a quarantined test, or an intermittently failing test.
Downloads and tests Aspire CLI from a PR build, preferably in the repo-local container runner under eng/scripts, verifies version, and runs test scenarios based on PR changes. Use this when asked to test a pull request.
Updates Docker container image tags used by Aspire hosting integrations. Queries registries for newer tags, uses LLM to determine version-compatible updates, and applies changes. Use this when asked to update container image versions.
| name | cli-e2e-testing |
| description | Guide for writing Aspire CLI end-to-end tests using Hex1b terminal automation. Use this when asked to create, modify, or debug CLI E2E tests. |
This skill provides patterns and practices for writing end-to-end tests for the Aspire CLI using the Hex1b terminal automation library.
CLI E2E tests use the Hex1b library to automate terminal sessions, simulating real user interactions with the Aspire CLI. Tests run in CI with asciinema recordings for debugging.
Location: tests/Aspire.Cli.EndToEnd.Tests/
Supported Platforms: Linux only. Hex1b requires a Linux terminal environment. Tests are configured to skip on Windows and macOS in CI.
Hex1bTerminal: The main terminal class from the Hex1b library for terminal automationHex1bTerminalAutomator: Async/await API for driving a Hex1bTerminal — the preferred approach for new testsHex1bAutomatorTestHelpers (shared helpers): Async extension methods on Hex1bTerminalAutomator (WaitForSuccessPromptAsync, AspireNewAsync, etc.)CliE2EAutomatorHelpers (Helpers/CliE2EAutomatorHelpers.cs): CLI-specific async extension methods on Hex1bTerminalAutomator (PrepareDockerEnvironmentAsync, InstallAspireCliInDockerAsync, etc.)CellPatternSearcher: Pattern matching for terminal cell contentSequenceCounter (Helpers/SequenceCounter.cs): Tracks command execution count for deterministic prompt detectionCliE2ETestHelpers (Helpers/CliE2ETestHelpers.cs): Environment variable helpers and terminal factory methodsTemporaryWorkspace: Creates isolated temporary directories for test executionHex1bTerminalInputSequenceBuilder (legacy): Fluent builder API for building sequences of terminal input/output operations. Prefer Hex1bTerminalAutomator for new tests.Each test:
TemporaryWorkspace for isolationHex1bTerminal with headless mode and asciinema recordingHex1bTerminalAutomator wrapping the terminalpublic sealed class SmokeTests(ITestOutputHelper output)
{
[Fact]
public async Task MyCliTest()
{
var repoRoot = CliE2ETestHelpers.GetRepoRoot();
var strategy = CliInstallStrategy.Detect(output.WriteLine);
var workspace = TemporaryWorkspace.Create(output);
using var terminal = CliE2ETestHelpers.CreateDockerTestTerminal(repoRoot, strategy, output, workspace: workspace);
var counter = new SequenceCounter();
var auto = new Hex1bTerminalAutomator(terminal, defaultTimeout: TimeSpan.FromSeconds(500));
await using var terminalRun = CliE2ETestHelpers.StartRun(terminal, workspace, auto, counter, TestContext.Current.CancellationToken);
await auto.PrepareDockerEnvironmentAsync(counter, workspace);
await auto.InstallAspireCliAsync(strategy, counter);
await auto.TypeAsync("aspire --version");
await auto.EnterAsync();
await auto.WaitForSuccessPromptAsync(counter);
}
}
Always use CliE2ETestHelpers.StartRun to wrap the terminal run. This returns a TerminalRun (implements IAsyncDisposable) that automatically:
CaptureAspireDiagnosticsAsync (best effort)exit and presses Enter to close the terminalThis eliminates the need for manual exit/await pendingRun at the end of every test and ensures diagnostics are always captured, even when tests fail.
// DO: Use StartRun for consistent diagnostics capture and cleanup
using var terminal = CliE2ETestHelpers.CreateDockerTestTerminal(repoRoot, strategy, output, workspace: workspace);
var counter = new SequenceCounter();
var auto = new Hex1bTerminalAutomator(terminal, defaultTimeout: TimeSpan.FromSeconds(500));
await using var terminalRun = CliE2ETestHelpers.StartRun(terminal, workspace, auto, counter, TestContext.Current.CancellationToken);
// ... test body — no exit/pendingRun needed at the end
// DON'T: Manually handle exit and pendingRun
var pendingRun = terminal.RunAsync(TestContext.Current.CancellationToken);
// ... test body ...
await auto.TypeAsync("exit");
await auto.EnterAsync();
await pendingRun;
CLI E2E tests run inside Docker containers on Linux. The workflow is: build a portable archive with localhive, then point the tests at it. This is the primary way to iterate on E2E tests during development.
./restore.sh or .\restore.cmd)# 1. Build a portable archive with CLI + packages + bundle
# Use linux-arm64 on Apple Silicon, linux-x64 on Intel/Linux
./localhive.sh -o /tmp/aspire-e2e -r linux-arm64 --archive
# 2. Run a specific test
ASPIRE_E2E_ARCHIVE=/tmp/aspire-e2e.tar.gz \
dotnet test tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj \
-- --filter-method "*.CreateAndRunAspireStarterProject"
# 3. Run all tests in a class
ASPIRE_E2E_ARCHIVE=/tmp/aspire-e2e.tar.gz \
dotnet test tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj \
-- --filter-class "*.SmokeTests"
# 1. Build a portable archive (Docker Desktop uses linux-x64 via WSL2)
.\localhive.ps1 -o C:\tmp\aspire-e2e -r linux-x64 -Archive
# 2. Run a specific test
$env:ASPIRE_E2E_ARCHIVE = "C:\tmp\aspire-e2e.tar.gz"
dotnet test tests\Aspire.Cli.EndToEnd.Tests\Aspire.Cli.EndToEnd.Tests.csproj `
-- --filter-method "*.CreateAndRunAspireStarterProject"
# 3. Run all tests in a class
dotnet test tests\Aspire.Cli.EndToEnd.Tests\Aspire.Cli.EndToEnd.Tests.csproj `
-- --filter-class "*.SmokeTests"
The archive must match the Docker container's architecture:
| Host | Docker Desktop | RID |
|---|---|---|
| Apple Silicon Mac | Linux arm64 containers | linux-arm64 |
| Intel Mac | Linux x64 containers | linux-x64 |
| Windows (any) | WSL2 Linux x64 | linux-x64 |
| Linux x64 | Native | linux-x64 |
| Linux arm64 | Native | linux-arm64 |
The typical loop when writing or debugging E2E tests:
# 1. Make your code changes (CLI, hosting, templates, etc.)
# 2. Rebuild the archive (picks up all changes — ~3 min)
./localhive.sh -o /tmp/aspire-e2e -r linux-arm64 --archive
# 3. Run the specific test you're working on
ASPIRE_E2E_ARCHIVE=/tmp/aspire-e2e.tar.gz \
dotnet test tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj \
-- --filter-method "*.YourTestName"
# 4. If it fails, check the asciinema recording
# Recordings are saved under the test output TestResults/recordings/ directory
# Play with: asciinema play /path/to/YourTestName.cast
# 5. Fix and repeat from step 1 or 2
The CliInstallStrategy class auto-detects how to install the CLI in the test container. You can override via environment variables:
| Env Var | Mode | Example |
|---|---|---|
ASPIRE_E2E_ARCHIVE | LocalHive — extract archive into container | /tmp/aspire-e2e.tar.gz |
ASPIRE_E2E_QUALITY | Install script with quality | dev, staging, release |
ASPIRE_E2E_VERSION | Install script with version | 13.2.1 |
| (none, in CI) | PullRequest — install from PR artifacts | Auto-detected |
| (none, locally) | InstallScript (latest GA) | Auto-detected |
LocalHive (via ASPIRE_E2E_ARCHIVE) is the recommended mode for local development — it uses your locally-built CLI, packages, and bundle so you test exactly what you've changed.
Useful for verifying tests pass against shipped versions or catching regressions:
# Test against latest GA release
ASPIRE_E2E_QUALITY=release dotnet test tests/Aspire.Cli.EndToEnd.Tests/Aspire.Cli.EndToEnd.Tests.csproj \
-- --filter-method "*.CreateAndRunAspireStarterProject"
# Test against daily builds
ASPIRE_E2E_QUALITY=dev dotnet test ...
# Test against a specific version
ASPIRE_E2E_VERSION=13.2.1 dotnet test ...
The SequenceCounter class tracks the number of shell commands executed. This enables deterministic waiting for command completion via a custom shell prompt.
PrepareDockerEnvironmentAsync() configures the shell with a custom prompt: [N OK] $ or [N ERR:code] $ WaitForSuccessPromptAsync(counter) waits for a prompt showing the current count with OKvar counter = new SequenceCounter();
var auto = new Hex1bTerminalAutomator(terminal, defaultTimeout: TimeSpan.FromSeconds(500));
await auto.PrepareDockerEnvironmentAsync(counter, workspace); // Sets up prompt, counter starts at 1
await auto.TypeAsync("echo hello");
await auto.EnterAsync();
await auto.WaitForSuccessPromptAsync(counter); // Waits for "[1 OK] $ ", then increments to 2
await auto.TypeAsync("ls -la");
await auto.EnterAsync();
await auto.WaitForSuccessPromptAsync(counter); // Waits for "[2 OK] $ ", then increments to 3
await auto.TypeAsync("exit");
await auto.EnterAsync();
This approach is more reliable than arbitrary timeouts because it deterministically waits for each command to complete.
Use CellPatternSearcher to find text patterns in terminal output:
// Simple text search (literal string matching - PREFERRED)
var waitingForPrompt = new CellPatternSearcher()
.Find("Enter the project name");
// Literal string with special characters (use Find, not FindPattern!)
var waitingForTemplate = new CellPatternSearcher()
.Find("> Starter App (FastAPI/React)"); // Parentheses and slashes are literal
// Regex pattern (only when you need wildcards/regex features)
var waitingForAnyStarter = new CellPatternSearcher()
.FindPattern("> Starter App.*"); // .* matches anything
// Chained patterns (find "b", then scan right until "$", then right of " ")
var waitingForShell = new CellPatternSearcher()
.Find("b").RightUntil("$").Right(' ').Right(' ');
// Use in WaitUntilAsync
await auto.WaitUntilAsync(
snapshot => waitingForPrompt.Search(snapshot).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for prompt");
Find(string): Literal string matching. Use this for most cases.FindPattern(string): Regex pattern matching. Use only when you need regex features like wildcards.Important: If your search string contains regex special characters like (, ), /, ., *, +, ?, [, ], {, }, ^, $, |, or \, use Find() instead of FindPattern() to avoid regex interpretation.
| Method | Description |
|---|---|
WaitForSuccessPromptAsync(counter, timeout?) | Waits for [N OK] $ prompt, fails immediately if error prompt appears, and increments counter |
WaitForAnyPromptAsync(counter, timeout?) | Waits for any prompt (OK or ERR) and increments counter |
WaitForErrorPromptAsync(counter, timeout?) | Waits for [N ERR:code] $ prompt and increments counter |
RunCommandAsync(command, counter, timeout?) | Types a command, presses Enter, and waits for success prompt (fails fast on error) |
DeclineAgentInitPromptAsync() | Declines the aspire agent init prompt if it appears |
AspireNewAsync(projectName, counter, template?, useRedisCache?) | Runs aspire new interactively, handling template selection, project name, output path, URLs, Redis, and test project prompts |
See AspireNew Helper below for detailed usage.
| Method | Description |
|---|---|
PrepareDockerEnvironmentAsync(counter, workspace) | Sets up Docker container environment with custom prompt and command tracking |
InstallAspireCliInDockerAsync(installMode, counter) | Installs the Aspire CLI inside the Docker container |
ClearScreenAsync(counter) | Clears the terminal screen and waits for prompt |
| Method | Description |
|---|---|
IncrementSequence(counter) | Manually increments the counter |
The following extensions on Hex1bTerminalInputSequenceBuilder are still available but should not be used in new tests:
| Method | Description |
|---|---|
WaitForSuccessPrompt(counter, timeout?) | (legacy) Waits for [N OK] $ prompt and increments counter |
PrepareEnvironment(workspace, counter) | (legacy) Sets up custom prompt with command tracking |
SourceAspireBundleEnvironment(counter) | (legacy) Sources bundle PATH environment variables |
Wait for specific output patterns rather than arbitrary delays:
var waitingForMessage = new CellPatternSearcher()
.Find("Project created successfully.");
await auto.TypeAsync("aspire new");
await auto.EnterAsync();
await auto.WaitUntilAsync(
s => waitingForMessage.Search(s).Count > 0,
TimeSpan.FromMinutes(2),
description: "waiting for project created message");
After running shell commands, use WaitForSuccessPromptAsync() to wait for the command to complete:
await auto.TypeAsync("dotnet build");
await auto.EnterAsync();
await auto.WaitForSuccessPromptAsync(counter); // Waits for prompt, verifies success
await auto.TypeAsync("dotnet run");
await auto.EnterAsync();
await auto.WaitForSuccessPromptAsync(counter);
The AspireNew extension method centralizes the multi-step aspire new interactive flow. Use it instead of manually building the prompt sequence.
| Value | Template | Arrow Keys |
|---|---|---|
Starter (default) | Starter App (Blazor) | None (first option) |
JsReact | Starter App (ASP.NET Core/React) | Down ×1 |
PythonReact | Starter App (FastAPI/React) | Down ×2 |
ExpressReact | Starter App (Express/React) | Down ×3 |
EmptyAppHost | Empty AppHost | Down ×4 |
| Parameter | Default | Description |
|---|---|---|
projectName | (required) | Project name typed at the prompt |
counter | (required) | SequenceCounter for prompt tracking |
template | AspireTemplate.Starter | Which template to select |
useRedisCache | true | Accept Redis (Enter) or decline (Down+Enter). Only applies to Starter, JsReact, PythonReact. |
// Starter template with defaults (Redis=Yes, TestProject=No)
await auto.AspireNewAsync("MyProject", counter);
// Starter template, no Redis
await auto.AspireNewAsync("MyProject", counter, useRedisCache: false);
// JsReact template, no Redis
await auto.AspireNewAsync("MyProject", counter, template: AspireTemplate.JsReact, useRedisCache: false);
// PythonReact template
await auto.AspireNewAsync("MyProject", counter,
template: AspireTemplate.PythonReact,
useRedisCache: false);
// Empty app host
await auto.AspireNewAsync("MyProject", counter, template: AspireTemplate.EmptyAppHost);
For aspire new, use the AspireNewAsync helper instead of manually building the prompt sequence:
// DO: Use the helper
await auto.AspireNewAsync("MyProject", counter);
// DON'T: Manually build the sequence (this is what AspireNewAsync does internally)
var waitingForTemplatePrompt = new CellPatternSearcher()
.FindPattern("> Starter App");
var waitingForProjectNamePrompt = new CellPatternSearcher()
.Find("Enter the project name");
await auto.TypeAsync("aspire new");
await auto.EnterAsync();
await auto.WaitUntilAsync(
s => waitingForTemplatePrompt.Search(s).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for template prompt");
await auto.EnterAsync();
await auto.WaitUntilAsync(
s => waitingForProjectNamePrompt.Search(s).Count > 0,
TimeSpan.FromSeconds(10),
description: "waiting for project name prompt");
await auto.TypeAsync("MyProject");
await auto.EnterAsync();
For other interactive CLI commands, wait for each prompt before responding:
var waitingForPrompt = new CellPatternSearcher()
.Find("Enter your choice");
await auto.TypeAsync("aspire some-command");
await auto.EnterAsync();
await auto.WaitUntilAsync(
s => waitingForPrompt.Search(s).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for choice prompt");
await auto.EnterAsync();
For processes like aspire run that don't exit on their own:
using Hex1b.Input;
await auto.TypeAsync("aspire run");
await auto.EnterAsync();
await auto.WaitUntilAsync(
s => waitForCtrlCMessage.Search(s).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for Ctrl+C message");
await auto.Ctrl().KeyAsync(Hex1bKey.C); // Send Ctrl+C
await auto.WaitForSuccessPromptAsync(counter);
Some operations only apply in CI (like installing CLI from PR artifacts):
var installMode = CliE2ETestHelpers.DetectDockerInstallMode();
await auto.PrepareDockerEnvironmentAsync(counter, workspace);
await auto.InstallAspireCliInDockerAsync(installMode, counter);
// Continue with test commands...
Use CliE2ETestHelpers for CI environment variables:
var prNumber = CliE2ETestHelpers.GetRequiredPrNumber(); // GITHUB_PR_NUMBER (0 when local)
var commitSha = CliE2ETestHelpers.GetRequiredCommitSha(); // GITHUB_PR_HEAD_SHA ("local0000" when local)
var isCI = CliE2ETestHelpers.IsRunningInCI; // true when both env vars set
description: on WaitUntilAsyncEvery WaitUntilAsync call requires a named description: parameter. This description appears in logs and asciinema recordings to make debugging easier when a wait times out.
// DON'T: Missing description
await auto.WaitUntilAsync(
s => pattern.Search(s).Count > 0,
TimeSpan.FromSeconds(30));
// DO: Include a meaningful description
await auto.WaitUntilAsync(
s => pattern.Search(s).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for build output");
ExecuteCallback Was UsedThe old builder API used ExecuteCallback() to run synchronous operations mid-sequence. With the automator API, simply inline the code directly — no special wrapper is needed.
// Old builder API (DON'T use in new tests)
sequenceBuilder
.ExecuteCallback(() => File.WriteAllText(configPath, newConfig))
.Type("aspire run")
.Enter();
// Automator API (DO)
File.WriteAllText(configPath, newConfig);
await auto.TypeAsync("aspire run");
await auto.EnterAsync();
Use WaitUntilAsync() with specific output patterns instead of arbitrary delays:
// DON'T: Arbitrary delays
await Task.Delay(TimeSpan.FromSeconds(30));
// DO: Wait for specific output
await auto.WaitUntilAsync(
snapshot => pattern.Search(snapshot).Count > 0,
TimeSpan.FromSeconds(30),
description: "waiting for expected output");
Don't hard-code the sequence numbers in WaitForSuccessPromptAsync calls. Use the counter:
// DON'T: Hard-coded sequence numbers
await auto.WaitUntilAsync(
s => s.GetScreenText().Contains("[3 OK] $ "),
timeout,
description: "waiting for prompt");
// DO: Use the counter
await auto.WaitForSuccessPromptAsync(counter);
The counter automatically tracks which command you're waiting for, even if command sequences change.
When writing new CLI E2E tests, use the Hex1b MCP server to interactively explore what terminal output to expect. The MCP server provides tools to start terminal sessions, send commands, and capture screenshots—helping you discover the exact strings and prompts to use in CellPatternSearcher.
aspire new or aspire run) and observe the outputCellPatternSearcher patternsaspire newAsk the MCP server to:
aspire new interactivelyThis reveals the exact strings like:
"> Starter App" for template selection"Enter the project name" for name input"Press Ctrl+C to stop..." for run completionCellPatternSearcher isn't matching, capture current terminal state to compareCapture Terminal Text to get plain text for pattern matchingCapture Terminal Screenshot (SVG) for visual debuggingWait for Terminal Text tool works similarly to WaitUntil in testsWhen adding new CLI operations as extension methods, define them on Hex1bTerminalAutomator:
internal static async Task MyNewOperationAsync(
this Hex1bTerminalAutomator auto,
string arg,
SequenceCounter counter,
TimeSpan? timeout = null)
{
var expectedOutput = new CellPatternSearcher()
.Find("Expected output");
await auto.TypeAsync($"aspire my-command {arg}");
await auto.EnterAsync();
await auto.WaitUntilAsync(
snapshot => expectedOutput.Search(snapshot).Count > 0,
timeout ?? TimeSpan.FromSeconds(30),
description: "waiting for expected output from my-command");
await auto.WaitForSuccessPromptAsync(counter);
}
Key points:
Hex1bTerminalAutomatorSequenceCounter parameter for prompt trackingCellPatternSearcher for output detectiondescription: on WaitUntilAsync callsWaitForSuccessPromptAsync(counter) after command completionTask (no fluent chaining needed with async/await)Environment variables set in CI:
GITHUB_PR_NUMBER: PR number for downloading CLI artifactsGITHUB_PR_HEAD_SHA: PR head commit SHA for version verification (not the merge commit)GH_TOKEN: GitHub token for API accessGITHUB_WORKSPACE: Workspace root for artifact pathsEach test class runs as a separate CI job via the unified TestEnumerationRunsheetBuilder infrastructure (using SplitTestsOnCI=true) for parallel execution.
When CLI E2E tests fail in CI, follow these steps to diagnose the issue:
Flaky test investigation: for recurring/intermittent failures, see
troubleshooting.mdfor a catalog of known flake classes (Y/n input race, prompt-counter desync, etc.) and the recipes to identify them from.castrecordings.
The fastest way to debug a CLI E2E test failure is to download and play the asciinema recording.
Using the helper scripts (recommended):
# Linux/macOS - Download and play recording from latest CI run on current branch
./eng/scripts/get-cli-e2e-recording.sh -p
# List available test recordings
./eng/scripts/get-cli-e2e-recording.sh -l
# Download specific test
./eng/scripts/get-cli-e2e-recording.sh -t SmokeTests -p
# Download from specific run
./eng/scripts/get-cli-e2e-recording.sh -r 20944531393 -p
# Windows PowerShell
.\eng\scripts\get-cli-e2e-recording.ps1 -Play
# List available recordings
.\eng\scripts\get-cli-e2e-recording.ps1 -List
# Download specific test
.\eng\scripts\get-cli-e2e-recording.ps1 -TestName SmokeTests -Play
# Download from specific run
.\eng\scripts\get-cli-e2e-recording.ps1 -RunId 20944531393 -Play
Manual download steps:
# List recent CI runs for your branch
gh run list --branch $(git branch --show-current) --workflow CI --limit 5
# Get the run ID from the output or use:
RUN_ID=$(gh run list --branch $(git branch --show-current) --workflow CI --limit 1 --json databaseId --jq '.[0].databaseId')
echo "Run ID: $RUN_ID"
echo "URL: https://github.com/microsoft/aspire/actions/runs/$RUN_ID"
Job names follow the pattern: Tests / Cli E2E Linux (<TestClass>) / <TestClass> (ubuntu-latest)
Artifact names follow the pattern: logs-<TestClass>-ubuntu-latest
# Check if CLI E2E tests ran and their status
gh run view $RUN_ID --json jobs --jq '.jobs[] | select(.name | test("Cli E2E")) | {name, conclusion}'
# List available CLI E2E artifacts
gh api --paginate "repos/microsoft/aspire/actions/runs/$RUN_ID/artifacts" \
--jq '.artifacts[].name' | grep -i "smoke"
# Download the artifact
mkdir -p /tmp/cli-e2e-debug
gh run download $RUN_ID -n logs-SmokeTests-ubuntu-latest -D /tmp/cli-e2e-debug
# Find the recording
find /tmp/cli-e2e-debug -name "*.cast"
# Play it (requires asciinema: pip install asciinema)
asciinema play /tmp/cli-e2e-debug/testresults/recordings/CreateAndRunAspireStarterProject.cast
# Or view raw content for AI analysis
head -100 /tmp/cli-e2e-debug/testresults/recordings/CreateAndRunAspireStarterProject.cast
Downloaded artifacts contain:
testresults/
├── <TestClass>_net10.0_*.trx # Test results XML
├── Aspire.Cli.EndToEnd.Tests_*.log # Console output log
├── *.crash.dmp # Crash dump (if test crashed)
├── test.binlog # MSBuild binary log
├── recordings/
│ ├── CreateAndRunAspireStarterProject.cast # Asciinema recording
│ └── ...
└── workspaces/ # Captured project workspaces (on failure)
└── TestClassName.MethodName/ # Full generated project for debugging
├── apphost.ts
├── aspire.config.json
├── .aspire/modules/ # Generated SDK - check aspire.js for exports
└── ...
Tests annotated with [CaptureWorkspaceOnFailure] automatically copy the generated project workspace into the test artifacts when a test fails. This is invaluable for debugging template generation or aspire run failures — you can inspect the exact generated files including the SDK output in .aspire/modules/aspire.js.
To add workspace capture to a new test:
[Fact]
[CaptureWorkspaceOnFailure]
public async Task MyTemplateTest()
{
var workspace = TemporaryWorkspace.Create(output);
// ... test code — workspace is automatically registered for capture ...
}
### One-Liner: Download Latest Recording
```bash
# Download and play the latest CLI E2E recording from current branch
RUN_ID=$(gh run list --branch $(git branch --show-current) --workflow CI --limit 1 --json databaseId --jq '.[0].databaseId') && \
rm -rf /tmp/cli-e2e-debug && mkdir -p /tmp/cli-e2e-debug && \
gh run download $RUN_ID -n logs-SmokeTests-ubuntu-latest -D /tmp/cli-e2e-debug && \
CAST=$(find /tmp/cli-e2e-debug -name "*.cast" | head -1) && \
echo "Recording: $CAST" && \
asciinema play "$CAST"
| Symptom | Likely Cause | Solution |
|---|---|---|
| Timeout waiting for prompt | Command failed or hung | Check recording to see terminal output at timeout |
[N ERR:code] $ in prompt | Previous command exited with non-zero | Check recording to see which command failed |
| Pattern not found | Output format changed | Update CellPatternSearcher patterns |
| Pattern not found but text is visible | Using FindPattern with regex special chars | Use Find() instead of FindPattern() for literal strings containing (, ), /, etc. |
| Test hangs indefinitely | Waiting for wrong prompt number | Verify SequenceCounter usage matches commands |
| Timeout waiting for dashboard URL | Project failed to build/run | Check recording for build errors |