Skip to content

Commit

Permalink
fix(runner): fix fixture cleanup when test times out (#4679)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Dec 7, 2023
1 parent 640881a commit e7c5e1f
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 41 deletions.
65 changes: 27 additions & 38 deletions packages/runner/src/fixture.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { createDefer } from '@vitest/utils'
import { getFixture } from './map'
import type { TestContext } from './types'

Expand Down Expand Up @@ -78,49 +79,37 @@ export function withFixtures(fn: Function, testContext?: TestContext) {
if (!pendingFixtures.length)
return fn(context)

let cursor = 0

return new Promise((resolve, reject) => {
async function use(fixtureValue: any) {
const fixture = pendingFixtures[cursor++]
context![fixture.prop] = fixtureValue

if (!fixtureValueMap.has(fixture)) {
fixtureValueMap.set(fixture, fixtureValue)
cleanupFnArray.unshift(() => {
fixtureValueMap.delete(fixture)
})
}

if (cursor < pendingFixtures.length) {
await next()
async function resolveFixtures() {
for (const fixture of pendingFixtures) {
// fixture could be already initialized during "before" hook
if (fixtureValueMap.has(fixture))
continue

let resolvedValue: unknown
if (fixture.isFn) {
// wait for `use` call to extract fixture value
const useFnArgPromise = createDefer()
fixture.value(context, async (useFnArg: unknown) => {
useFnArgPromise.resolve(useFnArg)
// suspend fixture teardown until cleanup
const teardownPromise = createDefer<void>()
cleanupFnArray.push(teardownPromise.resolve)
await teardownPromise
}).catch(useFnArgPromise.reject) // treat fixture function error (until `use` call) as test failure
resolvedValue = await useFnArgPromise
}
else {
// When all fixtures setup, call the test function
try {
resolve(await fn(context))
}
catch (err) {
reject(err)
}
return new Promise<void>((resolve) => {
cleanupFnArray.push(resolve)
})
resolvedValue = fixture.value
}
context![fixture.prop] = resolvedValue
fixtureValueMap.set(fixture, resolvedValue)
cleanupFnArray.unshift(() => {
fixtureValueMap.delete(fixture)
})
}
}

async function next() {
const fixture = pendingFixtures[cursor]
const { isFn, value } = fixture
if (fixtureValueMap.has(fixture))
return use(fixtureValueMap.get(fixture))
else
return isFn ? value(context, use) : use(value)
}

const setupFixturePromise = next().catch(reject)
cleanupFnArray.unshift(() => setupFixturePromise)
})
return resolveFixtures().then(() => fn(context))
}
}

Expand Down
24 changes: 24 additions & 0 deletions test/core/test/test-extend.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,28 @@ describe('test.extend()', () => {
})
})

describe('fixture only in beforeEach', () => {
beforeEach<Fixtures>(({ todoList }) => {
expect(todoList).toEqual([1, 2, 3])
expect(todoFn).toBeCalledTimes(1)
})

myTest('no fixture in test', () => {
expect(todoFn).toBeCalledTimes(1)
})
})

describe('fixture only in afterEach', () => {
afterEach<Fixtures>(({ todoList }) => {
expect(todoList).toEqual([1, 2, 3])
expect(todoFn).toBeCalledTimes(1)
})

myTest('no fixture in test', () => {
expect(todoFn).toBeCalledTimes(0)
})
})

describe('fixture call times', () => {
const apiFn = vi.fn(() => true)
const serviceFn = vi.fn(() => true)
Expand All @@ -203,6 +225,8 @@ describe('test.extend()', () => {
beforeEach<APIFixture>(({ api, service }) => {
expect(api).toBe(true)
expect(service).toBe(true)
expect(apiFn).toBeCalledTimes(1)
expect(serviceFn).toBeCalledTimes(1)
})

testAPI('Should init 1 time', ({ api }) => {
Expand Down
3 changes: 1 addition & 2 deletions test/fails/fixtures/test-extend/fixture-error.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ describe('error thrown in test fixtures', () => {
myTest('fixture errors', ({ a }) => {})
})

// TODO: enable when #4669 is fixed
describe.skip('correctly fails when test times out', () => {
describe('correctly fails when test times out', () => {
const myTest = test.extend<{ a: number }>({
a: async ({}, use) => {
await use(2)
Expand Down
3 changes: 2 additions & 1 deletion test/fails/test/__snapshots__/runner.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ TypeError: failure"
exports[`should fail test-extend/circular-dependency.test.ts > test-extend/circular-dependency.test.ts 1`] = `"Error: Circular fixture dependency detected: a <- b <- a"`;
exports[`should fail test-extend/fixture-error.test.ts > test-extend/fixture-error.test.ts 1`] = `
"Error: Error thrown in test fixture
"Error: Test timed out in 20ms.
Error: Error thrown in test fixture
Error: Error thrown in afterEach fixture
Error: Error thrown in beforeEach fixture"
`;
Expand Down

0 comments on commit e7c5e1f

Please sign in to comment.