1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83import type { Payload } from 'payload'
import { describe, beforeAll, afterAll, it, expect } from 'vitest'
import path from 'path'
import { fileURLToPath } from 'url'
import type { Page } from './payload-types.js'
import { initPayloadInt } from '../helpers/initPayloadInt.js'
import { pagesSlug } from './shared.js'
let payload: Payload
let page: Page
const filename = fileURLToPath(import.meta.url)
const dirname = path.dirname(filename)
describe('@payloadcms/plugin-redirects', () => {
beforeAll(async () => {
;({ payload } = await initPayloadInt(dirname))
page = await payload.create({
collection: 'pages',
data: {
title: 'Test',
},
})
})
afterAll(async () => {
await payload.destroy()
})
it('should add a redirects collection', async () => {
const redirect = await payload.find({
collection: 'redirects',
depth: 0,
limit: 1,
})
expect(redirect).toBeTruthy()
})
it('should add a redirect with to internal page', async () => {
const redirect = await payload.create({
collection: 'redirects',
data: {
from: '/test',
to: {
type: 'reference',
reference: {
relationTo: pagesSlug,
value: page.id,
},
},
type: '301',
},
})
expect(redirect).toBeTruthy()
expect(redirect.from).toBe('/test')
expect(redirect.to.reference.value).toMatchObject(page)
})
it('should add a redirect with to custom url', async () => {
const redirect = await payload.create({
collection: 'redirects',
data: {
from: '/test2',
to: {
type: 'custom',
url: '/test',
},
type: '301',
},
})
expect(redirect).toBeTruthy()
expect(redirect.from).toBe('/test2')
expect(redirect.to.url).toBe('/test')
})
})