@rryando/arcs 4.1.0 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -19
- package/dist/cli/arcs-flash.d.ts +1 -1
- package/dist/cli/arcs-flash.d.ts.map +1 -1
- package/dist/cli/arcs-flash.js +9 -50
- package/dist/cli/arcs-flash.js.map +1 -1
- package/dist/cli/arcs-orchestrate-caveman.d.ts +2 -2
- package/dist/cli/arcs-orchestrate-caveman.d.ts.map +1 -1
- package/dist/cli/arcs-orchestrate-caveman.js +2 -8
- package/dist/cli/arcs-orchestrate-caveman.js.map +1 -1
- package/dist/cli/arcs-orchestrate.d.ts +1 -1
- package/dist/cli/arcs-orchestrate.d.ts.map +1 -1
- package/dist/cli/arcs-orchestrate.js +4 -54
- package/dist/cli/arcs-orchestrate.js.map +1 -1
- package/dist/cli/orchestrator-shared-blocks.d.ts +10 -30
- package/dist/cli/orchestrator-shared-blocks.d.ts.map +1 -1
- package/dist/cli/orchestrator-shared-blocks.js +46 -128
- package/dist/cli/orchestrator-shared-blocks.js.map +1 -1
- package/dist/utils/diagram-generator.d.ts.map +1 -1
- package/dist/utils/diagram-generator.js +11 -6
- package/dist/utils/diagram-generator.js.map +1 -1
- package/opencode/arcs/bundle-runtime.json +0 -3
- package/opencode/arcs/manifest.json +8 -25
- package/opencode/arcs/prompts/arcs-docs.txt +19 -157
- package/opencode/arcs/prompts/arcs-flash.txt +49 -152
- package/opencode/arcs/prompts/arcs-orchestrate-caveman.txt +47 -165
- package/opencode/arcs/prompts/arcs-orchestrate.txt +46 -158
- package/opencode/arcs/prompts/code-reviewer.txt +20 -60
- package/opencode/arcs/prompts/graph-explorer.txt +19 -49
- package/opencode/arcs/prompts/software-engineer.txt +21 -67
- package/opencode/arcs/prompts/tech-architect.txt +20 -130
- package/opencode/arcs/skills/brainstorming/SKILL.md +20 -100
- package/opencode/arcs/skills/brainstorming/visual-companion.md +6 -264
- package/opencode/arcs/skills/caveman-commit/SKILL.md +6 -43
- package/opencode/arcs/skills/deep-pr-review/SKILL.md +18 -200
- package/opencode/arcs/skills/deep-pr-review/codegraph-diff.md +7 -93
- package/opencode/arcs/skills/deep-pr-review/review-template.md +13 -60
- package/opencode/arcs/skills/enriching-codegraph-proposals/SKILL.md +16 -156
- package/opencode/arcs/skills/implementation/SKILL.md +20 -46
- package/opencode/arcs/skills/init-project/SKILL.md +12 -150
- package/opencode/arcs/skills/install-claude-code-hook/SKILL.md +13 -133
- package/opencode/arcs/skills/systematic-debugging/SKILL.md +13 -152
- package/opencode/arcs/skills/systematic-debugging/condition-based-waiting.md +7 -110
- package/opencode/arcs/skills/systematic-debugging/defense-in-depth.md +7 -119
- package/opencode/arcs/skills/systematic-debugging/phases-reference.md +9 -166
- package/opencode/arcs/skills/systematic-debugging/root-cause-tracing.md +8 -165
- package/opencode/arcs/skills/test-driven-development/SKILL.md +10 -61
- package/opencode/arcs/skills/test-driven-development/tdd-rationalizations-and-examples.md +7 -154
- package/opencode/arcs/skills/test-driven-development/testing-anti-patterns.md +8 -295
- package/opencode/arcs/skills/to-diagram/SKILL.md +18 -206
- package/opencode/arcs/skills/writing-knowledge/SKILL.md +11 -63
- package/opencode/arcs/skills/writing-plans/SKILL.md +25 -118
- package/opencode/arcs/skills/writing-plans/plan-document-reviewer-prompt.md +10 -61
- package/package.json +1 -1
- package/skills/explore-dag.md +9 -52
- package/skills/init-project.md +9 -98
- package/skills/orchestrate.md +15 -109
- package/skills/update-docs.md +9 -60
- package/opencode/arcs/prompts/devil-advocate.txt +0 -79
- package/opencode/arcs/skills/executing-plans/SKILL.md +0 -49
|
@@ -1,157 +1,10 @@
|
|
|
1
|
-
# TDD
|
|
1
|
+
# TDD Quick Examples
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Use this optional reference when the right test boundary is unclear.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- Bug: reproduce the reported failure, then fix it.
|
|
6
|
+
- Feature: assert the smallest user-visible behavior before implementation.
|
|
7
|
+
- Refactor: existing behavior tests may be sufficient; add a test only for an uncovered contract.
|
|
8
|
+
- Mechanical/prose/generated changes: verify the relevant contract instead of inventing a unit test.
|
|
6
9
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Tests written after code pass immediately. Passing immediately proves nothing:
|
|
10
|
-
- Might test wrong thing
|
|
11
|
-
- Might test implementation, not behavior
|
|
12
|
-
- Might miss edge cases you forgot
|
|
13
|
-
- You never saw it catch the bug
|
|
14
|
-
|
|
15
|
-
Test-first forces you to see the test fail, proving it actually tests something.
|
|
16
|
-
|
|
17
|
-
### "I already manually tested all the edge cases"
|
|
18
|
-
|
|
19
|
-
Manual testing is ad-hoc. You think you tested everything but:
|
|
20
|
-
- No record of what you tested
|
|
21
|
-
- Can't re-run when code changes
|
|
22
|
-
- Easy to forget cases under pressure
|
|
23
|
-
- "It worked when I tried it" ≠ comprehensive
|
|
24
|
-
|
|
25
|
-
Automated tests are systematic. They run the same way every time.
|
|
26
|
-
|
|
27
|
-
### "Deleting X hours of work is wasteful"
|
|
28
|
-
|
|
29
|
-
Sunk cost fallacy. The time is already gone. Your choice now:
|
|
30
|
-
- Delete and rewrite with TDD (X more hours, high confidence)
|
|
31
|
-
- Keep it and add tests after (30 min, low confidence, likely bugs)
|
|
32
|
-
|
|
33
|
-
The "waste" is keeping code you can't trust. Working code without real tests is technical debt.
|
|
34
|
-
|
|
35
|
-
### "TDD is dogmatic, being pragmatic means adapting"
|
|
36
|
-
|
|
37
|
-
TDD IS pragmatic:
|
|
38
|
-
- Finds bugs before commit (faster than debugging after)
|
|
39
|
-
- Prevents regressions (tests catch breaks immediately)
|
|
40
|
-
- Documents behavior (tests show how to use code)
|
|
41
|
-
- Enables refactoring (change freely, tests catch breaks)
|
|
42
|
-
|
|
43
|
-
"Pragmatic" shortcuts = debugging in production = slower.
|
|
44
|
-
|
|
45
|
-
### "Tests after achieve the same goals — it's spirit not ritual"
|
|
46
|
-
|
|
47
|
-
No. Tests-after answer "What does this do?" Tests-first answer "What should this do?"
|
|
48
|
-
|
|
49
|
-
Tests-after are biased by your implementation. You test what you built, not what's required. You verify remembered edge cases, not discovered ones.
|
|
50
|
-
|
|
51
|
-
Tests-first force edge case discovery before implementing. Tests-after verify you remembered everything (you didn't).
|
|
52
|
-
|
|
53
|
-
30 minutes of tests after ≠ TDD. You get coverage, lose proof tests work.
|
|
54
|
-
|
|
55
|
-
## Worked Example: Bug Fix via TDD
|
|
56
|
-
|
|
57
|
-
**Bug:** Empty email accepted
|
|
58
|
-
|
|
59
|
-
### RED
|
|
60
|
-
```typescript
|
|
61
|
-
test('rejects empty email', async () => {
|
|
62
|
-
const result = await submitForm({ email: '' });
|
|
63
|
-
expect(result.error).toBe('Email required');
|
|
64
|
-
});
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
### Verify RED
|
|
68
|
-
```bash
|
|
69
|
-
$ npm test -- submitForm.test.ts
|
|
70
|
-
FAIL: expected 'Email required', got undefined
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### GREEN
|
|
74
|
-
```typescript
|
|
75
|
-
function submitForm(data: FormData) {
|
|
76
|
-
if (!data.email?.trim()) {
|
|
77
|
-
return { error: 'Email required' };
|
|
78
|
-
}
|
|
79
|
-
// ...
|
|
80
|
-
}
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
### Verify GREEN
|
|
84
|
-
```bash
|
|
85
|
-
$ npm test -- submitForm.test.ts
|
|
86
|
-
PASS
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
### REFACTOR
|
|
90
|
-
Extract validation for multiple fields if needed.
|
|
91
|
-
|
|
92
|
-
## Good vs Bad Tests and Implementations
|
|
93
|
-
|
|
94
|
-
### RED — Good failing test
|
|
95
|
-
|
|
96
|
-
```typescript
|
|
97
|
-
test('retries failed operations 3 times', async () => {
|
|
98
|
-
let attempts = 0;
|
|
99
|
-
const operation = () => {
|
|
100
|
-
attempts++;
|
|
101
|
-
if (attempts < 3) throw new Error('fail');
|
|
102
|
-
return 'success';
|
|
103
|
-
};
|
|
104
|
-
|
|
105
|
-
const result = await retryOperation(operation);
|
|
106
|
-
|
|
107
|
-
expect(result).toBe('success');
|
|
108
|
-
expect(attempts).toBe(3);
|
|
109
|
-
});
|
|
110
|
-
```
|
|
111
|
-
Clear name, tests real behavior, one thing.
|
|
112
|
-
|
|
113
|
-
### RED — Bad failing test
|
|
114
|
-
|
|
115
|
-
```typescript
|
|
116
|
-
test('retry works', async () => {
|
|
117
|
-
const mock = jest.fn()
|
|
118
|
-
.mockRejectedValueOnce(new Error())
|
|
119
|
-
.mockRejectedValueOnce(new Error())
|
|
120
|
-
.mockResolvedValueOnce('success');
|
|
121
|
-
await retryOperation(mock);
|
|
122
|
-
expect(mock).toHaveBeenCalledTimes(3);
|
|
123
|
-
});
|
|
124
|
-
```
|
|
125
|
-
Vague name, tests mock not code.
|
|
126
|
-
|
|
127
|
-
### GREEN — Good minimal implementation
|
|
128
|
-
|
|
129
|
-
```typescript
|
|
130
|
-
async function retryOperation<T>(fn: () => Promise<T>): Promise<T> {
|
|
131
|
-
for (let i = 0; i < 3; i++) {
|
|
132
|
-
try {
|
|
133
|
-
return await fn();
|
|
134
|
-
} catch (e) {
|
|
135
|
-
if (i === 2) throw e;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
throw new Error('unreachable');
|
|
139
|
-
}
|
|
140
|
-
```
|
|
141
|
-
Just enough to pass.
|
|
142
|
-
|
|
143
|
-
### GREEN — Bad over-engineered implementation
|
|
144
|
-
|
|
145
|
-
```typescript
|
|
146
|
-
async function retryOperation<T>(
|
|
147
|
-
fn: () => Promise<T>,
|
|
148
|
-
options?: {
|
|
149
|
-
maxRetries?: number;
|
|
150
|
-
backoff?: 'linear' | 'exponential';
|
|
151
|
-
onRetry?: (attempt: number) => void;
|
|
152
|
-
}
|
|
153
|
-
): Promise<T> {
|
|
154
|
-
// YAGNI
|
|
155
|
-
}
|
|
156
|
-
```
|
|
157
|
-
Over-engineered. Don't add features, refactor other code, or "improve" beyond the test.
|
|
10
|
+
If the test passes before implementation, confirm it exercises the new behavior. If testing requires extensive mocking, look for a simpler public boundary.
|
|
@@ -1,299 +1,12 @@
|
|
|
1
1
|
# Testing Anti-Patterns
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Avoid:
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
- tests that assert private call order instead of behavior;
|
|
6
|
+
- mocks that reproduce the implementation;
|
|
7
|
+
- broad snapshots with no meaningful contract;
|
|
8
|
+
- sleeps instead of observable conditions;
|
|
9
|
+
- one test covering several unrelated behaviors;
|
|
10
|
+
- adding tests solely to increase line coverage.
|
|
6
11
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
**Core principle:** Test what the code does, not what the mocks do.
|
|
10
|
-
|
|
11
|
-
**Following strict TDD prevents these anti-patterns.**
|
|
12
|
-
|
|
13
|
-
## The Iron Laws
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
1. NEVER test mock behavior
|
|
17
|
-
2. NEVER add test-only methods to production classes
|
|
18
|
-
3. NEVER mock without understanding dependencies
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Anti-Pattern 1: Testing Mock Behavior
|
|
22
|
-
|
|
23
|
-
**The violation:**
|
|
24
|
-
```typescript
|
|
25
|
-
// ❌ BAD: Testing that the mock exists
|
|
26
|
-
test('renders sidebar', () => {
|
|
27
|
-
render(<Page />);
|
|
28
|
-
expect(screen.getByTestId('sidebar-mock')).toBeInTheDocument();
|
|
29
|
-
});
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
**Why this is wrong:**
|
|
33
|
-
- You're verifying the mock works, not that the component works
|
|
34
|
-
- Test passes when mock is present, fails when it's not
|
|
35
|
-
- Tells you nothing about real behavior
|
|
36
|
-
|
|
37
|
-
**your human partner's correction:** "Are we testing the behavior of a mock?"
|
|
38
|
-
|
|
39
|
-
**The fix:**
|
|
40
|
-
```typescript
|
|
41
|
-
// ✅ GOOD: Test real component or don't mock it
|
|
42
|
-
test('renders sidebar', () => {
|
|
43
|
-
render(<Page />); // Don't mock sidebar
|
|
44
|
-
expect(screen.getByRole('navigation')).toBeInTheDocument();
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
// OR if sidebar must be mocked for isolation:
|
|
48
|
-
// Don't assert on the mock - test Page's behavior with sidebar present
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### Gate Function
|
|
52
|
-
|
|
53
|
-
```
|
|
54
|
-
BEFORE asserting on any mock element:
|
|
55
|
-
Ask: "Am I testing real component behavior or just mock existence?"
|
|
56
|
-
|
|
57
|
-
IF testing mock existence:
|
|
58
|
-
STOP - Delete the assertion or unmock the component
|
|
59
|
-
|
|
60
|
-
Test real behavior instead
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
## Anti-Pattern 2: Test-Only Methods in Production
|
|
64
|
-
|
|
65
|
-
**The violation:**
|
|
66
|
-
```typescript
|
|
67
|
-
// ❌ BAD: destroy() only used in tests
|
|
68
|
-
class Session {
|
|
69
|
-
async destroy() { // Looks like production API!
|
|
70
|
-
await this._workspaceManager?.destroyWorkspace(this.id);
|
|
71
|
-
// ... cleanup
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
// In tests
|
|
76
|
-
afterEach(() => session.destroy());
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
**Why this is wrong:**
|
|
80
|
-
- Production class polluted with test-only code
|
|
81
|
-
- Dangerous if accidentally called in production
|
|
82
|
-
- Violates YAGNI and separation of concerns
|
|
83
|
-
- Confuses object lifecycle with entity lifecycle
|
|
84
|
-
|
|
85
|
-
**The fix:**
|
|
86
|
-
```typescript
|
|
87
|
-
// ✅ GOOD: Test utilities handle test cleanup
|
|
88
|
-
// Session has no destroy() - it's stateless in production
|
|
89
|
-
|
|
90
|
-
// In test-utils/
|
|
91
|
-
export async function cleanupSession(session: Session) {
|
|
92
|
-
const workspace = session.getWorkspaceInfo();
|
|
93
|
-
if (workspace) {
|
|
94
|
-
await workspaceManager.destroyWorkspace(workspace.id);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// In tests
|
|
99
|
-
afterEach(() => cleanupSession(session));
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
### Gate Function
|
|
103
|
-
|
|
104
|
-
```
|
|
105
|
-
BEFORE adding any method to production class:
|
|
106
|
-
Ask: "Is this only used by tests?"
|
|
107
|
-
|
|
108
|
-
IF yes:
|
|
109
|
-
STOP - Don't add it
|
|
110
|
-
Put it in test utilities instead
|
|
111
|
-
|
|
112
|
-
Ask: "Does this class own this resource's lifecycle?"
|
|
113
|
-
|
|
114
|
-
IF no:
|
|
115
|
-
STOP - Wrong class for this method
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
## Anti-Pattern 3: Mocking Without Understanding
|
|
119
|
-
|
|
120
|
-
**The violation:**
|
|
121
|
-
```typescript
|
|
122
|
-
// ❌ BAD: Mock breaks test logic
|
|
123
|
-
test('detects duplicate server', () => {
|
|
124
|
-
// Mock prevents config write that test depends on!
|
|
125
|
-
vi.mock('ToolCatalog', () => ({
|
|
126
|
-
discoverAndCacheTools: vi.fn().mockResolvedValue(undefined)
|
|
127
|
-
}));
|
|
128
|
-
|
|
129
|
-
await addServer(config);
|
|
130
|
-
await addServer(config); // Should throw - but won't!
|
|
131
|
-
});
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
**Why this is wrong:**
|
|
135
|
-
- Mocked method had side effect test depended on (writing config)
|
|
136
|
-
- Over-mocking to "be safe" breaks actual behavior
|
|
137
|
-
- Test passes for wrong reason or fails mysteriously
|
|
138
|
-
|
|
139
|
-
**The fix:**
|
|
140
|
-
```typescript
|
|
141
|
-
// ✅ GOOD: Mock at correct level
|
|
142
|
-
test('detects duplicate server', () => {
|
|
143
|
-
// Mock the slow part, preserve behavior test needs
|
|
144
|
-
vi.mock('MCPServerManager'); // Just mock slow server startup
|
|
145
|
-
|
|
146
|
-
await addServer(config); // Config written
|
|
147
|
-
await addServer(config); // Duplicate detected ✓
|
|
148
|
-
});
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
### Gate Function
|
|
152
|
-
|
|
153
|
-
```
|
|
154
|
-
BEFORE mocking any method:
|
|
155
|
-
STOP - Don't mock yet
|
|
156
|
-
|
|
157
|
-
1. Ask: "What side effects does the real method have?"
|
|
158
|
-
2. Ask: "Does this test depend on any of those side effects?"
|
|
159
|
-
3. Ask: "Do I fully understand what this test needs?"
|
|
160
|
-
|
|
161
|
-
IF depends on side effects:
|
|
162
|
-
Mock at lower level (the actual slow/external operation)
|
|
163
|
-
OR use test doubles that preserve necessary behavior
|
|
164
|
-
NOT the high-level method the test depends on
|
|
165
|
-
|
|
166
|
-
IF unsure what test depends on:
|
|
167
|
-
Run test with real implementation FIRST
|
|
168
|
-
Observe what actually needs to happen
|
|
169
|
-
THEN add minimal mocking at the right level
|
|
170
|
-
|
|
171
|
-
Red flags:
|
|
172
|
-
- "I'll mock this to be safe"
|
|
173
|
-
- "This might be slow, better mock it"
|
|
174
|
-
- Mocking without understanding the dependency chain
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
## Anti-Pattern 4: Incomplete Mocks
|
|
178
|
-
|
|
179
|
-
**The violation:**
|
|
180
|
-
```typescript
|
|
181
|
-
// ❌ BAD: Partial mock - only fields you think you need
|
|
182
|
-
const mockResponse = {
|
|
183
|
-
status: 'success',
|
|
184
|
-
data: { userId: '123', name: 'Alice' }
|
|
185
|
-
// Missing: metadata that downstream code uses
|
|
186
|
-
};
|
|
187
|
-
|
|
188
|
-
// Later: breaks when code accesses response.metadata.requestId
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
**Why this is wrong:**
|
|
192
|
-
- **Partial mocks hide structural assumptions** - You only mocked fields you know about
|
|
193
|
-
- **Downstream code may depend on fields you didn't include** - Silent failures
|
|
194
|
-
- **Tests pass but integration fails** - Mock incomplete, real API complete
|
|
195
|
-
- **False confidence** - Test proves nothing about real behavior
|
|
196
|
-
|
|
197
|
-
**The Iron Rule:** Mock the COMPLETE data structure as it exists in reality, not just fields your immediate test uses.
|
|
198
|
-
|
|
199
|
-
**The fix:**
|
|
200
|
-
```typescript
|
|
201
|
-
// ✅ GOOD: Mirror real API completeness
|
|
202
|
-
const mockResponse = {
|
|
203
|
-
status: 'success',
|
|
204
|
-
data: { userId: '123', name: 'Alice' },
|
|
205
|
-
metadata: { requestId: 'req-789', timestamp: 1234567890 }
|
|
206
|
-
// All fields real API returns
|
|
207
|
-
};
|
|
208
|
-
```
|
|
209
|
-
|
|
210
|
-
### Gate Function
|
|
211
|
-
|
|
212
|
-
```
|
|
213
|
-
BEFORE creating mock responses:
|
|
214
|
-
Check: "What fields does the real API response contain?"
|
|
215
|
-
|
|
216
|
-
Actions:
|
|
217
|
-
1. Examine actual API response from docs/examples
|
|
218
|
-
2. Include ALL fields system might consume downstream
|
|
219
|
-
3. Verify mock matches real response schema completely
|
|
220
|
-
|
|
221
|
-
Critical:
|
|
222
|
-
If you're creating a mock, you must understand the ENTIRE structure
|
|
223
|
-
Partial mocks fail silently when code depends on omitted fields
|
|
224
|
-
|
|
225
|
-
If uncertain: Include all documented fields
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
## Anti-Pattern 5: Integration Tests as Afterthought
|
|
229
|
-
|
|
230
|
-
**The violation:**
|
|
231
|
-
```
|
|
232
|
-
✅ Implementation complete
|
|
233
|
-
❌ No tests written
|
|
234
|
-
"Ready for testing"
|
|
235
|
-
```
|
|
236
|
-
|
|
237
|
-
**Why this is wrong:**
|
|
238
|
-
- Testing is part of implementation, not optional follow-up
|
|
239
|
-
- TDD would have caught this
|
|
240
|
-
- Can't claim complete without tests
|
|
241
|
-
|
|
242
|
-
**The fix:**
|
|
243
|
-
```
|
|
244
|
-
TDD cycle:
|
|
245
|
-
1. Write failing test
|
|
246
|
-
2. Implement to pass
|
|
247
|
-
3. Refactor
|
|
248
|
-
4. THEN claim complete
|
|
249
|
-
```
|
|
250
|
-
|
|
251
|
-
## When Mocks Become Too Complex
|
|
252
|
-
|
|
253
|
-
**Warning signs:**
|
|
254
|
-
- Mock setup longer than test logic
|
|
255
|
-
- Mocking everything to make test pass
|
|
256
|
-
- Mocks missing methods real components have
|
|
257
|
-
- Test breaks when mock changes
|
|
258
|
-
|
|
259
|
-
**your human partner's question:** "Do we need to be using a mock here?"
|
|
260
|
-
|
|
261
|
-
**Consider:** Integration tests with real components often simpler than complex mocks
|
|
262
|
-
|
|
263
|
-
## TDD Prevents These Anti-Patterns
|
|
264
|
-
|
|
265
|
-
**Why TDD helps:**
|
|
266
|
-
1. **Write test first** → Forces you to think about what you're actually testing
|
|
267
|
-
2. **Watch it fail** → Confirms test tests real behavior, not mocks
|
|
268
|
-
3. **Minimal implementation** → No test-only methods creep in
|
|
269
|
-
4. **Real dependencies** → You see what the test actually needs before mocking
|
|
270
|
-
|
|
271
|
-
**If you're testing mock behavior, you violated TDD** - you added mocks without watching test fail against real code first.
|
|
272
|
-
|
|
273
|
-
## Quick Reference
|
|
274
|
-
|
|
275
|
-
| Anti-Pattern | Fix |
|
|
276
|
-
|--------------|-----|
|
|
277
|
-
| Assert on mock elements | Test real component or unmock it |
|
|
278
|
-
| Test-only methods in production | Move to test utilities |
|
|
279
|
-
| Mock without understanding | Understand dependencies first, mock minimally |
|
|
280
|
-
| Incomplete mocks | Mirror real API completely |
|
|
281
|
-
| Tests as afterthought | TDD - tests first |
|
|
282
|
-
| Over-complex mocks | Consider integration tests |
|
|
283
|
-
|
|
284
|
-
## Red Flags
|
|
285
|
-
|
|
286
|
-
- Assertion checks for `*-mock` test IDs
|
|
287
|
-
- Methods only called in test files
|
|
288
|
-
- Mock setup is >50% of test
|
|
289
|
-
- Test fails when you remove mock
|
|
290
|
-
- Can't explain why mock is needed
|
|
291
|
-
- Mocking "just to be safe"
|
|
292
|
-
|
|
293
|
-
## The Bottom Line
|
|
294
|
-
|
|
295
|
-
**Mocks are tools to isolate, not things to test.**
|
|
296
|
-
|
|
297
|
-
If TDD reveals you're testing mock behavior, you've gone wrong.
|
|
298
|
-
|
|
299
|
-
Fix: Test real behavior or question why you're mocking at all.
|
|
12
|
+
Prefer stable public boundaries, realistic inputs, clear failure messages, and the smallest check that proves the requirement.
|