Files
2026-07-13 12:25:07 +08:00

199 lines
7.4 KiB
TypeScript

// ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
// ┃ ██████ ██████ ██████ █ █ █ █ █ █▄ ▀███ █ ┃
// ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█ ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄ ▀█ █ ▀▀▀▀▀ ┃
// ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄ █ ▄▄▄▄▄ ┃
// ┃ █ ██████ █ ▀█▄ █ ██████ █ ███▌▐███ ███████▄ █ ┃
// ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
// ┃ Copyright (c) 2017, the Perspective Authors. ┃
// ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
// ┃ This file is part of the Perspective library, distributed under the terms ┃
// ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
// ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
import {
test,
expect,
DEFAULT_CONFIG,
compareContentsToSnapshot,
API_VERSION,
getShadowContents,
} from "../helpers.ts";
const get_contents = getShadowContents;
test.beforeEach(async ({ page }) => {
await page.goto("/rust/perspective-viewer/test/html/superstore.html");
await page.evaluate(async () => {
while (!window["__TEST_PERSPECTIVE_READY__"]) {
await new Promise((x) => setTimeout(x, 10));
}
});
await page.evaluate(async () => {
await document.querySelector("perspective-viewer").restore({
plugin: "Debug",
});
});
});
test.describe("Save/Restore", async () => {
test("save > returns the current viewer config", async ({ page }) => {
const config = await page.evaluate(async () => {
const viewer = document.querySelector("perspective-viewer");
await viewer.getTable();
await viewer.restore({
settings: true,
group_by: ["State"],
columns: ["Profit", "Sales"],
});
return await viewer.save();
});
expect(config).toEqual({
...DEFAULT_CONFIG,
columns: ["Profit", "Sales"],
plugin: "Debug",
group_by: ["State"],
settings: true,
});
const contents = await get_contents(page);
await compareContentsToSnapshot(contents);
});
test("restore > roundtrips a saved config", async ({ page }) => {
const config = await page.evaluate(async () => {
const viewer = document.querySelector("perspective-viewer");
await viewer.getTable();
await viewer.restore({
settings: true,
group_by: ["State"],
columns: ["Profit", "Sales"],
});
return await viewer.save();
});
expect(config).toEqual({
...DEFAULT_CONFIG,
columns: ["Profit", "Sales"],
plugin: "Debug",
group_by: ["State"],
settings: true,
});
const config2 = await page.evaluate(async () => {
const viewer = document.querySelector("perspective-viewer");
await viewer.reset();
return await viewer.save();
});
expect(config2).toEqual({
...DEFAULT_CONFIG,
columns: [
"Row ID",
"Order ID",
"Order Date",
"Ship Date",
"Ship Mode",
"Customer ID",
"Segment",
"Country",
"City",
"State",
"Postal Code",
"Region",
"Product ID",
"Category",
"Sub-Category",
"Sales",
"Quantity",
"Discount",
"Profit",
],
plugin: "Debug",
settings: true,
theme: "Pro Light",
});
const config3 = await page.evaluate(async (config) => {
const viewer = document.querySelector("perspective-viewer");
await viewer.restore(config);
return await viewer.save();
}, config);
expect(config3).toEqual({
...DEFAULT_CONFIG,
columns: ["Profit", "Sales"],
plugin: "Debug",
group_by: ["State"],
settings: true,
theme: "Pro Light",
});
const contents = await get_contents(page);
await compareContentsToSnapshot(contents);
});
test("save > roundtrips in string format", async ({ page }) => {
const config = await page.evaluate(async () => {
const viewer = document.querySelector("perspective-viewer");
await viewer.getTable();
await viewer.restore({
settings: true,
group_by: ["State"],
columns: ["Profit", "Sales"],
});
return await viewer.save("string");
});
const config3 = await page.evaluate(async (config) => {
const viewer = document.querySelector("perspective-viewer");
await viewer.reset();
await viewer.restore(config);
return await viewer.save();
}, config);
expect(config3).toEqual({
...DEFAULT_CONFIG,
columns: ["Profit", "Sales"],
plugin: "Debug",
group_by: ["State"],
settings: true,
theme: "Pro Light",
});
const contents = await get_contents(page);
await compareContentsToSnapshot(contents);
});
test("save > roundtrips in arraybuffer format", async ({ page }) => {
const config3 = await page.evaluate(async () => {
const viewer = document.querySelector("perspective-viewer");
await viewer.getTable();
await viewer.restore({
settings: true,
group_by: ["State"],
columns: ["Profit", "Sales"],
});
const config = await viewer.save("arraybuffer");
await viewer.reset();
await viewer.restore(config);
return await viewer.save();
});
expect(config3).toEqual({
...DEFAULT_CONFIG,
columns: ["Profit", "Sales"],
plugin: "Debug",
group_by: ["State"],
settings: true,
theme: "Pro Light",
});
const contents = await get_contents(page);
await compareContentsToSnapshot(contents);
});
});