mcpbeat

Create Recorded Test

azure/create-recorded-test

Generate a new recorded integration test

939 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
883
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Azure/azure-sdk-for-rust --skill create-recorded-test

The instruction itself

5 sections, as written by the author

Generate a new recorded integration test

You will generate one or more recorded integration tests under the sdk/{service-directory}/{crate-name}/tests directory in ${input:testFile:test_file}.rs where:

  • {repo-root} is the root directory containing Cargo.toml.
  • {service-directory} is the directory name under sdk for the current ${file} e.g., keyvault.
  • {crate-name} is the crate directory name under sdk/{service-directory} for the current ${file} e.g., azure_security_keyvault_secrets.

Set up

These instructions only need to be done once. If changes described are already present, do not make the changes again.

  • Recorded tests must always be integration tests under the sdk/{service-directory}/{crate-name}/tests directory. Do not add recorded tests to src/, examples/, or README.md.
  • If PowerShell is not installed, stop and ask the user to install it first using PowerShell installation instructions.
  • Provision test resources using the full script path:
  {repo-root}/eng/common/TestResources/New-TestResources.ps1 -ServiceDirectory {service-directory}
  • To run recorded tests, rely on the existing test infrastructure. Test Proxy is acquired automatically for test runs when needed, but not for test-proxy push -a sdk/{service-directory}/assets.json.
  • For manual Test Proxy usage or asset publishing, see CONTRIBUTING.md and the Test Proxy documentation.

Adding a new recorded test

For each new recorded test:

  • In sdk/{service-directory}/{crate-name}/tests/${input:testFile}.rs, add or update async integration tests attributed with #[recorded::test].
  • Use the signature async fn ${input:testName}(ctx: TestContext) -> Result<()>.
  • Start each test with:
  • let recording = ctx.recording();
  • let mut options = {Client}Options::default();
  • recording.instrument(&mut options.client_options);
  • Construct clients with recording.var("{ENV_VAR}", None).as_str(), recording.credential(), and Some(options).
  • Use sdk/keyvault/azure_security_keyvault_secrets/tests/secret_client.rs as the example for function signatures, TestContext, and required ClientOptions instrumentation.
  • Generate one test per client method or scenario the user wants to cover. If multiple methods share setup and belong together, keep them in the same integration test file as separate #[recorded::test] functions.
  • Prefer asserting on returned models or observable state instead of only checking success.
  • Reuse existing crate patterns for imports, helper types, resource naming, and environment variables.

Recording and playback

  • Record or update sessions against live resources:
  AZURE_TEST_MODE=record cargo test -p {crate-name} --test ${input:testFile}
  • Run playback to make sure tests were properly recorded:
  cargo test -p {crate-name} --test ${input:testFile}
  • After recording and playback succeeds, publish updated recordings only if test-proxy is already installed and available:
  test-proxy push -a sdk/{service-directory}/assets.json

Tear down

  • Remove provisioned test resources using the full script path when they are no longer needed:
  {repo-root}/eng/common/TestResources/Remove-TestResources.ps1 -ServiceDirectory {service-directory}

How to use it

Copy the folder

Take azure/create-recorded-test from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.