File size: 8,325 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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
import { nextBuild } from 'next-test-utils'
import path from 'path'
describe('Exported runtimes value validation', () => {
test('fails to build on malformed input', async () => {
const result = await nextBuild(
path.resolve(__dirname, './invalid-runtime/app'),
undefined,
{ stdout: true, stderr: true }
)
expect(result).toMatchObject({
code: 1,
stderr: expect.stringContaining(
`Invalid enum value. Expected 'edge' | 'experimental-edge' | 'nodejs', received 'something-odd'`
),
})
})
test('fails the build on invalid middleware matcher', async () => {
const result = await nextBuild(
path.resolve(__dirname, './invalid-middleware'),
undefined,
{ stdout: true, stderr: true }
)
// The build should fail to prevent unexpected behavior
expect(result.code).toBe(1)
// TODO: Turbopack matches the error message but omits the routing & error information
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/middleware"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unknown identifier "dynamicPath" at "config.matcher[1]"'
)
)
}
})
test('fails the build on unrecognized runtimes value', async () => {
const result = await nextBuild(
path.resolve(__dirname, './unsupported-syntax/app'),
undefined,
{ stdout: true, stderr: true }
)
// The build should fail to prevent unexpected behavior
expect(result.code).toBe(1)
// Template Literal with Expressions
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported template literal with expressions at "config.runtime".'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/template-literal-with-expressions"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported template literal with expressions at "config.runtime".'
)
)
}
// Binary Expression
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported node type "BinaryExpression" at "config.runtime"'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/binary-expression"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported node type "BinaryExpression" at "config.runtime"'
)
)
}
// Spread Operator within Object Expression
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported spread operator in the Object Expression at "config.runtime"'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/object-spread-operator"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported spread operator in the Object Expression at "config.runtime"'
)
)
}
// Spread Operator within Array Expression
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// ensure only 1 occurrence of the log
expect(result.stderr.match(/\/array-spread-operator/g)?.length).toBe(1)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported spread operator in the Array Expression at "config.runtime"'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/array-spread-operator"'
)
)
// ensure only 1 occurrence of the log
expect(
result.stderr.match(/field in route "\/array-spread-operator"/g)?.length
).toBe(1)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported spread operator in the Array Expression at "config.runtime"'
)
)
}
// Unknown Identifier
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unknown identifier "runtime" at "config.runtime".'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/invalid-identifier"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unknown identifier "runtime" at "config.runtime".'
)
)
}
// Unknown Expression Type
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported node type "CallExpression" at "config.runtime"'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/unsupported-value-type"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported node type "CallExpression" at "config.runtime"'
)
)
}
// Unknown Object Key
if (process.env.IS_TURBOPACK_TEST) {
expect(result.stderr).toEqual(
expect.stringContaining(
"Next.js can't recognize the exported `config` field in route"
)
)
// TODO: Turbopack has this information in issue.detail but it's not logged to the user.
// expect(result.stderr).toEqual(
// expect.stringContaining(
// 'Unsupported key type "Computed" in the Object Expression at "config.runtime"'
// )
// )
} else {
expect(result.stderr).toEqual(
expect.stringContaining(
'Next.js can\'t recognize the exported `config` field in route "/unsupported-object-key"'
)
)
expect(result.stderr).toEqual(
expect.stringContaining(
'Unsupported key type "Computed" in the Object Expression at "config.runtime"'
)
)
}
})
})
|