47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import type { TestDefinition } from "../test-definition";
|
|
|
|
export const concurrentRenameAndCreateAtTargetTest: TestDefinition = {
|
|
description:
|
|
"One client renames X to Y while another creates a new file at Y, " +
|
|
"both offline. After syncing, Y should contain merged content from " +
|
|
"both the renamed file and the newly created file.",
|
|
clients: 2,
|
|
steps: [
|
|
{
|
|
type: "create",
|
|
client: 0,
|
|
path: "X.md",
|
|
content: "original file X"
|
|
},
|
|
{ type: "enable-sync", client: 0 },
|
|
{ type: "enable-sync", client: 1 },
|
|
{ type: "barrier" },
|
|
|
|
{ type: "disable-sync", client: 0 },
|
|
{ type: "disable-sync", client: 1 },
|
|
|
|
{ type: "rename", client: 0, oldPath: "X.md", newPath: "Y.md" },
|
|
|
|
{
|
|
type: "create",
|
|
client: 1,
|
|
path: "Y.md",
|
|
content: "brand new Y content"
|
|
},
|
|
|
|
{ type: "enable-sync", client: 0 },
|
|
{ type: "sync", client: 0 },
|
|
|
|
{ type: "enable-sync", client: 1 },
|
|
{ type: "barrier" },
|
|
|
|
{
|
|
type: "assert-consistent",
|
|
verify: (state) => {
|
|
state
|
|
.assertFileNotExists("X.md")
|
|
.assertContains("Y.md", "original file X", "brand new Y content");
|
|
}
|
|
}
|
|
]
|
|
};
|