mosx
Version:
Multiview observable state management engine
410 lines (367 loc) • 14.1 kB
text/typescript
import { IReversibleJsonPatch, mx, Mosx } from '../index'
import { MosxTester } from '../src/tester'
.Object
class Public {
public prop: any
.private public pprop: any
.computed get comp() { return this.pprop }
.computed.private get pcomp() { return this.mobx }
.observable public mobx: any
public name: string = ""
constructor(params: any = {}) {
const that = this as any
Object.keys(params).forEach(key => {
that[key] = params[key]
})
}
}
.Object.private
class Private extends Public {
public ext: any
}
class State extends Public {
public prop1: any
.private public pprop1: any
}
const state = new State({ name: "state" })
Mosx.addTag(state, "123")
const stateTracker = Mosx.createTracker(state)
const tester = new MosxTester(stateTracker)
tester.addListener("client1", "1")
tester.addListener("client2", ["2", "123"])
const c1 = (id: string, value: any): any => id === "client2" ? undefined : value
const c2 = (id: string, value: any): any => id === "client1" ? undefined : value
const unhandledTest = (unhandled: any[]) => {
test("should not be unhandled patches", () => {
unhandled.length && console.log(unhandled)
expect(unhandled.length).toBe(0)
})
}
describe("Replace public property", () => {
const value = "test value"
tester
.onAction(() => state.prop = value)
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for property`, () => {
expect(change).toEqual({ path: "/prop", op: "replace", value })
})
}).run(unhandledTest)
})
describe("Replace public property with private object", () => {
const oldValue = state.prop
const obj = { prop: "test", pprop: "test2", ext: "ext" }
const value = new Private({ ...obj, name: "prop" })
Mosx.setParent(value, state)
tester
.onAction(() => state.prop = value)
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for property`, () => {
expect(change).toMatchObject({ path: "/prop", op: "replace", value: c2(id, obj), oldValue })
})
}).run(unhandledTest)
})
describe("Replace private property", () => {
const value = "test value"
tester
.onAction(() => {
state.pprop = value
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for computed property`, () => {
expect(id).toBe("client1")
expect(change).toEqual({ path: "/comp", op: "replace", value })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for computed property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/comp", op: "replace", value })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for private property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pprop", op: "replace", value })
})
}).run(unhandledTest)
})
state.prop1 = []
describe("Add to public array", () => {
const value = "test value"
tester
.onAction(() => state.prop1.push(value))
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for array property`, () => {
expect(change).toEqual({ path: "/prop1/0", op: "add", value })
})
}).run(unhandledTest)
})
describe("Update item in public array", () => {
const oldValue = "test value"
const value = "test value 2"
tester
.onAction(() => state.prop1[0] = value)
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get remove change for array property`, () => {
expect(change).toEqual({ path: "/prop1/0", op: "replace", value, oldValue })
})
}).run(unhandledTest)
})
describe("Remove from public array", () => {
const oldValue = state.prop1[0]
tester
.onAction(() => state.prop1.pop())
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get remove change for array property`, () => {
expect(change).toEqual({ path: "/prop1/0", op: "remove", oldValue })
})
}).run(unhandledTest)
})
describe("Add private object to public array", () => {
const obj = { prop: "test", pprop: "test2", ext: "ext" }
const value = new Private({ ...obj, name: "prop1/0" })
Mosx.setParent(value, state)
tester
.onAction(() => state.prop1.push(value))
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for array property`, () => {
expect(change).toMatchObject({ path: "/prop1/0", op: "add", value: c2(id, obj) })
})
}).run(unhandledTest)
})
describe("Replace property in private object in public array", () => {
const value = "test value"
const oldValue = state.prop1[0].prop
tester
.onAction(() => state.prop1[0].prop = value)
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for private property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/prop1/0/prop", op: "replace", value, oldValue })
})
}).run(unhandledTest)
})
describe("Remove private object from public array", () => {
const obj = { prop: "test value", pprop: "test2", ext: "ext" }
tester
.onAction(() => state.prop1.pop())
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get remove change for array property`, () => {
expect(change).toMatchObject({ path: "/prop1/0", op: "remove", oldValue: c2(id, obj) })
})
}).run(unhandledTest)
})
describe("Set private property to array", () => {
tester
.onAction(() => {
state.pprop1 = []
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for array property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pprop1", op: "replace", value: [] })
})
}).run(unhandledTest)
})
state.pprop1 = []
describe("Add to private array", () => {
const value = "test value"
tester
.onAction(() => state.pprop1.push(value))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for array property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pprop1/0", op: "add", value })
})
}).run(unhandledTest)
})
describe("Remove from private array", () => {
const oldValue = state.pprop1[0]
tester
.onAction(() => state.pprop1.pop())
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get remove change for array property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pprop1/0", op: "remove", oldValue })
})
}).run(unhandledTest)
})
state.prop1 = new Map()
describe("Add to public map", () => {
const key = "12345"
const value = "test value"
tester
.onAction(() => state.prop1.set(key, value))
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for map property`, () => {
expect(change).toEqual({ path: "/prop1/" + key, op: "add", value })
})
}).run(unhandledTest)
})
describe("Replace item in public map", () => {
const key = "12345"
const oldValue = state.prop1.get(key)
const value = "test value 2"
tester
.onAction(() => state.prop1.set(key, value))
.trigger(2, (id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for map property`, () => {
expect(change).toEqual({ path: "/prop1/" + key, op: "replace", value, oldValue })
})
}).run(unhandledTest)
})
describe("Add private object to public map", () => {
const key = "private"
const obj = { prop: "test", pprop: "test2", ext: "ext" }
const value = new Private({...obj, name: "prop1/private" })
Mosx.setParent(value, state)
tester
.onAction(() => state.prop1.set(key, value))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for map property`, () => {
expect(id).toBe("client2")
expect(change).toMatchObject({ path: "/prop1/" + key, op: "add", value: obj })
})
}).run(unhandledTest)
})
state.pprop1 = new Map()
describe("Add to private map", () => {
const key = "12345"
const value = "test value"
tester
.onAction(() => state.pprop1.set(key, value))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for map property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pprop1/" + key, op: "add", value })
})
}).run(unhandledTest)
})
describe("Replace observable property to trigger computed property", () => {
const value = "test value"
tester
.onAction(() => state.mobx = value)
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for computed property`, () => {
expect(id).toBe("client2")
expect(change).toEqual({ path: "/pcomp", op: "replace", value })
})
}).run(unhandledTest)
})
const view1 = Mosx.getSnapshot(state, "1")
describe("Snapshot of state for client1", () => {
test(`should not have private/observable properties`, () => {
expect(view1).toMatchObject({ comp: "test value", prop1: { 12345: "test value 2" }})
expect(view1).not.toHaveProperty("pprop")
expect(view1).not.toHaveProperty("pcomp")
expect(view1).not.toHaveProperty("mobx")
})
test(`should have undefined value for private object`, () => {
expect(view1.prop1.private).toBe(undefined)
})
})
const view2 = Mosx.getSnapshot(state, "123")
describe("Snapshot of state for client2", () => {
test(`should have private properties and not have observable properties`, () => {
expect(view2).toMatchObject({ comp: "test value", prop1: { 12345: "test value 2" } })
expect(view2).toHaveProperty("pprop")
expect(view2).toHaveProperty("pcomp")
expect(view2).not.toHaveProperty("mobx")
})
test(`should have value for private object`, () => {
expect(view2.prop1.private).toMatchObject({ prop: "test", pprop: "test2", ext: "ext" })
})
})
describe("Add tag of client1 to state", () => {
tester
.onAction(() => Mosx.addTag(state, "1"))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private propery`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pprop", op: "add", value: view2.pprop })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private computed property`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pcomp", op: "add", value: view2.pcomp })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private property`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pprop1", op: "add", value: view2.pprop1 })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for private object`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/prop", op: "replace", value: view2.prop })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private object of public map propery`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/prop1/private", op: "add", value: view2.prop1.private })
})
}).run(unhandledTest)
})
describe("Remove tag of client1 to state", () => {
tester
.onAction(() => Mosx.deleteTag(state, "1"))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private propery`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pprop", op: "remove", oldValue: view2.pprop })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private computed property`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pcomp", op: "remove", oldValue: view2.pcomp })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private property`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/pprop1", op: "remove", oldValue: view2.pprop1 })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for private object`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/prop", op: "replace", oldValue: view2.prop })
})
})
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should remove change for private object of public map propery`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/prop1/private", op: "remove", oldValue: view2.prop1.private })
})
})
.run(unhandledTest)
})
// TODO: add/remove tag for private object
const p: Private = state.prop1.get("private")
describe("Add tag of client1 to private object in map", () => {
tester
.onAction(() => Mosx.addTag(p, "1"))
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get add change for private object of public map propery`, () => {
expect(id).toBe("client1")
expect(change).toMatchObject({ path: "/prop1/private", op: "add", value: view2.prop1.private })
})
}).run(unhandledTest)
})
describe("Stop tracking change", () => {
const value = "test"
tester.disposers.client1()
tester
.onAction(() => state.prop = value)
.trigger((id: string, change: IReversibleJsonPatch) => {
test(`${id} should get replace change for property`, () => {
expect(change).toMatchObject({ path: "/prop", op: "replace", value })
})
}).run(unhandledTest)
})
// TODO spy test