Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

table-driven-test表驱动测试

Agent Skill

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

总安装

643

周安装

26

GitHub Stars

32,118

下载量

202
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cockroachdb/cockroach --skill table-driven-test

简介

表驱动测试用于辅助编写单元测试、端到端用例及回归验证,提升测试覆盖率。

  • 它适合让 Agent 根据数据表生成测试脚本或分析失败原因。
  • 使用时需确认项目测试框架、运行命令及夹具数据配置。
  • 涉及浏览器或外部服务时,应区分模拟环境与真实部署环境。
  • table-driven-test 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Table-Driven Test Guidelines

Table-driven tests define multiple test cases in a slice of structs, then iterate over them executing the same test logic. This makes it easy to add cases, improves readability, and reduces duplication.

When to use table-driven tests:

  • You have 3+ similar test cases that vary by inputs/outputs
  • Tests follow the same logic pattern with different data
  • Most unit and integration tests benefit from this structure

When to skip:

  • Only 1-2 simple test cases (overhead not worth it)
  • Each test requires completely different logic
  • Test setup/teardown varies significantly between cases

Not the same as: Datadriven tests (different library with testdata files)

Basic Structure

func TestMyFunction(t *testing.T) {
    tests := []struct {
        name        string
        input       string
        expectedLen int
    }{
        {name: "basic case", input: "hello", expectedLen: 5},
        {name: "empty input", input: "", expectedLen: 0},
    }

    for _, tc := range tests {
        t.Run(tc.name, func(t *testing.T) {
            result, err := MyFunction(tc.input)
            require.NoError(t, err)
            require.Equal(t, tc.expectedLen, result)
        })
    }
}

Core Principles

1. Only Specify What's Necessary

Bad:

{
    name: "remap table",
    tableID: 100, tableName: "users", schemaID: 1,
    schemaName: "public", databaseID: 50, databaseName: "mydb",
    expectedID: 51,  // only this is actually tested!
}

Good:

{name: "remap table", tableID: 100, expectedID: 51}

2. Struct Field Ordering: Inputs First, Then Expected

Order struct fields with input fields at the top and verification fields at the bottom. Prefix all verification fields with expected so readers can immediately distinguish inputs from outputs.

Bad:

tests := []struct {
    name      string
    wantErr   bool       // verification mixed with inputs
    input     string
    output    int        // unclear if this is input or verification
}

Good:

tests := []struct {
    name          string
    input         string
    expectedCount int
    expectedErr   string
}

3. One Concern Per Test Case

Bad:

{
    name: "multiple behaviors",
    input: map[int]int{
        10: 60,  // normal remapping
        49: 99,  // edge case
        50: 50,  // system table preservation
    },
}

Good:

{name: "normal remapping", input: map[int]int{10: 60}},
{name: "preserve system table IDs under 50", input: map[int]int{49: 49}},
{name: "remap IDs at or above 50", input: map[int]int{50: 100}},

4. Independent Test Cases

Each case should be self-contained. Don't build dependent state across cases.

5. Names Describe Intent, Not Inputs

Test case names should hint at the intention or scenario, not duplicate the input data. A reader should understand what the case is testing from the name alone.

  • Good: "two matched regions", "error on negative input"
  • Bad: "match region x and y", "test1", "input_abc"

The name should answer "what scenario is this?" not "what data does this use?"

Assertions

Use require.* (stops on failure) for most checks. Use assert.* (continues on failure) only when you want to see multiple failures.

Common patterns:

// Errors
require.NoError(t, err)
require.Error(t, err)
require.ErrorContains(t, err, "not found")

// Equality
require.Equal(t, expected, actual)  // shows both values on failure
require.True(t, result == expected) // don't do this - hides values

// Collections
require.Len(t, slice, expectedLen)
require.Contains(t, slice, element)

Avoid redundant nil checks: Don't use require.NotNil before an assertion that will already fail on nil (like require.Equal or require.Contains). The subsequent assertion provides a clearer failure message anyway.

// Bad: redundant nil check
require.NotNil(t, result)
require.Equal(t, expectedVal, result.Field)

// Good: Equal already fails clearly if result is nil
require.Equal(t, expectedVal, result.Field)

Error handling in test cases:

tests := []struct {
    name        string
    input       string
    expectedErr string
}{
    {name: "valid input", input: "hello"},
    {name: "empty input rejected", input: "", expectedErr: "must not be empty"},
}

for _, tc := range tests {
    t.Run(tc.name, func(t *testing.T) {
        err := Validate(tc.input)
        if tc.expectedErr != "" {
            require.ErrorContains(t, err, tc.expectedErr)
        } else {
            require.NoError(t, err)
        }
    })
}

Variadic Helper Functions

Use helpers to reduce boilerplate and make test data readable.

Example from CockroachDB (pkg/backup/compaction_dist_test.go):

// Helper types
type mockEntry struct {
    span     roachpb.Span
    locality string
}

// Variadic helpers
func entry(start, end string, locality string) mockEntry {
    return mockEntry{
        span:     mockSpan(start, end),
        locality: locality,
    }
}

func entries(specs ...mockEntry) []execinfrapb.RestoreSpanEntry {
    var entries []execinfrapb.RestoreSpanEntry
    for _, s := range specs {
        var dir cloudpb.ExternalStorage
        if s.locality != "" {
            dir = cloudpb.ExternalStorage{
                URI: "nodelocal://1/test?COCKROACH_LOCALITY=" + s.locality,
            }
        }
        entries = append(entries, execinfrapb.RestoreSpanEntry{
            Span:  s.span,
            Files: []execinfrapb.RestoreFileSpec{{Dir: dir}},
        })
    }
    return entries
}

// Usage - reads like a specification
entries := entries(
    entry("a", "b", "dc=dc1"),
    entry("c", "d", "dc=dc2"),
    entry("e", "f", "dc=dc3"),
)

When to create helpers:

  • Complex struct initialization obscures test intent
  • Patterns repeat across test cases
  • Building composite data structures

When NOT to use:

  • Simple values that don't need transformation
  • One-off test cases
  • Helpers add more complexity than they remove

Integration Tests

For tests requiring a database server, see the /integration-test skill. The table-driven patterns here apply to both unit and integration tests.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.12%
按下载量换算73

Claude

26.24%
按下载量换算53

Cursor

19.01%
按下载量换算38

Gemini CLI

9.43%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills