Go Table-Driven Tests
Table-driven tests are a powerful Go idiom — when used correctly. Most
codebases either underuse them (10 copy-paste tests) or overuse them
(complex branching logic in a 200-line struct). This skill covers the
sweet spot.
Detailed reference material, loaded on demand:
references/patterns.md — full worked examples: canonical tables,
wantErr/wantErrIs, parallel tables, map-based tables, error-only
tables, struct alignment for readability.
references/refactoring.md — recognizing bloated tables and rewriting
them as explicit subtests, with before/after examples.
Read a reference file only when the summary below is not enough for the
task at hand.
1. When Table-Driven Tests Shine
Use a table only when ALL of these are true:
- Same function under test across all cases
- Same assertion pattern — input in, output out, compare
- Cases differ only in data, not in setup or verification logic
- 3+ cases — fewer than 3, explicit tests are clearer
Canonical use case: pure functions, parsers, validators, formatters.
func TestParseSize(t *testing.T) {
tests := []struct {
name string
input string
want int64
wantErr bool
}{
{name: "plain bytes", input: "1024", want: 1024},
{name: "kilobytes suffix", input: "4KB", want: 4096},
{name: "empty string", input: "", wantErr: true},
{name: "negative size", input: "-1", wantErr: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseSize(tt.input)
if tt.wantErr {
require.Error(t, err)
return
}
require.NoError(t, err)
assert.Equal(t, tt.want, got)
})
}
}
Every case has the same shape, the loop body is a few lines, and adding
a case is one struct literal. No branching, no conditionals.
2. When NOT to Use Table-Driven Tests
- Complex per-case setup —
setupMock/setupFunc function fields in
the struct mean the table is hiding complexity. Write explicit subtests.
- Fewer than 3 cases — the struct definition is more code than two
plain test functions.
- Multiple branching paths —
if tt.shouldError / if tt.wantRedirect
in the loop body means each branch is a different test pretending to
share a structure. Split it.
See references/refactoring.md for before/after rewrites of each smell.
3. Struct Design Rules
- Every field must vary between at least 2 cases. A field with the
same value everywhere is setup — move it outside the table.
- Name the
name field as a short sentence describing the scenario:
"returns error for negative amount", not "case1" or "success".
wantErr bool for "should it error?" — check it first and return
early in the loop body.
wantErrIs error with a sentinel when the caller must detect a
specific error; assert with require.ErrorIs.
- ≤5 fields. More means the scenario is too complex for a table —
split into separate test functions.
Full field-pattern examples are in references/patterns.md.
4. The Loop Body Must Be Trivial
The point of a table test is identical execution logic for every case.
Keep the loop body under ~10 lines: call, error check, comparison.
If it accumulates conditionals or per-case setup, the table has outgrown
its usefulness — refactor into explicit subtests.
5. Parallel Table Tests
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := Transform(tt.input)
assert.Equal(t, tt.want, got)
})
}
- Go 1.22+ scopes the loop variable per iteration —
tt := tt capture is
unnecessary. For Go <1.22 the capture is still required.
- Only use
t.Parallel() when the function under test has no side
effects and no shared mutable state.
6. Refactoring Bloated Tables
| Symptom |
Fix |
| Struct has 8+ fields |
Split into multiple test functions by scenario |
setupFunc field in struct |
Extract to separate subtests with explicit setup |
if tt.shouldX in loop body |
Each branch is a different test — split it |
| Same 3 fields identical in every case |
Move to shared setup outside the table |
| Adding a case requires understanding all others |
Table has grown beyond its useful life |
Decision Flowchart
Is the function pure (input → output, no side effects)?
Yes → table test is probably ideal. Go to 2.
No → consider explicit subtests first.
Do all cases share the exact same assertion pattern?
Yes → table test. Go to 3.
No → explicit subtests.
Can each case be expressed in ≤5 struct fields?
Yes → table test.
No → split by scenario into separate test functions.
Is the loop body ≤10 lines?
Yes → you're golden.
No → the table is hiding complexity. Refactor.
Verification Checklist
- Table struct has only fields that vary between cases
- Every case has a descriptive
name field
- Loop body is ≤10 lines with no branching
- No
setupFunc or mockFunc fields in the struct
wantErr is a simple bool or sentinel, not a string match
- Cases cover: happy path, error path, edge cases (empty, nil, zero, max)
t.Run wraps each case for named subtests
t.Parallel() used only when function is side-effect-free
1---2name: go-test-table-driven3description: Deep dive on table-driven tests in Go: when to use them, when to avoid them, struct design, subtest naming, advanced patterns like test matrices and shared setup, and refactoring bloated tables into clean ones. Use when writing table-driven tests, refactoring test tables, reviewing table test structure, or deciding whether table-driven is the right approach. Trigger examples: "table-driven test", "table test", "test cases struct", "test matrix", "parametrize tests", "data-driven test", "refactor test table". Not for: general test strategy, mocks, golden files, fuzzing (go-test-quality), benchmarks (go-performance-review).4license: MIT5---6
7# Go Table-Driven Tests
8
9Table-driven tests are a powerful Go idiom — when used correctly. Most
10codebases either underuse them (10 copy-paste tests) or overuse them
11(complex branching logic in a 200-line struct). This skill covers the
12sweet spot.
13
14Detailed reference material, loaded on demand:
15
16- `references/patterns.md` — full worked examples: canonical tables,
17 `wantErr`/`wantErrIs`, parallel tables, map-based tables, error-only
18 tables, struct alignment for readability.
19- `references/refactoring.md` — recognizing bloated tables and rewriting
20 them as explicit subtests, with before/after examples.
21
22Read a reference file only when the summary below is not enough for the
23task at hand.
24
25## 1. When Table-Driven Tests Shine
26
27Use a table only when ALL of these are true:
28
29- **Same function** under test across all cases
30- **Same assertion pattern** — input in, output out, compare
31- **Cases differ only in data**, not in setup or verification logic
32- **3+ cases** — fewer than 3, explicit tests are clearer
33
34Canonical use case: pure functions, parsers, validators, formatters.
35
36```go
37func TestParseSize(t *testing.T) {
38 tests := []struct {
39 name string
40 input string
41 want int64
42 wantErr bool
43 }{
44 {name: "plain bytes", input: "1024", want: 1024},
45 {name: "kilobytes suffix", input: "4KB", want: 4096},
46 {name: "empty string", input: "", wantErr: true},
47 {name: "negative size", input: "-1", wantErr: true},
48 }
49
50 for _, tt := range tests {
51 t.Run(tt.name, func(t *testing.T) {
52 got, err := ParseSize(tt.input)
53 if tt.wantErr {
54 require.Error(t, err)
55 return
56 }
57 require.NoError(t, err)
58 assert.Equal(t, tt.want, got)
59 })
60 }
61}
62```
63
64Every case has the same shape, the loop body is a few lines, and adding
65a case is one struct literal. No branching, no conditionals.
66
67## 2. When NOT to Use Table-Driven Tests
68
69- **Complex per-case setup** — `setupMock`/`setupFunc` function fields in
70 the struct mean the table is hiding complexity. Write explicit subtests.
71- **Fewer than 3 cases** — the struct definition is more code than two
72 plain test functions.
73- **Multiple branching paths** — `if tt.shouldError` / `if tt.wantRedirect`
74 in the loop body means each branch is a different test pretending to
75 share a structure. Split it.
76
77See `references/refactoring.md` for before/after rewrites of each smell.
78
79## 3. Struct Design Rules
80
811. **Every field must vary between at least 2 cases.** A field with the
82 same value everywhere is setup — move it outside the table.
832. **Name the `name` field as a short sentence** describing the scenario:
84 `"returns error for negative amount"`, not `"case1"` or `"success"`.
853. **`wantErr bool` for "should it error?"** — check it first and `return`
86 early in the loop body.
874. **`wantErrIs error` with a sentinel** when the caller must detect a
88 specific error; assert with `require.ErrorIs`.
895. **≤5 fields.** More means the scenario is too complex for a table —
90 split into separate test functions.
91
92Full field-pattern examples are in `references/patterns.md`.
93
94## 4. The Loop Body Must Be Trivial
95
96The point of a table test is identical execution logic for every case.
97Keep the loop body under ~10 lines: call, error check, comparison.
98If it accumulates conditionals or per-case setup, the table has outgrown
99its usefulness — refactor into explicit subtests.
100
101## 5. Parallel Table Tests
102
103```go
104for _, tt := range tests {
105 t.Run(tt.name, func(t *testing.T) {
106 t.Parallel()
107 got := Transform(tt.input)
108 assert.Equal(t, tt.want, got)
109 })
110}
111```
112
113- Go 1.22+ scopes the loop variable per iteration — `tt := tt` capture is
114 unnecessary. For Go <1.22 the capture is still required.
115- Only use `t.Parallel()` when the function under test has no side
116 effects and no shared mutable state.
117
118## 6. Refactoring Bloated Tables
119
120| Symptom | Fix |
121|---|---|
122| Struct has 8+ fields | Split into multiple test functions by scenario |
123| `setupFunc` field in struct | Extract to separate subtests with explicit setup |
124| `if tt.shouldX` in loop body | Each branch is a different test — split it |
125| Same 3 fields identical in every case | Move to shared setup outside the table |
126| Adding a case requires understanding all others | Table has grown beyond its useful life |
127
128## Decision Flowchart
129
1301. **Is the function pure (input → output, no side effects)?**
131 Yes → table test is probably ideal. Go to 2.
132 No → consider explicit subtests first.
133
1342. **Do all cases share the exact same assertion pattern?**
135 Yes → table test. Go to 3.
136 No → explicit subtests.
137
1383. **Can each case be expressed in ≤5 struct fields?**
139 Yes → table test.
140 No → split by scenario into separate test functions.
141
1424. **Is the loop body ≤10 lines?**
143 Yes → you're golden.
144 No → the table is hiding complexity. Refactor.
145
146## Verification Checklist
147
1481. Table struct has only fields that vary between cases
1492. Every case has a descriptive `name` field
1503. Loop body is ≤10 lines with no branching
1514. No `setupFunc` or `mockFunc` fields in the struct
1525. `wantErr` is a simple bool or sentinel, not a string match
1536. Cases cover: happy path, error path, edge cases (empty, nil, zero, max)
1547. `t.Run` wraps each case for named subtests
1558. `t.Parallel()` used only when function is side-effect-free