Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

backend-testing后端测试

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

2

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-gods --skill backend-testing

简介

用于辅助后端测试用例编写和回归验证,适合单元测试与集成测试场景。

  • 适用于验证 REST/GraphQL 接口、数据库状态变更或鉴权逻辑的正确性。
  • 使用时需确认项目测试框架(如 Pytest)、夹具数据和运行命令,避免误改业务逻辑。
  • 安装命令:npx skills add https://github.com/akillness/oh-my-gods --skill backend-testing。
  • 涉及浏览器或外部服务时应区分模拟环境与真实调用,防止副作用。

SKILL.md

Backend Testing

Backend testing should prove behavior at the cheapest layer that still makes the user-visible contract observable. Keep this entrypoint compact, then load the support files when framework boilerplate or debugging detail is needed.

When to use this skill

  • Add or repair unit tests for backend business logic
  • Add integration tests for REST, GraphQL, queue, or database-backed services
  • Verify authentication, authorization, validation, and state changes
  • Improve coverage around regressions, edge cases, or flaky suites
  • Choose between Jest, Pytest, Supertest, FastAPI TestClient, or equivalent backend tooling

Do not use this skill for browser-first UI journeys or visual regression work.

Instructions

Step 1: Triage the test surface first

Capture the minimum facts before writing tests:

  • language, runtime, and framework
  • existing test runner
  • DB or external dependencies
  • auth model such as session, JWT, OAuth, or API key
  • exact behavior to prove or bug to lock

Then choose the smallest useful layer:

TargetUse whenTypical tooling
Unit testPure logic or thin adaptersJest, Vitest, or Pytest with mocks/stubs
Integration testEndpoint plus middleware plus persistenceSupertest, httpx, or FastAPI TestClient
Auth testLogin, token refresh, role, or permission boundariesIntegration harness plus fixture users/tokens
Regression testKnown bug or flaky flow already reproducedWhatever layer proves the failure fastest

If the bug already regressed in production or CI, lock that path first before adding wider coverage.

Step 2: Build an isolated test environment

  • Keep test config separate from development or production config.
  • Use disposable or resettable database state.
  • Reset state per test or per suite.
  • Mock external network calls unless the task explicitly needs live integration.
  • Keep setup fast enough to rerun frequently during debugging.

Recommended isolation patterns:

  • Node.js: jest or vitest plus .env.test plus transaction rollback or DB reset
  • Python: pytest fixtures plus isolated settings plus rollback or temporary DB
  • External services: fakes, local emulators, or HTTP mocking instead of live calls

Detailed setup recipes live in references/framework-recipes.md.

Step 3: Write the highest-leverage tests first

Prioritize in this order:

  1. business-critical paths
  2. auth and permission boundaries
  3. validation and unhappy paths
  4. database or queue side effects
  5. edge cases that already caused defects

Minimum expectations per backend slice:

  • success case
  • invalid input or boundary case
  • unauthorized or forbidden case when auth matters
  • observable side effect check such as DB row, emitted job, or returned payload

Step 4: Keep assertions observable

Good assertions prove behavior the user would notice:

  • status code and response shape
  • database state change
  • emitted event or queued job
  • permission boundary held
  • error message or machine-readable error code

Avoid overspecifying internals when the contract can be verified from the boundary instead.

Step 5: Use the right level of mocking

  • Mock payments, email, third-party APIs, time, and similar unstable boundaries.
  • Do not mock the unit under test.
  • Prefer real persistence for integration tests when the task is about data flow.
  • If mocks drift from reality, add one narrower integration test instead of stacking more mocks.

Step 6: Return a structured testing outcome

When producing work, include:

  • Test surface: what is being covered and why
  • Plan: unit, integration, auth, or regression split
  • Implementation: files created or modified
  • Run: exact commands to execute
  • Gaps: remaining risks or deferred scenarios

When the user wants direct implementation, write the tests instead of stopping at advice. Stay at planning level only when the request is explicitly strategic or essential context is missing.

Step 7: Pull support files only when needed

Use the support files instead of expanding this entrypoint:

  • references/framework-recipes.md for Node/Python setup, sample configs, and representative test code
  • references/troubleshooting.md for shared-state bugs, hanging Jest processes, async timeouts, and similar failures

Output format

Expected response shape:

  • Test surface: what is under test and why
  • Plan: chosen test layer and key scenarios
  • Implementation: tests or file changes to add
  • Run: exact commands
  • Gaps: anything intentionally left out

Examples

Example 1: Add auth coverage to a Node API

Input:

Add backend tests for the login and refresh-token endpoints in this Express service.

Output shape:

  • sets up isolated API integration tests
  • includes success and failure cases
  • checks token issuance or refresh behavior
  • verifies database or session side effects when relevant

Example 2: Add regression coverage for a Python service

Input:

Our FastAPI order endpoint sometimes accepts negative quantities. Add tests before fixing it.

Output shape:

  • locks the regression with a boundary-focused test
  • keeps validation visible at the HTTP boundary
  • uses pytest fixtures or TestClient patterns instead of browser automation

Example 3: Diagnose flaky backend tests

Input:

These Jest API tests pass alone but fail in the full suite. What should I do?

Output shape:

  • investigates shared state, hanging handles, timers, or leaked mocks
  • recommends isolation fixes before widening coverage
  • routes detailed remediation to the troubleshooting reference when needed

Example 4: Pick the right test layer

Input:

Should this repository method get a unit test or an integration test?

Output shape:

  • classifies the method by dependency shape
  • explains the tradeoff briefly
  • chooses the fastest layer that still proves the important behavior

Best practices

  1. Start with the smallest test that proves the user-visible contract.
  2. Use auth and validation failures as first-class test cases.
  3. Prefer deterministic data setup over shared mutable fixtures.
  4. Treat flaky tests as correctness bugs, not CI noise.
  5. Add eval coverage before running any skill-autoresearch loop on this skill.
  6. Keep framework-specific boilerplate in references so the main skill stays reviewable.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.92%
按下载量换算26

Claude

29.37%
按下载量换算21

Cursor

18.62%
按下载量换算13

Gemini CLI

9.49%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills