-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTESTING_GUIDELINES.mdc
More file actions
397 lines (298 loc) · 8.69 KB
/
TESTING_GUIDELINES.mdc
File metadata and controls
397 lines (298 loc) · 8.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
---
name: Testing Guidelines
description: Unit testing with Vitest and E2E testing with Playwright
globs:
- '**/*.spec.ts'
- '**/*.spec.tsx'
- 'e2e/**/*.ts'
alwaysApply: false
---
# Testing Guidelines
## Test Configuration
### Vitest for Unit Tests
The project uses Vitest for unit testing with workspace-based configuration:
```typescript
// vitest.config.mts
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
enabled: true,
include: ['common/src/**/*.ts', 'frontend/src/**/*.ts', 'service/src/**/*.ts'],
},
projects: [
{
test: {
name: 'Common',
include: ['common/src/**/*.spec.ts'],
},
},
{
test: {
name: 'Service',
include: ['service/src/**/*.spec.ts'],
},
},
{
test: {
name: 'Frontend',
environment: 'jsdom',
include: ['frontend/src/**/*.spec.(ts|tsx)'],
},
},
],
},
})
```
### Playwright for E2E Tests
E2E tests use Playwright with the service auto-started:
```typescript
// playwright.config.ts
import type { PlaywrightTestConfig } from '@playwright/test'
import { devices } from '@playwright/test'
const config: PlaywrightTestConfig = {
testDir: 'e2e',
fullyParallel: true,
use: {
trace: 'on-first-retry',
baseURL: 'http://localhost:9090',
},
webServer: {
command: 'yarn start:service',
url: 'http://localhost:9090',
reuseExistingServer: !process.env.CI,
},
projects: [
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
{ name: 'firefox', use: { ...devices['Desktop Firefox'] } },
],
}
```
## Unit Testing with Vitest
### Test File Location
Place test files next to source files with `.spec.ts` suffix:
```
service/src/
├── config.ts
├── config.spec.ts # Co-located test
├── service.ts
└── service.spec.ts
```
### Basic Test Structure
Use `describe`, `it`, and `expect` from Vitest:
```typescript
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest'
describe('MyService', () => {
describe('methodName', () => {
it('should do something when condition', () => {
// Arrange
const input = 'test'
// Act
const result = myFunction(input)
// Assert
expect(result).toBe('expected')
})
})
})
```
### Testing Services
Test service methods with mocked dependencies:
```typescript
import { describe, it, expect, vi, beforeEach } from 'vitest'
import { Injector } from '@furystack/inject'
describe('SessionService', () => {
let injector: Injector
let sessionService: SessionService
beforeEach(() => {
injector = new Injector()
// Set up mocks
const mockApiClient = {
call: vi.fn(),
}
injector.setExplicitInstance(StackCraftApiClient, mockApiClient)
sessionService = injector.getInstance(SessionService)
})
it('should initialize with unauthenticated state', async () => {
expect(sessionService.state.getValue()).toBe('initializing')
})
})
```
### Mocking with Vitest
Use `vi.fn()` for function mocks and `vi.spyOn()` for spying:
```typescript
import { vi } from 'vitest'
// Mock a function
const mockFn = vi.fn().mockReturnValue('mocked')
// Mock with implementation
const mockFn = vi.fn().mockImplementation((arg) => `result: ${arg}`)
// Mock async function
const mockAsync = vi.fn().mockResolvedValue({ data: 'test' })
// Spy on method
const spy = vi.spyOn(service, 'method')
// Verify calls
expect(mockFn).toHaveBeenCalled()
expect(mockFn).toHaveBeenCalledWith('arg')
expect(mockFn).toHaveBeenCalledTimes(2)
```
### Testing Observable Values
Test ObservableValue subscriptions:
```typescript
import { ObservableValue } from '@furystack/utils'
describe('ObservableValue', () => {
it('should notify subscribers on value change', () => {
const observable = new ObservableValue<string>('initial')
const values: string[] = []
const subscription = observable.subscribe((value) => values.push(value))
observable.setValue('updated')
expect(values).toEqual(['initial', 'updated'])
subscription.dispose()
})
})
```
## E2E Testing with Playwright
### Test File Location
Place E2E tests in the `e2e/` directory:
```
e2e/
├── page.spec.ts # Main page tests
├── auth.spec.ts # Authentication tests
└── fixtures/ # Test fixtures if needed
```
### Basic E2E Test Structure
Use Playwright's test API:
```typescript
import { expect, test } from '@playwright/test'
test.describe('Feature Name', () => {
test('should do something', async ({ page }) => {
// Navigate
await page.goto('/')
// Find elements
const element = page.locator('selector')
// Assert visibility
await expect(element).toBeVisible()
// Interact
await element.click()
// Assert result
await expect(page.locator('.result')).toHaveText('Expected')
})
})
```
### Locating Shades Components
Use shadow DOM component names as selectors:
```typescript
test('should interact with Shades components', async ({ page }) => {
// Locate by shadow DOM name
const loginForm = page.locator('shade-login form')
await expect(loginForm).toBeVisible()
// Locate inputs within components
const usernameInput = loginForm.locator('input[name="userName"]')
const passwordInput = loginForm.locator('input[name="password"]')
// Fill inputs
await usernameInput.type('testuser')
await passwordInput.type('password')
// Click buttons
const submitButton = page.locator('button', { hasText: 'Login' })
await submitButton.click()
})
```
### Authentication Flow Test
Example of testing login/logout:
```typescript
import { expect, test } from '@playwright/test'
test.describe('Authentication', () => {
test('Login and logout roundtrip', async ({ page }) => {
await page.goto('/')
// Wait for login form
const loginForm = page.locator('shade-login form')
await expect(loginForm).toBeVisible()
// Fill credentials
await loginForm.locator('input[name="userName"]').type('testuser')
await loginForm.locator('input[name="password"]').type('password')
// Submit
await page.locator('button', { hasText: 'Login' }).click()
// Verify logged in state
const welcomeTitle = page.locator('hello-world div h2')
await expect(welcomeTitle).toBeVisible()
await expect(welcomeTitle).toHaveText('Hello, testuser !')
// Logout
const logoutButton = page.locator('shade-app-bar button >> text="Log Out"')
await logoutButton.click()
// Verify logged out
await expect(page.locator('shade-login form')).toBeVisible()
})
})
```
### Waiting for Elements
Use Playwright's auto-waiting or explicit waits:
```typescript
// Auto-wait (recommended)
await expect(element).toBeVisible()
// Explicit wait
await page.waitForSelector('selector')
await page.waitForLoadState('networkidle')
// Wait for response
await page.waitForResponse('**/api/endpoint')
```
## Running Tests
### Unit Tests
```bash
# Run all unit tests
yarn test:unit
# Run with coverage
yarn test:unit --coverage
# Run specific workspace
yarn test:unit --project=Service
# Watch mode
yarn test:unit --watch
```
### E2E Tests
```bash
# Run all E2E tests
yarn test:e2e
# Run specific test file
yarn playwright test e2e/page.spec.ts
# Run in headed mode (see browser)
yarn playwright test --headed
# Run specific browser
yarn playwright test --project=chromium
# Debug mode
yarn playwright test --debug
```
## Test Coverage
### Coverage Configuration
Coverage is configured in `vitest.config.mts`:
```typescript
coverage: {
enabled: true,
include: [
'common/src/**/*.ts',
'frontend/src/**/*.ts',
'service/src/**/*.ts',
],
}
```
### Coverage Goals
- **Service code**: Aim for high coverage on business logic
- **Frontend components**: Focus on critical user flows
- **Common types**: Types don't need test coverage
## Summary
**Key Principles:**
1. **Co-locate tests** - Place `.spec.ts` files next to source files
2. **Use Vitest for unit tests** - Fast, modern test runner
3. **Use Playwright for E2E** - Cross-browser testing
4. **Test Shades components** - Use shadow DOM names as locators
5. **Mock FuryStack services** - Use Injector for DI in tests
6. **Test Observable values** - Subscribe and verify value changes
7. **Test auth flows E2E** - Cover login/logout in E2E tests
**Testing Checklist:**
- [ ] Unit tests for service logic
- [ ] Unit tests for utility functions
- [ ] E2E tests for critical user flows
- [ ] E2E tests for authentication
- [ ] Mocks for external dependencies
- [ ] Coverage enabled for source files
**Commands:**
- Unit tests: `yarn test:unit`
- E2E tests: `yarn test:e2e`
- Coverage: `yarn test:unit --coverage`
- Debug E2E: `yarn playwright test --debug`