Reviewed-on: https://home.schmelczer.dev/git/git/andras/vault-link/pulls/190 Co-authored-by: Andras Schmelczer <andras@schmelczer.dev> Co-committed-by: Andras Schmelczer <andras@schmelczer.dev>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import type { AssertableState } from "../utils/assertable-state";
|
|
import type { TestDefinition } from "../test-definition";
|
|
|
|
export const offlineEditRemoteRenameTest: TestDefinition = {
|
|
description:
|
|
"Client 0 edits A.md offline while client 1 renames A.md to B.md. " +
|
|
"After client 0 reconnects, the edit must appear in B.md and A.md must not exist.",
|
|
clients: 2,
|
|
steps: [
|
|
{ type: "create", client: 0, path: "A.md", content: "original" },
|
|
{ type: "enable-sync", client: 0 },
|
|
{ type: "enable-sync", client: 1 },
|
|
{ type: "barrier" },
|
|
{
|
|
type: "assert-consistent",
|
|
verify: (s: AssertableState): void => {
|
|
s.assertContent("A.md", "original");
|
|
}
|
|
},
|
|
|
|
{ type: "disable-sync", client: 0 },
|
|
{
|
|
type: "update",
|
|
client: 0,
|
|
path: "A.md",
|
|
content: "edited by client 0"
|
|
},
|
|
|
|
{
|
|
type: "rename",
|
|
client: 1,
|
|
oldPath: "A.md",
|
|
newPath: "B.md"
|
|
},
|
|
{ type: "sync", client: 1 },
|
|
|
|
{ type: "enable-sync", client: 0 },
|
|
{ type: "barrier" },
|
|
|
|
{
|
|
type: "assert-consistent",
|
|
verify: (s: AssertableState): void => {
|
|
s.assertFileNotExists("A.md")
|
|
.assertFileCount(1)
|
|
.assertContains("B.md", "edited by client 0");
|
|
}
|
|
}
|
|
]
|
|
};
|