fix(api): changelog tests
This commit is contained in:
parent
a7ee7bf981
commit
8edfd1c7ad
@ -12,18 +12,23 @@ import { eq } from 'drizzle-orm'
|
|||||||
import { fetch } from '../utils/testing/fetch'
|
import { fetch } from '../utils/testing/fetch'
|
||||||
|
|
||||||
describe('Changelog', () => {
|
describe('Changelog', () => {
|
||||||
let testAccessToken: AccessTokenOutput
|
let testAccessToken: z.infer<typeof AccessTokenOutput>
|
||||||
let testChangelog: z.infer<typeof ChangelogOutput>
|
let testChangelog: z.infer<typeof ChangelogOutput>
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
await db
|
const createdUser = await db
|
||||||
.insert(user)
|
.insert(user)
|
||||||
.values({ email: 'changelog@test.local', id: 'test_000' })
|
.values({ email: 'changelog@test.local', providerId: 'test_000' })
|
||||||
|
.returning()
|
||||||
const tAccessToken = await db
|
const tAccessToken = await db
|
||||||
.insert(access_token)
|
.insert(access_token)
|
||||||
.values({ token: 'test123', userId: 'test_000', name: 'testtoken' })
|
.values({
|
||||||
|
token: 'test123',
|
||||||
|
userId: createdUser[0].id,
|
||||||
|
name: 'testtoken',
|
||||||
|
})
|
||||||
.returning()
|
.returning()
|
||||||
testAccessToken = tAccessToken[0]
|
testAccessToken = tAccessToken[0] as z.infer<typeof AccessTokenOutput>
|
||||||
})
|
})
|
||||||
|
|
||||||
afterAll(async () => {
|
afterAll(async () => {
|
||||||
@ -36,6 +41,7 @@ describe('Changelog', () => {
|
|||||||
title: 'changelog',
|
title: 'changelog',
|
||||||
description: 'description',
|
description: 'description',
|
||||||
isSemver: true,
|
isSemver: true,
|
||||||
|
isConventional: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
@ -44,10 +50,10 @@ describe('Changelog', () => {
|
|||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: payload,
|
body: payload,
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
const json: z.infer<typeof ChangelogCreateOutput> = await res.json()
|
const json = (await res.json()) as z.infer<typeof ChangelogCreateOutput>
|
||||||
testChangelog = json
|
testChangelog = json
|
||||||
|
|
||||||
expect(res.status).toBe(201)
|
expect(res.status).toBe(201)
|
||||||
@ -62,7 +68,7 @@ describe('Changelog', () => {
|
|||||||
path: `/v1/changelog/${testChangelog.id}`,
|
path: `/v1/changelog/${testChangelog.id}`,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(200)
|
expect(res.status).toBe(200)
|
||||||
@ -74,7 +80,7 @@ describe('Changelog', () => {
|
|||||||
path: '/v1/changelog/635f4aa7-79fc-4d6b-af7d-6731999cc8bb',
|
path: '/v1/changelog/635f4aa7-79fc-4d6b-af7d-6731999cc8bb',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(500)
|
expect(res.status).toBe(500)
|
||||||
@ -86,12 +92,12 @@ describe('Changelog', () => {
|
|||||||
path: '/v1/changelog/some',
|
path: '/v1/changelog/some',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(400)
|
expect(res.status).toBe(400)
|
||||||
|
|
||||||
const json = await res.json()
|
const json = (await res.json()) as { success: boolean }
|
||||||
expect(json.success).toBeFalse()
|
expect(json.success).toBeFalse()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -103,12 +109,12 @@ describe('Changelog', () => {
|
|||||||
path: '/v1/changelog',
|
path: '/v1/changelog',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(200)
|
expect(res.status).toBe(200)
|
||||||
|
|
||||||
const json: z.infer<typeof ChangelogListOutput> = await res.json()
|
const json = (await res.json()) as z.infer<typeof ChangelogListOutput>
|
||||||
expect(json).toHaveLength(1)
|
expect(json).toHaveLength(1)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -120,7 +126,7 @@ describe('Changelog', () => {
|
|||||||
path: `/v1/changelog/${testChangelog.id}`,
|
path: `/v1/changelog/${testChangelog.id}`,
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(200)
|
expect(res.status).toBe(200)
|
||||||
@ -132,7 +138,7 @@ describe('Changelog', () => {
|
|||||||
path: `/v1/changelog/${testChangelog.id}`,
|
path: `/v1/changelog/${testChangelog.id}`,
|
||||||
method: 'DELETE',
|
method: 'DELETE',
|
||||||
},
|
},
|
||||||
testAccessToken.token,
|
testAccessToken.token as string,
|
||||||
)
|
)
|
||||||
|
|
||||||
expect(res.status).toBe(404)
|
expect(res.status).toBe(404)
|
||||||
|
@ -12,7 +12,7 @@ export const page = pgTable('page', {
|
|||||||
}),
|
}),
|
||||||
|
|
||||||
title: text().notNull(),
|
title: text().notNull(),
|
||||||
description: text().notNull(),
|
description: text(),
|
||||||
icon: text().default(''),
|
icon: text().default(''),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user