mirror of
https://github.com/maputnik/editor.git
synced 2026-07-08 23:17:26 +00:00
ac9186e7f8
Make the driver page-lazy (it resolves the running test's page on demand via
an auto fixture) so it can be created a single time at describe scope and
reused across the block's tests, matching the pre-migration ergonomics:
const { given, get, when, then } = new MaputnikDriver();
instead of pulling `driver` out of a fixture and destructuring it in every
test. Coverage collection and dialog handling move into the auto fixture.
Also inject a bare invalid token ("zzz") in the json-editor parse-error test:
CodeMirror auto-closes brackets/quotes, so " {" no longer reliably breaks the
JSON.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
352 lines
13 KiB
TypeScript
352 lines
13 KiB
TypeScript
import { test } from "./fixtures";
|
|
import { MaputnikDriver } from "./maputnik-driver";
|
|
|
|
test.describe("layers list", () => {
|
|
const { given, get, when, then } = new MaputnikDriver();
|
|
|
|
test.beforeEach(async () => {
|
|
await given.setupMockBackedResponses();
|
|
await when.setStyle("both");
|
|
await when.modal.open();
|
|
});
|
|
|
|
test.describe("ops", () => {
|
|
let id: string;
|
|
test.beforeEach(async () => {
|
|
id = await when.modal.fillLayers({ type: "background" });
|
|
});
|
|
|
|
test("should update layers in local storage", async () => {
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "background" }],
|
|
});
|
|
});
|
|
|
|
test.describe("when clicking delete", () => {
|
|
test.beforeEach(async () => {
|
|
await when.click("layer-list-item:" + id + ":delete");
|
|
});
|
|
test("should empty layers in local storage", async () => {
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("when clicking duplicate", () => {
|
|
test.beforeEach(async () => {
|
|
await when.click("layer-list-item:" + id + ":copy");
|
|
});
|
|
test("should add copy layer in local storage", async () => {
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [
|
|
{ id: id + "-copy", type: "background" },
|
|
{ id, type: "background" },
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("when clicking hide", () => {
|
|
test.beforeEach(async () => {
|
|
await when.click("layer-list-item:" + id + ":toggle-visibility");
|
|
});
|
|
|
|
test("should update visibility to none in local storage", async () => {
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "background", layout: { visibility: "none" } }],
|
|
});
|
|
});
|
|
|
|
test.describe("when clicking show", () => {
|
|
test.beforeEach(async () => {
|
|
await when.click("layer-list-item:" + id + ":toggle-visibility");
|
|
});
|
|
|
|
test("should update visibility to visible in local storage", async () => {
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "background", layout: { visibility: "visible" } }],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("when selecting a layer", () => {
|
|
let secondId: string;
|
|
test.beforeEach(async () => {
|
|
await when.modal.open();
|
|
secondId = await when.modal.fillLayers({
|
|
id: "second-layer",
|
|
type: "background",
|
|
});
|
|
});
|
|
test("should show the selected layer in the editor", async () => {
|
|
await when.realClick("layer-list-item:" + secondId);
|
|
await then(get.elementByTestId("layer-editor.layer-id.input")).shouldHaveValue(secondId);
|
|
await when.realClick("layer-list-item:" + id);
|
|
await then(get.elementByTestId("layer-editor.layer-id.input")).shouldHaveValue(id);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("background", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "background" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "background" }],
|
|
});
|
|
});
|
|
|
|
test.skip("modify", () => {});
|
|
});
|
|
|
|
test.describe("fill", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "fill", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "fill", source: "example" }],
|
|
});
|
|
});
|
|
|
|
// TODO: Change source
|
|
test.skip("change source", () => {});
|
|
});
|
|
|
|
test.describe("line", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "line", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "line", source: "example" }],
|
|
});
|
|
});
|
|
|
|
test("groups", async () => {
|
|
await when.modal.open();
|
|
const id1 = await when.modal.fillLayers({ id: "aa", type: "line", layer: "example" });
|
|
|
|
await when.modal.open();
|
|
const id2 = await when.modal.fillLayers({ id: "aa-2", type: "line", layer: "example" });
|
|
|
|
await when.modal.open();
|
|
const id3 = await when.modal.fillLayers({ id: "b", type: "line", layer: "example" });
|
|
|
|
await then(get.elementByTestId("layer-list-item:" + id1)).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:" + id2)).shouldNotBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:" + id3)).shouldBeVisible();
|
|
await when.click("layer-list-group:aa-0");
|
|
await then(get.elementByTestId("layer-list-item:" + id1)).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:" + id2)).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:" + id3)).shouldBeVisible();
|
|
await when.click("layer-list-item:" + id2);
|
|
await when.click("skip-target-layer-editor");
|
|
await when.click("menu-move-layer-down");
|
|
await then(get.elementByTestId("layer-list-group:aa-0")).shouldNotExist();
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [
|
|
{ id: "aa", type: "line", source: "example" },
|
|
{ id: "b", type: "line", source: "example" },
|
|
{ id: "aa-2", type: "line", source: "example" },
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("symbol", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "symbol", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "symbol", source: "example" }],
|
|
});
|
|
});
|
|
|
|
test("should show spec info when hovering and clicking single line property", async () => {
|
|
await when.modal.fillLayers({ type: "symbol", layer: "example" });
|
|
|
|
await when.hover("spec-field-container:text-rotate");
|
|
await then(get.elementByTestId("field-doc-button-Rotate")).shouldBeVisible();
|
|
await when.click("field-doc-button-Rotate", 0);
|
|
await then(get.elementByTestId("spec-field-doc")).shouldContainText("Rotates the ");
|
|
});
|
|
|
|
test("should show spec info when hovering and clicking multi line property", async () => {
|
|
await when.modal.fillLayers({ type: "symbol", layer: "example" });
|
|
|
|
await when.hover("spec-field-container:text-offset");
|
|
await then(get.elementByTestId("field-doc-button-Offset")).shouldBeVisible();
|
|
await when.click("field-doc-button-Offset", 0);
|
|
await then(get.elementByTestId("spec-field-doc")).shouldContainText("Offset distance");
|
|
});
|
|
|
|
test("should hide spec info when clicking a second time", async () => {
|
|
await when.modal.fillLayers({ type: "symbol", layer: "example" });
|
|
|
|
await when.hover("spec-field-container:text-rotate");
|
|
await then(get.elementByTestId("field-doc-button-Rotate")).shouldBeVisible();
|
|
await when.click("field-doc-button-Rotate", 0);
|
|
await when.wait(200);
|
|
await when.click("field-doc-button-Rotate", 0);
|
|
await then(get.elementByTestId("spec-field-doc")).shouldNotBeVisible();
|
|
});
|
|
});
|
|
|
|
test.describe("raster", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "raster", layer: "raster" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "raster", source: "raster" }],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("circle", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "circle", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "circle", source: "example" }],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("fill extrusion", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "fill-extrusion", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "fill-extrusion", source: "example" }],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("hillshade", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "hillshade", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "hillshade", source: "example" }],
|
|
});
|
|
});
|
|
|
|
test("set hillshade illumination direction array", async () => {
|
|
const id = await when.modal.fillLayers({ type: "hillshade", layer: "example" });
|
|
await when.collapseGroupInLayerEditor();
|
|
await when.collapseGroupInLayerEditor(1);
|
|
await when.setValueToPropertyArray("spec-field:hillshade-illumination-direction", "1");
|
|
await when.addValueToPropertyArray("spec-field:hillshade-illumination-direction", "2");
|
|
await when.addValueToPropertyArray("spec-field:hillshade-illumination-direction", "3");
|
|
await when.addValueToPropertyArray("spec-field:hillshade-illumination-direction", "4");
|
|
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [
|
|
{
|
|
id,
|
|
type: "hillshade",
|
|
source: "example",
|
|
paint: { "hillshade-illumination-direction": [1, 2, 3, 4] },
|
|
},
|
|
],
|
|
});
|
|
});
|
|
|
|
test("set hillshade highlight color array", async () => {
|
|
const id = await when.modal.fillLayers({ type: "hillshade", layer: "example" });
|
|
await when.collapseGroupInLayerEditor();
|
|
await when.setValueToPropertyArray("spec-field:hillshade-highlight-color", "blue");
|
|
await when.addValueToPropertyArray("spec-field:hillshade-highlight-color", "#00ff00");
|
|
await when.addValueToPropertyArray("spec-field:hillshade-highlight-color", "rgba(255, 255, 0, 1)");
|
|
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [
|
|
{
|
|
id,
|
|
type: "hillshade",
|
|
source: "example",
|
|
paint: {
|
|
"hillshade-highlight-color": ["blue", "#00ff00", "rgba(255, 255, 0, 1)"],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("color-relief", () => {
|
|
test("add", async () => {
|
|
const id = await when.modal.fillLayers({ type: "color-relief", layer: "example" });
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [{ id, type: "color-relief", source: "example" }],
|
|
});
|
|
});
|
|
|
|
test("adds elevation expression when clicking the elevation button", async () => {
|
|
await when.modal.fillLayers({ type: "color-relief", layer: "example" });
|
|
await when.collapseGroupInLayerEditor();
|
|
await when.click("make-elevation-function");
|
|
await then(
|
|
get.element("[data-wd-key='spec-field-container:color-relief-color'] .cm-line")
|
|
).shouldBeVisible();
|
|
});
|
|
});
|
|
|
|
test.describe("groups", () => {
|
|
test("simple", async () => {
|
|
await when.setStyle("geojson");
|
|
|
|
await when.modal.open();
|
|
await when.modal.fillLayers({ id: "foo", type: "background" });
|
|
|
|
await when.modal.open();
|
|
await when.modal.fillLayers({ id: "foo_bar", type: "background" });
|
|
|
|
await when.modal.open();
|
|
await when.modal.fillLayers({ id: "foo_bar_baz", type: "background" });
|
|
|
|
await then(get.elementByTestId("layer-list-item:foo")).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:foo_bar")).shouldNotBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:foo_bar_baz")).shouldNotBeVisible();
|
|
await when.click("layer-list-group:foo-0");
|
|
await then(get.elementByTestId("layer-list-item:foo")).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:foo_bar")).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list-item:foo_bar_baz")).shouldBeVisible();
|
|
});
|
|
});
|
|
|
|
test.describe("drag and drop", () => {
|
|
test("move layer should update local storage", async () => {
|
|
await when.modal.open();
|
|
const firstId = await when.modal.fillLayers({ id: "a", type: "background" });
|
|
await when.modal.open();
|
|
const secondId = await when.modal.fillLayers({ id: "b", type: "background" });
|
|
await when.modal.open();
|
|
const thirdId = await when.modal.fillLayers({ id: "c", type: "background" });
|
|
|
|
await when.dragAndDropWithWait("layer-list-item:" + firstId, "layer-list-item:" + thirdId);
|
|
|
|
await then(get.styleFromLocalStorage()).shouldDeepNestedInclude({
|
|
layers: [
|
|
{ id: secondId, type: "background" },
|
|
{ id: thirdId, type: "background" },
|
|
{ id: firstId, type: "background" },
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
test.describe("sticky header", () => {
|
|
test("should keep header visible when scrolling layer list", async () => {
|
|
// Setup: Create multiple layers to enable scrolling
|
|
for (let i = 0; i < 20; i++) {
|
|
await when.modal.open();
|
|
await when.modal.fillLayers({ id: `layer-${i}`, type: "background" });
|
|
}
|
|
|
|
await when.wait(500);
|
|
const header = get.elementByTestId("layer-list.header");
|
|
await then(header).shouldBeVisible();
|
|
|
|
// Scroll the layer list container
|
|
await get.elementByTestId("layer-list").evaluate((el) => el.scrollTo(0, el.scrollHeight));
|
|
await when.wait(200);
|
|
await then(header).shouldBeVisible();
|
|
await then(get.elementByTestId("layer-list:add-layer")).shouldBeVisible();
|
|
});
|
|
});
|
|
});
|