mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
3.6 KiB
146 lines
3.6 KiB
import * as assert from "assert";
|
|
import * as fs from "fs";
|
|
import * as path from "path";
|
|
|
|
import {
|
|
showOutput,
|
|
loadConfig,
|
|
setupHtmlEqual,
|
|
tryToLoadJson
|
|
} from "../helpers.js";
|
|
|
|
function tryToReadFile(file) {
|
|
try {
|
|
return fs.readFileSync(file, "utf-8");
|
|
} catch (err) {
|
|
if (err.code !== "ENOENT") throw err;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
const sveltePath = process.cwd().split('\\').join('/');
|
|
|
|
describe("ssr", () => {
|
|
before(() => {
|
|
require("../../register")({
|
|
extensions: ['.svelte', '.html'],
|
|
sveltePath
|
|
});
|
|
|
|
return setupHtmlEqual();
|
|
});
|
|
|
|
fs.readdirSync("test/server-side-rendering/samples").forEach(dir => {
|
|
if (dir[0] === ".") return;
|
|
|
|
// add .solo to a sample directory name to only run that test, or
|
|
// .show to always show the output. or both
|
|
const solo = /\.solo/.test(dir);
|
|
const show = /\.show/.test(dir);
|
|
|
|
if (solo && process.env.CI) {
|
|
throw new Error("Forgot to remove `solo: true` from test");
|
|
}
|
|
|
|
(solo ? it.only : it)(dir, () => {
|
|
dir = path.resolve("test/server-side-rendering/samples", dir);
|
|
try {
|
|
const Component = require(`${dir}/main.svelte`).default;
|
|
|
|
const expectedHtml = tryToReadFile(`${dir}/_expected.html`);
|
|
const expectedCss = tryToReadFile(`${dir}/_expected.css`) || "";
|
|
|
|
const props = tryToLoadJson(`${dir}/data.json`) || undefined;
|
|
|
|
const rendered = Component.render(props);
|
|
const { html, css, head } = rendered;
|
|
|
|
fs.writeFileSync(`${dir}/_actual.html`, html);
|
|
if (css.code) fs.writeFileSync(`${dir}/_actual.css`, css.code);
|
|
|
|
assert.htmlEqual(html, expectedHtml);
|
|
assert.equal(
|
|
css.code.replace(/^\s+/gm, ""),
|
|
expectedCss.replace(/^\s+/gm, "")
|
|
);
|
|
|
|
if (fs.existsSync(`${dir}/_expected-head.html`)) {
|
|
fs.writeFileSync(`${dir}/_actual-head.html`, head);
|
|
assert.htmlEqual(
|
|
head,
|
|
fs.readFileSync(`${dir}/_expected-head.html`, 'utf-8')
|
|
);
|
|
}
|
|
|
|
if (show) showOutput(dir, { generate: 'ssr' });
|
|
} catch (err) {
|
|
showOutput(dir, { generate: 'ssr' });
|
|
throw err;
|
|
}
|
|
});
|
|
});
|
|
|
|
// duplicate client-side tests, as far as possible
|
|
fs.readdirSync("test/runtime/samples").forEach(dir => {
|
|
if (dir[0] === ".") return;
|
|
|
|
const config = loadConfig(`./runtime/samples/${dir}/_config.js`);
|
|
|
|
if (config.solo && process.env.CI) {
|
|
throw new Error("Forgot to remove `solo: true` from test");
|
|
}
|
|
|
|
if (config.skip_if_ssr) return;
|
|
|
|
(config.skip ? it.skip : config.solo ? it.only : it)(dir, () => {
|
|
const cwd = path.resolve("test/runtime/samples", dir);
|
|
|
|
Object.keys(require.cache)
|
|
.filter(x => x.endsWith('.svelte'))
|
|
.forEach(file => {
|
|
delete require.cache[file];
|
|
});
|
|
|
|
delete global.window;
|
|
|
|
const compileOptions = Object.assign({ sveltePath }, config.compileOptions, {
|
|
generate: 'ssr'
|
|
});
|
|
|
|
require("../../register")(compileOptions);
|
|
|
|
try {
|
|
if (config.before_test) config.before_test();
|
|
|
|
const Component = require(`../runtime/samples/${dir}/main.svelte`).default;
|
|
const { html } = Component.render(config.props, {
|
|
store: (config.store !== true) && config.store
|
|
});
|
|
|
|
if (config.ssrHtml) {
|
|
assert.htmlEqual(html, config.ssrHtml);
|
|
} else if (config.html) {
|
|
assert.htmlEqual(html, config.html);
|
|
}
|
|
|
|
if (config.after_test) config.after_test();
|
|
|
|
if (config.show) {
|
|
showOutput(cwd, compileOptions);
|
|
}
|
|
} catch (err) {
|
|
if (config.error) {
|
|
if (typeof config.error === 'function') {
|
|
config.error(assert, err);
|
|
} else {
|
|
assert.equal(config.error, err.message);
|
|
}
|
|
} else {
|
|
showOutput(cwd, compileOptions);
|
|
throw err;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|