Skip to content

Commit

Permalink
chore(router): switch to vitest (redwoodjs#10674)
Browse files Browse the repository at this point in the history
Co-authored-by: Tobbe Lundberg <tobbe@tlundberg.com>
  • Loading branch information
Josh-Walker-GM and Tobbe committed May 22, 2024
1 parent 3fcc128 commit ea82ca0
Show file tree
Hide file tree
Showing 25 changed files with 92 additions and 51 deletions.
3 changes: 0 additions & 3 deletions packages/router/jest.setup.ts

This file was deleted.

10 changes: 5 additions & 5 deletions packages/router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"build:types": "tsc --build --verbose",
"build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx\" --ignore dist --exec \"yarn build\"",
"prepublishOnly": "NODE_ENV=production yarn build",
"test": "jest",
"test": "vitest run",
"test:types": "tstyche",
"test:watch": "yarn test --watch"
"test:watch": "vitest watch"
},
"dependencies": {
"@babel/runtime-corejs3": "7.24.5",
Expand All @@ -32,14 +32,14 @@
"devDependencies": {
"@babel/cli": "7.24.5",
"@babel/core": "^7.22.20",
"@testing-library/jest-dom": "6.4.5",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"react": "19.0.0-beta-04b058868c-20240508",
"react-dom": "19.0.0-beta-04b058868c-20240508",
"tstyche": "1.1.0",
"typescript": "5.4.5"
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"peerDependencies": {
"react": "19.0.0-beta-04b058868c-20240508",
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/PageLoadingContext.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useContext, useState } from 'react'
import React, { useContext, useState } from 'react'

import { createNamedContext } from './createNamedContext'

Expand Down
2 changes: 2 additions & 0 deletions packages/router/src/__tests__/analyzeRoutes.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React, { isValidElement } from 'react'

import { describe, test, expect } from 'vitest'

import { analyzeRoutes } from '../analyzeRoutes'
import { Route } from '../Route'
import { Router } from '../router'
Expand Down
2 changes: 2 additions & 0 deletions packages/router/src/__tests__/history.test.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { describe, it, expect } from 'vitest'

import { navigate } from '../history'

describe('navigate', () => {
Expand Down
1 change: 1 addition & 0 deletions packages/router/src/__tests__/links.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import { render } from '@testing-library/react'
import { describe, it, expect } from 'vitest'

import { LocationProvider } from '../location'
import { NavLink } from '../navLink'
Expand Down
4 changes: 3 additions & 1 deletion packages/router/src/__tests__/location.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from 'react'

import { render } from '@testing-library/react'
import '@testing-library/jest-dom/jest-globals'
import { describe, it, expect } from 'vitest'

import { LocationProvider, useLocation } from '../location'

Expand Down
12 changes: 6 additions & 6 deletions packages/router/src/__tests__/nestedSets.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as React from 'react'
import type { ReactNode } from 'react'

import '@testing-library/jest-dom/jest-globals'
import { act, render } from '@testing-library/react'
import { beforeEach, beforeAll, afterAll, test, expect, vi } from 'vitest'

import { navigate, Route, Router } from '../'
import { Private, Set } from '../Set'
Expand Down Expand Up @@ -30,7 +30,7 @@ let err: typeof console.error
beforeAll(() => {
// Hide thrown exceptions. We're expecting them, and they clutter the output
err = console.error
console.error = jest.fn()
console.error = vi.fn()
})

afterAll(() => {
Expand Down Expand Up @@ -118,10 +118,10 @@ test('Sets nested in `<Set private>` should not error out if no authenticated pr
})

test('Nested sets should not cause a re-mount of parent wrap components', async () => {
const layoutOneMount = jest.fn()
const layoutOneUnmount = jest.fn()
const layoutTwoMount = jest.fn()
const layoutTwoUnmount = jest.fn()
const layoutOneMount = vi.fn()
const layoutOneUnmount = vi.fn()
const layoutTwoMount = vi.fn()
const layoutTwoUnmount = vi.fn()

const Layout1 = ({ children }: LayoutProps) => {
React.useEffect(() => {
Expand Down
11 changes: 6 additions & 5 deletions packages/router/src/__tests__/pageLoadingContext.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let mockDelay = 0
jest.mock('../page', () => {
const actualUtil = jest.requireActual('../util')
const { lazy } = jest.requireActual('react')
vi.mock('../page', async (importOriginal) => {
const actualUtil = await importOriginal<Page>()
const { lazy } = await vi.importActual<typeof React>('react')

return {
...actualUtil,
Expand All @@ -10,7 +10,7 @@ jest.mock('../page', () => {
prerenderLoader: () => ({ default: specOrPage }),
LazyComponent: lazy(
() =>
new Promise((resolve) =>
new Promise<any>((resolve) =>
setTimeout(() => resolve({ default: specOrPage }), mockDelay),
),
),
Expand All @@ -20,8 +20,8 @@ jest.mock('../page', () => {

import React, { useEffect, useState } from 'react'

import '@testing-library/jest-dom'
import { act, configure, render, waitFor } from '@testing-library/react'
import { vi, beforeEach, afterEach, test, expect } from 'vitest'

import type { AuthContextInterface } from '@redwoodjs/auth'

Expand All @@ -36,6 +36,7 @@ import {
useParams,
} from '..'
import { useLocation } from '../location'
import type Page from '../page'
import type { Spec } from '../page'
import { usePageLoadingContext } from '../PageLoadingContext'

Expand Down
1 change: 1 addition & 0 deletions packages/router/src/__tests__/redirect.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react'

import { act, render, waitFor } from '@testing-library/react'
import { test } from 'vitest'

import { navigate } from '../history'
import { Route } from '../Route'
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/__tests__/route-announcer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'

import { render, waitFor, act } from '@testing-library/react'
import '@testing-library/jest-dom/jest-globals'
import { beforeEach, test, expect } from 'vitest'

import { getAnnouncement } from '../a11yUtils'
import { navigate } from '../history'
Expand Down
5 changes: 3 additions & 2 deletions packages/router/src/__tests__/route-focus.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from 'react'

import { render, waitFor } from '@testing-library/react'
import '@testing-library/jest-dom/jest-globals'
import { test, beforeEach, expect } from 'vitest'

import { getFocus } from '../a11yUtils'
import { namedRoutes as routes } from '../namedRoutes'
Expand Down Expand Up @@ -49,7 +51,6 @@ const RouteFocusNegativeTabIndexPage = () => (

beforeEach(() => {
window.history.pushState({}, '', '/')
// @ts-expect-error - No type gen here for routes like there is in a real app
Object.keys(routes).forEach((key) => delete routes[key])
})

Expand Down
4 changes: 4 additions & 0 deletions packages/router/src/__tests__/route-validators.test.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import React from 'react'

import { describe, it, expect } from 'vitest'

import { Route } from '../Route'
import { isValidRoute } from '../route-validators'

Expand Down
9 changes: 3 additions & 6 deletions packages/router/src/__tests__/routeScrollReset.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from 'react'

import '@testing-library/jest-dom/jest-globals'
import { act, cleanup, render, screen } from '@testing-library/react'
import { describe, beforeEach, afterEach, it, expect } from 'vitest'
import type { Mock } from 'vitest'

import { navigate } from '../history'
import { namedRoutes as routes } from '../namedRoutes'
Expand All @@ -18,12 +19,8 @@ describe('Router scroll reset', () => {
</Router>
)

// Redfine the mocks here again (already done in jest.setup)
// Otherwise the mock doesn't clear for some reason
globalThis.scrollTo = jest.fn()

beforeEach(async () => {
;(globalThis.scrollTo as jest.Mock).mockClear()
;(globalThis.scrollTo as Mock).mockClear()
render(<TestRouter />)

// Make sure we're starting on the home route
Expand Down
12 changes: 10 additions & 2 deletions packages/router/src/__tests__/router.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
import React, { useEffect, useState } from 'react'

import '@testing-library/jest-dom/jest-globals'
import { act, fireEvent, render, waitFor } from '@testing-library/react'
import {
beforeEach,
describe,
test,
beforeAll,
afterAll,
expect,
vi,
} from 'vitest'

import type { AuthContextInterface, UseAuth } from '@redwoodjs/auth'

Expand Down Expand Up @@ -1157,7 +1165,7 @@ describe('Unauthorized redirect error messages', () => {

beforeAll(() => {
err = console.error
console.error = jest.fn()
console.error = vi.fn()
})

afterAll(() => {
Expand Down
10 changes: 5 additions & 5 deletions packages/router/src/__tests__/set.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as React from 'react'
import type { ReactNode } from 'react'

import { act, render, waitFor } from '@testing-library/react'
import '@testing-library/jest-dom/jest-globals'
import { beforeEach, test, describe, vi, expect } from 'vitest'

import { navigate } from '../history'
import { Route } from '../Route'
Expand Down Expand Up @@ -174,8 +174,8 @@ describe('Navigating Sets', () => {
const Page = () => <h1>Page</h1>

test('Sets should not cause a re-mount of wrap components when navigating within the set', async () => {
const layoutOneMount = jest.fn()
const layoutOneUnmount = jest.fn()
const layoutOneMount = vi.fn()
const layoutOneUnmount = vi.fn()

const Layout1 = ({ children }: LayoutProps) => {
React.useEffect(() => {
Expand Down Expand Up @@ -223,8 +223,8 @@ describe('Navigating Sets', () => {
})

test('Sets should make wrap components remount when navigating between separate sets with the same wrap component', async () => {
const layoutOneMount = jest.fn()
const layoutOneUnmount = jest.fn()
const layoutOneMount = vi.fn()
const layoutOneUnmount = vi.fn()

const Layout1 = ({ children }: LayoutProps) => {
React.useEffect(() => {
Expand Down
3 changes: 1 addition & 2 deletions packages/router/src/__tests__/setContextReuse.test.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import React from 'react'

import { act, render, waitFor } from '@testing-library/react'
import { test } from 'vitest'

import { Route, Router, navigate } from '../'
import { Set } from '../Set'

import '@testing-library/jest-dom/jest-globals'

const HomePage = () => {
return <p>Home Page</p>
}
Expand Down
13 changes: 6 additions & 7 deletions packages/router/src/__tests__/useMatch.test.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React from 'react'

import '@testing-library/jest-dom'

import { render, renderHook as tlrRenderHook } from '@testing-library/react'
import { describe, it, expect, afterEach } from 'vitest'

import { Link } from '../link'
import { LocationProvider } from '../location'
Expand Down Expand Up @@ -40,7 +39,7 @@ describe('useMatch', () => {
return (
<Link
to={to}
style={{ color: matchInfo.match ? 'green' : 'red' }}
style={{ color: matchInfo.match ? '#0F0' : '#F00' }}
{...rest}
/>
)
Expand All @@ -55,7 +54,7 @@ describe('useMatch', () => {
</LocationProvider>,
)

expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: green')
expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: #0F0')
})

it('returns a match on the same pathname with search parameters', () => {
Expand All @@ -70,7 +69,7 @@ describe('useMatch', () => {
</LocationProvider>,
)

expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: green')
expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: #0F0')
})

it('does NOT receive active class on different path', () => {
Expand All @@ -82,7 +81,7 @@ describe('useMatch', () => {
</LocationProvider>,
)

expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: red')
expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: #F00')
})

it('does NOT receive active class on the same pathname with different parameters', () => {
Expand All @@ -97,7 +96,7 @@ describe('useMatch', () => {
</LocationProvider>,
)

expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: red')
expect(getByText(/Dunder Mifflin/)).toHaveStyle('color: #F00')
})

describe('routeParams', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/__tests__/useRoutePaths.test.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @jest-environment jsdom */
import React from 'react'

import { render, act } from '@testing-library/react'
import { test } from 'vitest'

import { navigate } from '../history'
import { Route } from '../Route'
Expand Down
2 changes: 2 additions & 0 deletions packages/router/src/__tests__/util.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { describe, it, expect } from 'vitest'

import {
paramsForRoute,
matchPath,
Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// This needs to be a client component because it uses onClick, and the onClick
// event handler can't be serialized when passed as an RSC Flight response

import { forwardRef } from 'react'
import React, { forwardRef } from 'react'

import { navigate } from './history'

Expand Down
2 changes: 1 addition & 1 deletion packages/router/src/navLink.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client'

import { forwardRef } from 'react'
import React, { forwardRef } from 'react'

import { Link } from './link'
import type { LinkProps } from './link'
Expand Down
11 changes: 11 additions & 0 deletions packages/router/vitest.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig, configDefaults } from 'vitest/config'

export default defineConfig({
test: {
exclude: [...configDefaults.exclude, '**/__typetests__'],
environment: 'jsdom',
setupFiles: ['vitest.setup.mts'],
},
})


14 changes: 14 additions & 0 deletions packages/router/vitest.setup.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import '@testing-library/jest-dom/vitest'

import { afterEach, vi } from 'vitest'
import { cleanup } from '@testing-library/react'

vi.spyOn(globalThis, 'scrollTo').mockImplementation(() => {})

afterEach(() => {
// If vitest globals are enabled testing-library will clean up after each
// test automatically, but we don't enable globals, so we have to manually
// clean up here
// https://testing-library.com/docs/react-testing-library/api/#cleanup
cleanup()
})
Loading

0 comments on commit ea82ca0

Please sign in to comment.