Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问clear审计通过

test-backend-units测试后端单元

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

576

周安装

24

GitHub Stars

86

下载量

192
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:test-backend-units(测试后端单元)
来源仓库:https://github.com/marcelmichau/fake-survey-generator
仓库路径:skills/test-backend-units
安装命令:
npx skills add https://github.com/marcelmichau/fake-survey-generator --skill test-backend-units
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/marcelmichau/fake-survey-generator --skill test-backend-units

简介

用于辅助测试设计、自动化测试、用例整理和回归验证。

  • 适合编写单元测试、端到端测试或根据失败日志定位问题。
  • 需确认项目测试框架、运行命令和夹具数据后使用。
  • 涉及浏览器或外部服务时应区分本地模拟与生产环境。
  • test-backend-units 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Test Backend Units Skill

Use this skill to run unit and integration tests (excluding acceptance tests) to validate that features are properly tested.

What This Skill Does

  1. Runs dotnet test with a filter to exclude acceptance tests (which require Aspire runtime to be running)
  2. Includes test projects:

- FakeSurveyGenerator.Application.Tests (unit tests for business logic) - FakeSurveyGenerator.Api.Tests.Integration (integration tests with real SQL Server & Redis via Testcontainers)

  1. Excludes test projects:

- FakeSurveyGenerator.Acceptance.Tests (E2E tests requiring Aspire runtime - validated separately via E2E skill)

  1. Collects test results including:

- Total tests run, passed, failed, skipped - Failed test names and error details - Code coverage metrics

  1. Reports failures with specific test names and assertion errors
  2. Exits with failure status if any tests fail

Filter Rationale

Acceptance tests are excluded because they require the Aspire orchestration environment to be running. They are validated separately via the validate-e2e skill after Aspire runtime is started. This separation allows:

  • Faster feedback cycle (unit + integration tests run in ~20 seconds)
  • Clean separation of concerns (logic tests vs. E2E validation)
  • Avoiding timeout issues when running acceptance tests without Aspire infrastructure

When to Use

  • After implementing new feature logic to ensure it's covered by tests
  • Before deploying changes to validate no regressions
  • To check code coverage metrics
  • To verify that test infrastructure (databases, Redis) works correctly
  • To ensure integration tests pass with real dependencies

How the Agent Should Use This Skill

  1. Prepare: Ensure backend build succeeded first via Build Backend Skill
  2. Invoke: Run tests from repository root with the treenode filter to exclude acceptance tests: dotnet test --treenode-filter "/(*Tests*)&(!*Acceptance*)/*/*/*" --ignore-exit-code 8

- The filter --treenode-filter "/(*Tests*)&(!*Acceptance*)/*/*/*" includes all test projects EXCEPT those with "Acceptance" in the name - The flag --ignore-exit-code 8 treats exit code 8 (partial pass - when some test projects have zero tests) as success, since acceptance tests are filtered out

  1. Parse Output: Monitor stdout and stderr for:

- Test run summary (total tests, passed/failed counts) - Failed test names (format: NameSpace.TestClass.TestMethod) - Error details and stack traces - Code coverage percentage per project

  1. Handle Failures: If any tests fail:

- Extract failed test names - Review assertion errors or exception messages - Report specific failures to user with context - Halt further validation

  1. Report Coverage: Include code coverage metrics from output

Success Criteria

  • Exit code: 0 (or 8 when ignoring filtered-out test projects)
  • All executed tests pass (output shows failed: 0 or similar)
  • No error output to stderr indicating test execution issues
  • Filter successfully excludes acceptance tests from execution
  • Only Application.Tests and Api.Tests.Integration run

Failure Indicators

  • Exit code: 1 or higher (when not using --ignore-exit-code 8)
  • Stdout contains failed test counts (e.g., failed: 3)
  • Individual test failure messages with names and error details
  • May show timeout errors if integration test containers fail to start

Test Projects Reference

FakeSurveyGenerator.Application.Tests

  • Type: Unit tests
  • Framework: TUnit
  • Coverage: Business logic, domain models, application services
  • Mocking: NSubstitute for dependencies
  • Test Data: AutoFixture for fixtures

FakeSurveyGenerator.Api.Tests.Integration

  • Type: Integration tests
  • Framework: TUnit + Testcontainers
  • Coverage: API endpoints, database operations, cache interactions
  • Real Dependencies: SQL Server (via Testcontainers), Redis (via Testcontainers)
  • DB Cleanup: Respawn for test isolation

Common Test Patterns

  • Arrange-Act-Assert structure
  • Async/await for async test methods
  • Test class naming: {ComponentUnderTest}Tests
  • Test method naming: {Method}_GivenCondition_ExpectedBehavior

Notes

  • Tests are located in src/server/ directory alongside source code
  • TrxReport format is used for reporting
  • CodeCoverage analysis is enabled on build
  • Treenode Filter: --treenode-filter "/(*Tests*)&(!*Acceptance*)/*/*/*" excludes acceptance tests (same as CI/CD pipeline in .azdo/pipelines/azure-dev.yml)
  • Exit Code Handling: Use --ignore-exit-code 8 to treat exit code 8 (partial pass due to filtered-out projects) as success
  • Run with -v n for detailed output if needed: dotnet test --treenode-filter "/(*Tests*)&(!*Acceptance*)/*/*/*" --ignore-exit-code 8 -v n
  • Some integration tests require Docker to be running (for Testcontainers)
  • Acceptance tests are run separately via the validate-e2e skill after Aspire runtime is started

Next Steps After Success

Once all tests pass, typically invoke:

  • Validate Aspire Runtime Skill - to start the running application
  • Validate E2E Skill - to run acceptance tests and interactive UI validation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.44%
按下载量换算55

Antigravity

21.85%
按下载量换算42

windsurf

19.66%
按下载量换算38

Codex

11.84%
按下载量换算23

trae

8.95%
按下载量换算17

OpenCode

3.4%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills