Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

testing-strategies测试策略

Agent Skill

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

总安装

303

周安装

13

GitHub Stars

公开资料未说明

下载量

106
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add 5dlabs/cto --skill "testing-strategies"

简介

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

  • 适合编写单元测试、端到端测试或根据失败日志定位问题。
  • 需确认项目测试框架、运行命令和夹具数据,避免为通过测试而改坏逻辑;涉及浏览器服务时应区分环境与模拟。
  • 安装命令:npx skills add 5dlabs/cto --skill "testing-strategies",来源仓库:https://github.com/5dlabs/cto/tree/main/skills/testing-strategies。
  • 建议确认权限范围和维护状态,涉及外部服务时注意操作边界。

SKILL.md

Testing Strategies

Comprehensive testing patterns for ensuring code quality through automated tests.

Testing Approach

  1. Unit Tests - Test individual functions/methods
  2. Integration Tests - Test component interactions
  3. E2E Tests - Test full user flows
  4. Edge Cases - Cover boundary conditions
  5. Error Handling - Test failure scenarios

Testing Guidelines

  • Write tests that document behavior
  • Use descriptive test names
  • Follow AAA pattern (Arrange, Act, Assert)
  • Mock external dependencies appropriately
  • Keep tests fast and deterministic
  • Test edge cases and error paths
  • Aim for 80%+ coverage

Language-Specific Testing

Rust

cargo test --workspace
cargo test --workspace -- --nocapture  # Show output
cargo tarpaulin --out Html  # Coverage

Unit Test Pattern:

#[cfg(test)]
mod tests {
    use super::*;
    use proptest::prelude::*;

    #[test]
    fn test_user_creation() {
        let user = User::new("test@example.com", "password123");
        assert!(user.is_ok());
    }

    // Property-based testing
    proptest! {
        #[test]
        fn test_email_validation(email in "[a-z]+@[a-z]+\\.[a-z]+") {
            let result = validate_email(&email);
            prop_assert!(result.is_ok());
        }
    }
}

Integration Test Pattern:

// tests/integration_test.rs
use sqlx::PgPool;

#[sqlx::test]
async fn test_user_repository(pool: PgPool) {
    let repo = UserRepository::new(pool);
    let user = repo.create("test@example.com").await.unwrap();
    assert_eq!(user.email, "test@example.com");
}

Async Testing:

#[tokio::test]
async fn test_async_operation() {
    let result = async_function().await;
    assert!(result.is_ok());
}

TypeScript

# Bun projects
bun test
bun test --coverage

# Next.js projects
pnpm test
pnpm test --coverage
pnpm test:e2e  # Playwright

Effect Service Testing:

import { Effect, Layer } from "effect"
import { describe, it, expect } from "bun:test"

describe("UserService", () => {
  const TestDatabaseLayer = Layer.succeed(DatabaseService, {
    query: () => Effect.succeed([{ id: "1", name: "Test" }]),
  })

  it("should fetch users", async () => {
    const program = Effect.gen(function* () {
      const db = yield* DatabaseService
      return yield* db.query("SELECT * FROM users")
    })

    const result = await Effect.runPromise(
      program.pipe(Effect.provide(TestDatabaseLayer))
    )

    expect(result).toHaveLength(1)
  })
})

Schema Validation Testing:

import { Schema, Either } from "effect"

describe("UserSchema", () => {
  const UserSchema = Schema.Struct({
    email: Schema.String.pipe(Schema.pattern(/^[^@]+@[^@]+\.[^@]+$/)),
  })

  it("should validate correct data", () => {
    const result = Schema.decodeUnknownEither(UserSchema)({
      email: "test@example.com",
    })
    expect(Either.isRight(result)).toBe(true)
  })

  it("should reject invalid email", () => {
    const result = Schema.decodeUnknownEither(UserSchema)({
      email: "invalid",
    })
    expect(Either.isLeft(result)).toBe(true)
  })
})

React Component Testing:

import { render, screen, waitFor } from "@testing-library/react"

describe("UserList", () => {
  it("should display users", async () => {
    render(<UserList />)
    await waitFor(() => {
      expect(screen.getByText("Test User")).toBeInTheDocument()
    })
  })
})

Go

go test ./... -v
go test ./... -cover
go test -race ./...  # Race detector
go test -bench=. ./...  # Benchmarks

Unit Test Pattern:

func TestUserCreation(t *testing.T) {
    user, err := NewUser("test@example.com", "password")
    if err != nil {
        t.Fatalf("expected no error, got %v", err)
    }
    if user.Email != "test@example.com" {
        t.Errorf("expected email %q, got %q", "test@example.com", user.Email)
    }
}

Table-Driven Tests:

func TestValidateEmail(t *testing.T) {
    tests := []struct {
        name  string
        email string
        valid bool
    }{
        {"valid email", "test@example.com", true},
        {"missing @", "testexample.com", false},
    }

    for _, tt := range tests {
        t.Run(tt.name, func(t *testing.T) {
            err := validateEmail(tt.email)
            if (err == nil) != tt.valid {
                t.Errorf("validateEmail(%q) = %v, want valid=%v", tt.email, err, tt.valid)
            }
        })
    }
}

Integration Test with testify:

import "github.com/stretchr/testify/assert"

func TestUserRepository(t *testing.T) {
    repo := NewUserRepository(testDB)
    user, err := repo.Create(context.Background(), "test@example.com")

    assert.NoError(t, err)
    assert.Equal(t, "test@example.com", user.Email)
}

Definition of Done

Before completing:

  • All existing tests pass
  • New tests cover the implementation
  • Edge cases and error paths tested
  • Effect services tested with mock Layers
  • Schema validation tested with valid/invalid data
  • Coverage meets project threshold (80%+)
  • Tests are deterministic (no flakiness)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

31.81%
按下载量换算34

windsurf

22.35%
按下载量换算24

trae

19.38%
按下载量换算21

OpenCode

14.01%
按下载量换算15

Codex

7.3%
按下载量换算8

Antigravity

3.63%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills