File size: 2,815 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { nextTestSetup } from 'e2e-utils'
import { check } from 'next-test-utils'

describe('app-invalid-revalidate', () => {
  const { next, isNextDev, skipped } = nextTestSetup({
    files: __dirname,
    skipStart: true,
    skipDeployment: true,
  })

  if (skipped) {
    return
  }

  it('should error properly for invalid revalidate at layout', async () => {
    await next.stop().catch(() => {})
    const origText = await next.readFile('app/layout.tsx')

    try {
      await next.patchFile(
        'app/layout.tsx',
        origText.replace('// export', 'export')
      )
      await next.start().catch(() => {})

      await check(async () => {
        if (isNextDev) {
          await next.fetch('/')
        }
        return next.cliOutput
      }, /Invalid revalidate value "1" on "\/", must be a non-negative number or false/)
    } finally {
      await next.patchFile('app/layout.tsx', origText)
    }
  })

  it('should error properly for invalid revalidate at page', async () => {
    await next.stop().catch(() => {})
    const origText = await next.readFile('app/page.tsx')

    try {
      await next.patchFile(
        'app/page.tsx',
        origText.replace('// export', 'export')
      )
      await next.start().catch(() => {})

      await check(async () => {
        if (isNextDev) {
          await next.fetch('/')
        }
        return next.cliOutput
      }, /Invalid revalidate value "1" on "\/", must be a non-negative number or false/)
    } finally {
      await next.patchFile('app/page.tsx', origText)
    }
  })

  it('should error properly for invalid revalidate on fetch', async () => {
    await next.stop().catch(() => {})
    const origText = await next.readFile('app/page.tsx')

    try {
      await next.patchFile(
        'app/page.tsx',
        origText.replace('// await', 'await')
      )
      await next.start().catch(() => {})

      await check(async () => {
        if (isNextDev) {
          await next.fetch('/')
        }
        return next.cliOutput
      }, /Invalid revalidate value "1" on "\/", must be a non-negative number or false/)
    } finally {
      await next.patchFile('app/page.tsx', origText)
    }
  })

  it('should error properly for invalid revalidate on unstable_cache', async () => {
    await next.stop().catch(() => {})
    const origText = await next.readFile('app/page.tsx')

    try {
      await next.patchFile(
        'app/page.tsx',
        origText.replace('// await unstable', 'await unstable')
      )
      await next.start().catch(() => {})

      await check(async () => {
        if (isNextDev) {
          await next.fetch('/')
        }
        return next.cliOutput
      }, /Invalid revalidate value "1" on "unstable_cache/)
    } finally {
      await next.patchFile('app/page.tsx', origText)
    }
  })
})