-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathfixtures.spec.ts
More file actions
127 lines (113 loc) · 3.87 KB
/
fixtures.spec.ts
File metadata and controls
127 lines (113 loc) · 3.87 KB
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
/*
* Copyright (c) 2024, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
import path from 'node:path';
import { vi, describe } from 'vitest';
import { rollup } from 'rollup';
import lwcRollupPlugin from '@lwc/rollup-plugin';
import { testFixtureDir, formatHTML } from '@lwc/test-utils-lwc-internals';
import { serverSideRenderComponent } from '@lwc/ssr-runtime';
import { DEFAULT_SSR_MODE, type CompilationMode } from '@lwc/shared';
import { expectedFailures } from './utils/expected-failures';
import type { FeatureFlagName } from '@lwc/features/dist/types';
interface FixtureModule {
tagName: string;
default: any;
props?: { [key: string]: any };
features?: FeatureFlagName[];
}
vi.mock('@lwc/ssr-runtime', async () => {
const runtime = await import('@lwc/ssr-runtime');
try {
runtime.setHooks({
sanitizeHtmlContent(content: unknown) {
return String(content);
},
});
} catch (_err) {
// Ignore error if the hook is already overridden
}
return runtime;
});
const SSR_MODE: CompilationMode = DEFAULT_SSR_MODE;
async function compileFixture({ input, dirname }: { input: string; dirname: string }) {
const modulesDir = path.resolve(dirname, './modules');
const outputFile = path.resolve(dirname, './dist/compiled-experimental-ssr.js');
const bundle = await rollup({
input,
external: ['lwc', '@lwc/ssr-runtime', 'vitest'],
plugins: [
lwcRollupPlugin({
targetSSR: true,
ssrMode: SSR_MODE,
enableDynamicComponents: true,
// TODO [#3331]: remove usage of lwc:dynamic in 246
experimentalDynamicDirective: true,
modules: [{ dir: modulesDir }],
experimentalDynamicComponent: {
loader: path.join(__dirname, './utils/custom-loader.js'),
strictSpecifier: false,
},
}),
],
onwarn({ message, code }) {
if (code !== 'CIRCULAR_DEPENDENCY') {
throw new Error(message);
}
},
});
await bundle.write({
file: outputFile,
format: 'esm',
exports: 'named',
});
return outputFile;
}
describe.concurrent('fixtures', () => {
testFixtureDir(
{
root: path.resolve(__dirname, '../../../engine-server/src/__tests__/fixtures'),
pattern: '**/index.js',
// TODO [#4815]: enable all SSR v2 tests
expectedFailures,
},
async ({ filename, dirname, config }) => {
const errorFile = config?.ssrFiles?.error ?? 'error.txt';
const expectedFile = config?.ssrFiles?.expected ?? 'expected.html';
let compiledFixturePath;
try {
compiledFixturePath = await compileFixture({
input: filename,
dirname,
});
} catch (err: any) {
return {
[errorFile]: err.message,
[expectedFile]: '',
};
}
const module = (await import(compiledFixturePath)) as FixtureModule;
let result;
let error;
try {
result = formatHTML(
await serverSideRenderComponent(
module!.tagName,
module!.default,
config?.props ?? {},
SSR_MODE
)
);
} catch (err: any) {
error = err.message;
}
return {
[errorFile]: error,
[expectedFile]: result,
};
}
);
});