Added more tests for edges, pane

This commit is contained in:
Peter
2023-11-02 14:04:41 +01:00
parent 4cf99ec425
commit 92272080e3
6 changed files with 140 additions and 10 deletions

View File

@@ -118,5 +118,43 @@ test.describe('EDGES', () => {
await page.keyboard.press('Backspace');
await expect(edge).toBeAttached();
});
test('zIndex sets z-index of edge svgs', async ({ page }) => {
const svg = page.locator('svg', { has: page.locator('#z-index') });
await expect(svg).toBeAttached();
await expect(svg).toHaveCSS('z-index', '3141592');
});
test('aria-lable is working', async ({ page }) => {
const edge = page.locator('[data-id="aria-label"]');
await expect(edge).toHaveAttribute('aria-label', 'aria-label-test');
});
test('interactionWidth is working', async ({ page }) => {
const edge = page.locator('[data-id="interaction-width"]');
await expect(edge).toBeAttached();
const edgeBox = await edge.boundingBox();
//FIXME: Negative values are not working. Investigate further
await page.mouse.move(edgeBox!.x + edgeBox!.width * 0.5 + 21, edgeBox!.y + edgeBox!.height * 0.5);
await page.mouse.down();
await page.mouse.up();
// TODO: times out on webkit
await expect(edge).toHaveClass(/selected/);
});
test('markerEnd is setting marker-end', async ({ page }) => {
const edge = page.locator('#markers');
await expect(edge).toBeAttached();
await expect(edge).toHaveAttribute('marker-start', 'url(#1__type=arrowclosed)');
await expect(edge).toHaveAttribute('marker-end', 'url(#1__type=arrow)');
});
});
});

View File

@@ -0,0 +1,36 @@
import { test, expect } from '@playwright/test';
import { FRAMEWORK } from './constants';
test.describe('PANE', () => {
test.beforeEach(async ({ page }) => {
// Go to the starting url before each test.
await page.goto('/tests/pane');
});
test.describe('pan', () => {
test('panning the pane', async ({ page }) => {
const pane = page.locator(`.${FRAMEWORK}-flow__pane`);
const viewport = page.locator(`.${FRAMEWORK}-flow__viewport`);
await expect(pane).toBeAttached();
const paneBox = await pane.boundingBox();
const viewportTransformBeforePan = await viewport.evaluate((element) => {
return element.style.transform;
});
await pane.hover();
await page.mouse.down();
await page.mouse.move(paneBox!.x + 150, paneBox!.y + 100);
await page.mouse.up();
const viewportTransformAfterPan = await viewport.evaluate((element) => {
return element.style.transform;
});
expect(viewportTransformBeforePan).toBe(viewportTransformAfterPan);
});
});
});