30 lines
931 B
TypeScript
30 lines
931 B
TypeScript
import type { TestDefinition } from "../test-definition";
|
|
|
|
export const migrateKeyPreservesExistingTest: TestDefinition = {
|
|
description:
|
|
"Client 0 creates a file and immediately updates it while the server is paused. " +
|
|
"After resume, the update must not be lost.",
|
|
clients: 2,
|
|
steps: [
|
|
{ type: "enable-sync", client: 0 },
|
|
{ type: "enable-sync", client: 1 },
|
|
{ type: "sync" },
|
|
{ type: "barrier" },
|
|
|
|
{ type: "pause-server" },
|
|
|
|
{ type: "create", client: 0, path: "A.md", content: "initial" },
|
|
{
|
|
type: "update",
|
|
client: 0,
|
|
path: "A.md",
|
|
content: "updated by client 0"
|
|
},
|
|
|
|
{ type: "resume-server" },
|
|
{ type: "sync" },
|
|
{ type: "barrier" },
|
|
|
|
{ type: "assert-consistent", verify: (s) => s.assertFileCount(1).assertContains("A.md", "updated by client 0") }
|
|
]
|
|
};
|