vitest/examples/fastify/test/app.test.ts
2022-09-08 11:32:52 +03:00

47 lines
1.1 KiB
TypeScript

import { afterAll, expect, test } from 'vitest'
import supertest from 'supertest'
import axios from 'axios'
import app from '../src/app'
import { usersData } from '../mockData'
test('with HTTP injection', async () => {
const response = await app.inject({
method: 'GET',
url: '/users',
})
expect(response.statusCode).toBe(200)
expect(JSON.parse(response.payload)).toHaveLength(4)
expect(JSON.parse(response.payload)).toStrictEqual(usersData)
})
test('with a running server', async () => {
await app.ready()
const response = await supertest(app.server)
.get('/users')
.expect(200)
expect(response.body).toHaveLength(4)
expect(response.body).toStrictEqual(usersData)
})
test('with axios', async () => {
await app.listen()
await app.ready()
const address = app.server.address()
const port = typeof address === 'string' ? address : address?.port
const response = await axios.get(`http://localhost:${port}/users`)
expect(response.data).toHaveLength(4)
expect(response.data).toStrictEqual(usersData)
})
afterAll(async () => {
await app.close()
})