56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
import type { Payload } from 'payload'
|
|
import type { NextRESTClient } from '../helpers/NextRESTClient.js'
|
|
|
|
import { initPayloadInt } from '../helpers/initPayloadInt.js'
|
|
import configPromise from './config.js'
|
|
|
|
let restClient: NextRESTClient
|
|
let payload: Payload
|
|
|
|
describe('Custom GraphQL', () => {
|
|
beforeAll(async () => {
|
|
;({ payload, restClient } = await initPayloadInt(configPromise))
|
|
})
|
|
|
|
afterAll(async () => {
|
|
if (typeof payload.db.destroy === 'function') {
|
|
await payload.db.destroy()
|
|
}
|
|
})
|
|
|
|
describe('Isolated Transaction ID', () => {
|
|
it('should isolate transaction IDs between queries in the same request', async () => {
|
|
const query = `query {
|
|
TransactionID1
|
|
TransactionID2
|
|
}`
|
|
const { data } = await restClient
|
|
.GRAPHQL_POST({
|
|
body: JSON.stringify({ query }),
|
|
})
|
|
.then((res) => res.json())
|
|
// either no transactions at all or they are different
|
|
expect(
|
|
(data.TransactionID2 === null && data.TransactionID1 === null) ||
|
|
data.TransactionID2 !== data.TransactionID1,
|
|
).toBe(true)
|
|
})
|
|
it('should isolate transaction IDs between mutations in the same request', async () => {
|
|
const query = `mutation {
|
|
MutateTransactionID1
|
|
MutateTransactionID2
|
|
}`
|
|
const { data } = await restClient
|
|
.GRAPHQL_POST({
|
|
body: JSON.stringify({ query }),
|
|
})
|
|
.then((res) => res.json())
|
|
// either no transactions at all or they are different
|
|
expect(
|
|
(data.MutateTransactionID2 === null && data.MutateTransactionID1 === null) ||
|
|
data.MutateTransactionID2 !== data.MutateTransactionID1,
|
|
).toBe(true)
|
|
})
|
|
})
|
|
})
|