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

go-unit-testing进行单元测试

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

1

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sentenz/skills --skill go-unit-testing

简介

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

  • 适合让 Agent 编写单元测试、端到端测试或根据失败日志定位问题。
  • 使用时需确认项目测试框架、运行命令和夹具数据,避免误改逻辑。
  • 涉及浏览器或外部服务时,应区分本地模拟与生产环境。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Unit Testing

Instructions for AI coding agents on automating unit test creation using consistent software testing patterns in this Go project.

- 2.1. In-Got-Want - 2.2. Table-Driven Testing - 2.3. Data-Driven Testing (DDT) - 2.4. Arrange, Act, Assert (AAA) - 2.5. Test Fixtures

- 6.1. File Header Template - 6.2. Table-Driven Test Template - 6.3. Test Fixture Template - 6.4. Error Test Template - 6.5. Boundary Value Test Template - 6.6. Data-Driven Test Template (JSON)

1. Benefits

  • Readability Ensures high code quality and reliability. Tests are self-documenting, reducing cognitive load for reviewers and maintainers.
  • Consistency Uniform structure across tests ensures predictable, familiar code that team members can navigate efficiently.
  • Scalability Table-driven and data-driven approaches minimize boilerplate code when adding new test cases, making it simple to expand coverage.
  • Debuggability Scoped traces and detailed assertion messages pinpoint failures quickly during continuous integration and local testing.

2. Patterns

2.1. In-Got-Want

The In-Got-Want pattern structures each test case into three clear sections.

  • In Defines the input parameters or conditions for the test.
  • Got Captures the actual output or result produced by the code under test.
  • Want Specifies the expected output or result that the test is verifying against.

2.2. Table-Driven Testing

Table-driven testing organizes test cases in a tabular format, allowing multiple scenarios to be defined concisely.

  • Test Case Structure Each row in the table represents a distinct test case with its own set of inputs and expected outputs.
  • Iteration The test framework iterates over each row, executing the same test logic with different data.

2.3. Data-Driven Testing (DDT)

Data-driven testing separates test data from test logic, enabling the same test logic to be executed with multiple sets of input data.

  • External Data Sources Test data can be stored in external files (e.g., JSON, CSV) and loaded at runtime.
  • Reusability The same test logic can be reused with different datasets, enhancing maintainability and coverage.

2.4. Arrange, Act, Assert (AAA)

The AAA pattern structures each test case into three clear phases.

  • Arrange Set up the necessary preconditions and inputs for the test.
  • Act Execute the function or method being tested.
  • Assert Verify that the actual output matches the expected output.

2.5. Test Fixtures

Test fixtures provide a consistent and reusable setup and teardown mechanism for test cases.

  • Setup Initialize common objects or state needed for multiple tests.
  • Teardown Clean up resources or reset state after each test.

3. Workflow

  1. Identify Identify new functions in pkg/ or internal/ (e.g., pkg/<package>/<file>.go).
  2. Add/Create Create new tests in the same package (e.g., pkg/<package>/<file>_test.go).
  3. Test Coverage Requirements Include comprehensive edge cases:

- Coverage-guided cases - Boundary values (min/max limits, edge thresholds) - Empty/null inputs - Null pointers and invalid references - Overflow/underflow scenarios - Special cases (negative numbers, zero, special states)

  1. Apply Templates Structure all tests using the template pattern.

4. Commands

CommandDescription
make go-test-unitExecute tests with race detection and JUnit report
make go-test-coverageGenerate coverage reports (HTML and XML)

5. Style Guide

  • Test Framework Use the standard Go testing package.
  • Include Imports Include testing and github.com/google/go-cmp/cmp for comparisons.
  • Parallelism Use t.Parallel() to run tests in parallel.
  • Test Organization Consolidate test cases for a single function into **one TestXxx(t *testing.T) function** using table-driven testing. This approach:

- Eliminates redundant test function definitions - Simplifies maintenance by grouping related scenarios together - Reduces code duplication in setup and teardown phases - Makes it easier to add or modify test cases

  • Assertions Use cmp.Equal for value comparisons and errors.Is for error checking.

6. Template

Use these templates for new unit tests. Replace placeholders with actual values.

6.1. File Header Template

// SPDX-License-Identifier: Apache-2.0

package <package>

import (
	"errors"
	"testing"

	"github.com/google/go-cmp/cmp"
)

6.2. Table-Driven Test Template

func Test<FunctionName>(t *testing.T) {
	t.Parallel()

	// In-Got-Want
	type in struct {
		/* input fields */
	}

	type want struct {
		/* expected output fields */
		err error
	}

	// Table-Driven Testing
	tests := []struct {
		name string
		in   in
		want want
	}{
		{
			name: "case-description-1",
			in: in{
				/* input values */
			},
			want: want{
				/* expected output */
				err: nil,
			},
		},
		{
			name: "case-description-2",
			in: in{
				/* input values */
			},
			want: want{
				/* expected output */
				err: nil, // or specific error
			},
		},
		// add more cases as needed
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			// Arrange
			// additional setup as needed

			// Act
			got, err := <Function>(tt.in.<input>)

			// Assert
			if !errors.Is(err, tt.want.err) {
				t.Errorf("<Function>() error = %v, want err %v", err, tt.want.err)
			}
			if !cmp.Equal(got, tt.want.<value>) {
				t.Errorf("<Function>(%+v) = %v, want %v", tt.in, got, tt.want.<value>)
			}
		})
	}
}

6.3. Test Fixture Template

// testFixture holds common test state and provides setup/teardown.
type testFixture struct {
	t      *testing.T
	// Add common fields for test state
	object *<Type>
}

// newTestFixture creates and initializes a test fixture.
func newTestFixture(t *testing.T) *testFixture {
	t.Helper()

	// Setup
	return &testFixture{
		t:      t,
		object: New<Type>(),
	}
}

// teardown cleans up resources after test completion.
func (f *testFixture) teardown() {
	f.t.Helper()

	// Teardown
	if f.object != nil {
		f.object.Close()
	}
}

func Test<FunctionName>WithFixture(t *testing.T) {
	t.Parallel()

	// Arrange
	f := newTestFixture(t)
	defer f.teardown()

	input := <input_value>

	// Act
	got, err := f.object.<Function>(input)

	// Assert
	if err != nil {
		t.Errorf("<Function>() unexpected error: %v", err)
	}
	if !cmp.Equal(got, <expected>) {
		t.Errorf("<Function>() = %v, want %v", got, <expected>)
	}
}

6.4. Error Test Template

func Test<FunctionName>Error(t *testing.T) {
	t.Parallel()

	// In-Got-Want
	type in struct {
		/* invalid input fields */
	}

	type want struct {
		err error
	}

	// Table-Driven Testing
	tests := []struct {
		name string
		in   in
		want want
	}{
		{
			name: "nil-input-returns-error",
			in: in{
				/* nil or invalid input */
			},
			want: want{
				err: resource.Err<ErrorName>,
			},
		},
		{
			name: "invalid-value-returns-error",
			in: in{
				/* invalid value */
			},
			want: want{
				err: resource.Err<ErrorName>,
			},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			// Arrange
			// setup if needed

			// Act
			_, err := <Function>(tt.in.<input>)

			// Assert
			if !errors.Is(err, tt.want.err) {
				t.Errorf("<Function>() error = %v, want err %v", err, tt.want.err)
			}
		})
	}
}

6.5. Boundary Value Test Template

func Test<FunctionName>BoundaryValues(t *testing.T) {
	t.Parallel()

	// In-Got-Want
	type in struct {
		input <input_type>
	}

	type want struct {
		value <output_type>
		err   error
	}

	// Table-Driven Testing
	tests := []struct {
		name string
		in   in
		want want
	}{
		{
			name: "minimum-value",
			in:   in{input: <MIN_VALUE>},
			want: want{value: /* expected */, err: nil},
		},
		{
			name: "maximum-value",
			in:   in{input: <MAX_VALUE>},
			want: want{value: /* expected */, err: nil},
		},
		{
			name: "zero-value",
			in:   in{input: 0},
			want: want{value: /* expected */, err: nil},
		},
		{
			name: "negative-value",
			in:   in{input: -1},
			want: want{value: /* expected */, err: nil},
		},
		{
			name: "overflow-value",
			in:   in{input: math.MaxFloat64},
			want: want{value: 0, err: resource.ErrOverflow},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			// Arrange
			// setup if needed

			// Act
			got, err := <Function>(tt.in.input)

			// Assert
			if !errors.Is(err, tt.want.err) {
				t.Errorf("<Function>() error = %v, want err %v", err, tt.want.err)
			}
			if !cmp.Equal(got, tt.want.value) {
				t.Errorf("<Function>(%v) = %v, want %v", tt.in.input, got, tt.want.value)
			}
		})
	}
}

6.6. Data-Driven Test Template (JSON)

import (
	"encoding/json"
	"os"
	"path/filepath"
	"testing"

	"github.com/google/go-cmp/cmp"
)

// testCase represents a single test case loaded from JSON.
type testCase struct {
	Name string `json:"name"`
	In   struct {
		Input <input_type> `json:"input"`
	} `json:"in"`
	Want struct {
		Expected <output_type> `json:"expected"`
	} `json:"want"`
}

// testData represents the JSON test data structure.
type testData struct {
	Tests []testCase `json:"tests"`
}

func Test<FunctionName>DataDriven(t *testing.T) {
	t.Parallel()

	// Load test data from JSON file
	testdataPath := filepath.Join("testdata", "<function>_test.json")
	data, err := os.ReadFile(testdataPath)
	if err != nil {
		t.Fatalf("failed to read test data: %v", err)
	}

	var td testData
	if err := json.Unmarshal(data, &td); err != nil {
		t.Fatalf("failed to parse test data: %v", err)
	}

	for _, tc := range td.Tests {
		t.Run(tc.Name, func(t *testing.T) {
			// Arrange
			input := tc.In.Input
			expected := tc.Want.Expected

			// Act
			got, err := <Function>(input)

			// Assert
			if err != nil {
				t.Errorf("<Function>() unexpected error: %v", err)
			}
			if !cmp.Equal(got, expected) {
				t.Errorf("<Function>(%v) = %v, want %v", input, got, expected)
			}
		})
	}
}
  • tests/data/<function>_test.json JSON file containing test cases. {"tests": [{"name": "case-description-1", "in": {"input": <value>}, "want": {"expected": <value>}}, {"name": "case-description-2", "in": {"input": <value>}, "want": {"expected": <value>}}]}

7. References

  • Go Testing package documentation.
  • Google go-cmp package documentation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.13%
按下载量换算21

Claude

33.67%
按下载量换算21

Cursor

17.9%
按下载量换算11

Gemini CLI

10.28%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills