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.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
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.
Aspire CLI End-to-End Testing with Hex1b
This skill provides patterns and practices for writing end-to-end tests for the Aspire CLI using the Hex1b terminal automation library.
Overview
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.
Key Components
Core Classes
Hex1bTerminal: The main terminal class from the Hex1b library for terminal automationHex1bTerminalInputSequenceBuilder: Fluent API for building sequences of terminal input/output operationsCellPatternSearcher: Pattern matching for terminal cell contentSequenceCounter(Helpers/SequenceCounter.cs): Tracks command execution count for deterministic prompt detectionCliE2ETestHelpers(Helpers/CliE2ETestHelpers.cs): Extension methods and environment variable helpersTemporaryWorkspace: Creates isolated temporary directories for test execution
Test Architecture
Each test:
- Creates a
TemporaryWorkspacefor isolation - Builds a
Hex1bTerminalwith headless mode and asciinema recording - Creates a
Hex1bTerminalInputSequenceBuilderwith operations - Applies the sequence to the terminal and awaits completion
Test Structure
public sealed class SmokeTests : IAsyncDisposable
{
private readonly ITestOutputHelper _output;
private readonly string _workDirectory;
public SmokeTests(ITestOutputHelper output)
{
_output = output;
_workDirectory = Path.Combine(Path.GetTempPath(), "aspire-cli-e2e", Guid.NewGuid().ToString("N")[..8]);
Directory.CreateDirectory(_workDirectory);
}
[Fact]
public async Task MyCliTest()
{
var workspace = TemporaryWorkspace.Create(_output);
var prNumber = CliE2ETestHelpers.GetRequiredPrNumber();
var commitSha = CliE2ETestHelpers.GetRequiredCommitSha();
var isCI = CliE2ETestHelpers.IsRunningInCI;
var recordingPath = CliE2ETestHelpers.GetTestResultsRecordingPath(nameof(MyCliTest));
var builder = Hex1bTerminal.CreateBuilder()
.WithHeadless()
.WithAsciinemaRecording(recordingPath)
.WithPtyProcess("/bin/bash", ["--norc"]);
using var terminal = builder.Build();
var pendingRun = terminal.RunAsync(TestContext.Current.CancellationToken);
// Define pattern searchers for expected output
var waitingForExpectedOutput = new CellPatternSearcher()
.Find("Expected output text");
// Create a sequence counter for tracking command prompts
var counter = new SequenceCounter();
var sequenceBuilder = new Hex1bTerminalInputSequenceBuilder();
// Build the input sequence
sequenceBuilder.PrepareEnvironment(workspace, counter);
if (isCI)
{
sequenceBuilder.InstallAspireCliFromPullRequest(prNumber, counter);
sequenceBuilder.SourceAspireCliEnvironment(counter);
}
sequenceBuilder
.Type("aspire --version")
.Enter()
.WaitForSuccessPrompt(counter)
.Type("exit")
.Enter();
var sequence = sequenceBuilder.Build();
await sequence.ApplyAsync(terminal, TestContext.Current.CancellationToken);
await pendingRun;
}
public async ValueTask DisposeAsync()
{
// Clean up work directory
if (Directory.Exists(_workDirectory))
{
Directory.Delete(_workDirectory, recursive: true);
}
await ValueTask.CompletedTask;
}
}
SequenceCounter and Prompt Detection
The SequenceCounter class tracks the number of shell commands executed. This enables deterministic waiting for command completion via a custom shell prompt.
How It Works
PrepareEnvironment()configures the shell with a custom prompt:[N OK] $or[N ERR:code] $- Each command increments the counter
WaitForSuccessPrompt(counter)waits for a prompt showing the current count withOK
var counter = new SequenceCounter();
sequenceBuilder.PrepareEnvironment(workspace, counter) // Sets up prompt, counter starts at 1
.Type("echo hello")
.Enter()
.WaitForSuccessPrompt(counter) // Waits for "[1 OK] $ ", then increments to 2
.Type("ls -la")
.Enter()
.WaitForSuccessPrompt(counter) // Waits for "[2 OK] $ ", then increments to 3
.Type("exit")
.Enter();
This approach is more reliable than arbitrary timeouts because it deterministically waits for each command to complete.
Pattern Searching with CellPatternSearcher
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 WaitUntil
sequenceBuilder.WaitUntil(
snapshot => waitingForPrompt.Search(snapshot).Count > 0,
TimeSpan.FromSeconds(30));
Find vs FindPattern
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.
Extension Methods
CliE2ETestHelpers Extensions on Hex1bTerminalInputSequenceBuilder
| Method | Description |
|---|---|
PrepareEnvironment(workspace, counter) | Sets up custom prompt with command tracking, changes to workspace directory |
InstallAspireCliFromPullRequest(prNumber, counter) | Downloads and installs CLI from PR artifacts |
SourceAspireCliEnvironment(counter) | Adds ~/.aspire/bin to PATH (Linux only) |
SequenceCounterExtensions
| Method | Description |
|---|---|
WaitForSuccessPrompt(counter, timeout?) | Waits for [N OK] $ prompt and increments counter |
IncrementSequence(counter) | Manually increments the counter |
DO: Use CellPatternSearcher for Output Detection
Wait for specific output patterns rather than arbitrary delays:
var waitingForMessage = new CellPatternSearcher()
.Find("Project created successfully.");
sequenceBuilder
.Type("aspire new")
.Enter()
.WaitUntil(s => waitingForMessage.Search(s).Count > 0, TimeSpan.FromMinutes(2));
DO: Use WaitForSuccessPrompt After Commands
After running shell commands, use WaitForSuccessPrompt() to wait for the command to complete:
sequenceBuilder
.Type("dotnet build")
.Enter()
.WaitForSuccessPrompt(counter) // Waits for prompt, verifies success
.Type("dotnet run")
.Enter()
.WaitForSuccessPrompt(counter);
DO: Handle Interactive Prompts
For CLI commands with interactive prompts, wait for each prompt before responding:
var waitingForTemplatePrompt = new CellPatternSearcher()
.FindPattern("> Starter App");
var waitingForProjectNamePrompt = new CellPatternSearcher()
.Find("Enter the project name");
sequenceBuilder
.Type("aspire new")
.Enter()
.WaitUntil(s => waitingForTemplatePrompt.Search(s).Count > 0, TimeSpan.FromSeconds(30))
.Enter() // Select first template
.WaitUntil(s => waitingForProjectNamePrompt.Search(s).Count > 0, TimeSpan.FromSeconds(10))
.Type("MyProject")
.Enter();
DO: Use Ctrl+C to Stop Long-Running Processes
For processes like aspire run that don't exit on their own:
sequenceBuilder
.Type("aspire run")
.Enter()
.WaitUntil(s => waitForCtrlCMessage.Search(s).Count > 0, TimeSpan.FromSeconds(30))
.Ctrl().Key(Hex1bKey.C) // Send Ctrl+C
.WaitForSuccessPrompt(counter);
DO: Check IsRunningInCI for CI-Only Operations
Some operations only apply in CI (like installing CLI from PR artifacts):
var isCI = CliE2ETestHelpers.IsRunningInCI;
sequenceBuilder.PrepareEnvironment(workspace, counter);
if (isCI)
{
sequenceBuilder.InstallAspireCliFromPullRequest(prNumber, counter);
sequenceBuilder.SourceAspireCliEnvironment(counter);
}
// Continue with test commands...
DO: Get Environment Variables Using Helpers
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
var recordingPath = CliE2ETestHelpers.GetTestResultsRecordingPath("test-name"); // Appropriate path for CI vs local
DON'T: Use Hard-coded Delays
Use WaitUntil() with specific output patterns instead of arbitrary delays:
// DON'T: Arbitrary delays
.Wait(TimeSpan.FromSeconds(30))
// DO: Wait for specific output
.WaitUntil(
snapshot => pattern.Search(snapshot).Count > 0,
TimeSpan.FromSeconds(30))
DON'T: Hard-code Prompt Sequence Numbers
Don't hard-code the sequence numbers in WaitForSuccessPrompt calls. Use the counter:
// DON'T: Hard-coded sequence numbers
.WaitUntil(s => s.GetScreenText().Contains("[3 OK] $ "), timeout)
// DO: Use the counter
.WaitForSuccessPrompt(counter)
The counter automatically tracks which command you're waiting for, even if command sequences change.
Writing New Tests with Hex1b MCP Server
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.
Workflow for Discovering Patterns
- Start a bash terminal session using the MCP server's terminal creation tools
- Send commands (like
aspire neworaspire run) and observe the output - Capture terminal screenshots (SVG or text) to see exact formatting
- Use captured text to build your
CellPatternSearcherpatterns
Example: Finding Prompt Text for aspire new
Ask the MCP server to:
- Start a new bash terminal
- Run
aspire newinteractively - Capture the terminal text at each prompt
This reveals the exact strings like:
"> Starter App"for template selection"Enter the project name"for name input"Press Ctrl+C to stop..."for run completion
Benefits
- See real output: No guessing what text appears in the terminal
- Exact formatting: Capture shows spacing, ANSI codes stripped, actual cell content
- Interactive exploration: Try different inputs and see responses before writing test code
- Debug patterns: If a
CellPatternSearcherisn't matching, capture current terminal state to compare
Tips
- Use
Capture Terminal Textto get plain text for pattern matching - Use
Capture Terminal Screenshot(SVG) for visual debugging - The
Wait for Terminal Texttool works similarly toWaitUntilin tests - Terminal sessions persist, so you can step through multi-command sequences
Adding New Extension Methods
When adding new CLI operations as extension methods:
internal static Hex1bTerminalInputSequenceBuilder MyNewOperation(
this Hex1bTerminalInputSequenceBuilder builder,
string arg,
SequenceCounter counter,
TimeSpan? timeout = null)
{
var expectedOutput = new CellPatternSearcher()
.Find("Expected output");
return builder
.Type($"aspire my-command {arg}")
.Enter()
.WaitUntil(
snapshot => expectedOutput.Search(snapshot).Count > 0,
timeout ?? TimeSpan.FromSeconds(30))
.WaitForSuccessPrompt(counter);
}
Key points:
- Define as extension method on
Hex1bTerminalInputSequenceBuilder - Accept
SequenceCounterparameter for prompt tracking - Use
CellPatternSearcherfor output detection - Call
WaitForSuccessPrompt(counter)after command completion - Return the builder for fluent chaining
CI Configuration
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 paths
Each test class runs as a separate CI job via CliEndToEndTestRunsheetBuilder for parallel execution.
CI Troubleshooting
When CLI E2E tests fail in CI, follow these steps to diagnose the issue:
Quick Start: Download and Play Recordings
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:
Step 1: Find the CI Run
# 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/dotnet/aspire/actions/runs/$RUN_ID"
Step 2: Find CLI E2E Test Artifacts
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/dotnet/aspire/actions/runs/$RUN_ID/artifacts" \
--jq '.artifacts[].name' | grep -i "smoke"
Step 3: Download and Play Recording
# 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
Artifact Contents
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
└── ...
One-Liner: Download Latest Recording
# 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"
Common Issues and Solutions
| 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 |
More by dotnet
View allVerifies UI tests catch the bug. Supports two modes - verify failure only (test creation) or full verification (test + fix validation).
Proposes ONE independent fix approach, applies it, runs tests, records result with failure analysis in state file, then reverts. Reads prior attempts to learn from failures. Returns exhausted=true when no more ideas. Max 5 attempts per session.
Finds open PRs in the dotnet/maui and dotnet/docs-maui repositories that are good candidates for review, prioritizing by milestone, priority labels, partner/community status.
Creates UI tests for a GitHub issue and verifies they reproduce the bug. Iterates until tests actually fail (proving they catch the issue). Use when PR lacks tests or tests need to be created for an issue.
