mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 14:11:29 +03:00
e502023922
Closes #9424 https://github.com/enso-org/enso/assets/6566674/c0c5a524-ea6a-41f6-9fea-c94431211f33
89 lines
3.5 KiB
TypeScript
89 lines
3.5 KiB
TypeScript
import test from 'playwright/test'
|
|
import * as actions from './actions'
|
|
import { expect } from './customExpect'
|
|
import { CONTROL_KEY } from './keyboard'
|
|
import * as locate from './locate'
|
|
import { edgesFromNodeWithBinding, edgesToNodeWithBinding } from './locate'
|
|
|
|
/** Every edge consists of multiple parts.
|
|
* See e2e/edgeRendering.spec.ts for explanation. */
|
|
const EDGE_PARTS = 2
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.addInitScript(() => {
|
|
class MockClipboard {
|
|
private contents: ClipboardItem[] = []
|
|
async read(): Promise<ClipboardItem[]> {
|
|
return [...this.contents]
|
|
}
|
|
async write(contents: ClipboardItem[]) {
|
|
this.contents = [...contents]
|
|
}
|
|
}
|
|
Object.assign(window.navigator, {
|
|
mockClipboard: new MockClipboard(),
|
|
})
|
|
})
|
|
})
|
|
|
|
test('Copy node with comment', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
|
|
// Check state before operation.
|
|
const originalNodes = await locate.graphNode(page).count()
|
|
await expect(page.locator('.GraphNodeComment')).toExist()
|
|
const originalNodeComments = await page.locator('.GraphNodeComment').count()
|
|
|
|
// Select a node.
|
|
const nodeToCopy = locate.graphNodeByBinding(page, 'final')
|
|
await nodeToCopy.click()
|
|
await expect(nodeToCopy).toBeSelected()
|
|
// Copy and paste it.
|
|
await page.keyboard.press(`${CONTROL_KEY}+C`)
|
|
await page.keyboard.press(`${CONTROL_KEY}+V`)
|
|
await expect(nodeToCopy).not.toBeSelected()
|
|
await expect(locate.selectedNodes(page)).toHaveCount(1)
|
|
|
|
// Node and comment have been copied.
|
|
await expect(locate.graphNode(page)).toHaveCount(originalNodes + 1)
|
|
await expect(page.locator('.GraphNodeComment')).toHaveCount(originalNodeComments + 1)
|
|
})
|
|
|
|
test('Copy multiple nodes', async ({ page }) => {
|
|
await actions.goToGraph(page)
|
|
|
|
// Check state before operation.
|
|
const originalNodes = await locate.graphNode(page).count()
|
|
await expect(page.locator('.GraphNodeComment')).toExist()
|
|
const originalNodeComments = await page.locator('.GraphNodeComment').count()
|
|
|
|
// Select some nodes.
|
|
const node1 = locate.graphNodeByBinding(page, 'final')
|
|
await node1.click()
|
|
const node2 = locate.graphNodeByBinding(page, 'prod')
|
|
await node2.click({ modifiers: ['Shift'] })
|
|
await expect(node1).toBeSelected()
|
|
await expect(node2).toBeSelected()
|
|
// Copy and paste.
|
|
await page.keyboard.press(`${CONTROL_KEY}+C`)
|
|
await page.keyboard.press(`${CONTROL_KEY}+V`)
|
|
await expect(node1).not.toBeSelected()
|
|
await expect(node2).not.toBeSelected()
|
|
await expect(locate.selectedNodes(page)).toHaveCount(2)
|
|
|
|
// Nodes and comment have been copied.
|
|
await expect(locate.graphNode(page)).toHaveCount(originalNodes + 2)
|
|
// `final` node has a comment.
|
|
await expect(page.locator('.GraphNodeComment')).toHaveCount(originalNodeComments + 1)
|
|
// Check that two copied nodes are isolated, i.e. connected to each other, not original nodes.
|
|
await expect(locate.graphNodeByBinding(page, 'prod1')).toBeVisible()
|
|
await expect(locate.graphNodeByBinding(page, 'final1')).toBeVisible()
|
|
await expect(await edgesFromNodeWithBinding(page, 'sum')).toHaveCount(2 * EDGE_PARTS)
|
|
await expect(await edgesFromNodeWithBinding(page, 'prod')).toHaveCount(1 * EDGE_PARTS)
|
|
|
|
await expect(await edgesToNodeWithBinding(page, 'prod')).toHaveCount(1 * EDGE_PARTS)
|
|
await expect(await edgesToNodeWithBinding(page, 'final')).toHaveCount(1 * EDGE_PARTS)
|
|
await expect(await edgesToNodeWithBinding(page, 'prod1')).toHaveCount(1 * EDGE_PARTS)
|
|
await expect(await edgesToNodeWithBinding(page, 'final1')).toHaveCount(1 * EDGE_PARTS)
|
|
})
|