Remove “simple graph” demo data (#298)

Summary:
We now use the “advanced” graph everywhere. Happily, all tests still
pass!

Starting from `:%s/\%(advanced\|simple\)MealGraph/mealGraph/gc`, only a
few tests had to be manually changed: in particular, the `#equals` tests
for “returns false when the ?HS has nodes missing in the ?HS” became
trivially incorrect by the above substitution, and were therefore
changed to use more appropriate inputs.

Paired with @decentralion.

Test Plan:
Existing unit tests suffice.

wchargin-branch: remove-simple-graph
This commit is contained in:
William Chargin 2018-05-25 14:03:28 -07:00 committed by GitHub
parent 719bf47156
commit 853518fd60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 82 additions and 92 deletions

View File

@ -21,11 +21,11 @@ describe("graph", () => {
describe("construction", () => { describe("construction", () => {
it("works for a simple graph", () => { it("works for a simple graph", () => {
demoData.simpleMealGraph(); demoData.mealGraph();
}); });
it("works for an advanced graph", () => { it("works for an advanced graph", () => {
demoData.advancedMealGraph(); demoData.mealGraph();
}); });
}); });
@ -75,7 +75,7 @@ describe("graph", () => {
describe("getting nodes and edges", () => { describe("getting nodes and edges", () => {
it("correctly gets nodes in the simple graph", () => { it("correctly gets nodes in the simple graph", () => {
const g = demoData.simpleMealGraph(); const g = demoData.mealGraph();
[ [
demoData.heroNode(), demoData.heroNode(),
demoData.bananasNode(), demoData.bananasNode(),
@ -87,7 +87,7 @@ describe("graph", () => {
}); });
it("correctly gets nodes in the advanced graph", () => { it("correctly gets nodes in the advanced graph", () => {
const g = demoData.advancedMealGraph(); const g = demoData.mealGraph();
[ [
demoData.heroNode(), demoData.heroNode(),
demoData.bananasNode(), demoData.bananasNode(),
@ -99,7 +99,7 @@ describe("graph", () => {
}); });
it("correctly gets edges in the simple graph", () => { it("correctly gets edges in the simple graph", () => {
const g = demoData.simpleMealGraph(); const g = demoData.mealGraph();
[ [
demoData.pickEdge(), demoData.pickEdge(),
demoData.grabEdge(), demoData.grabEdge(),
@ -113,7 +113,7 @@ describe("graph", () => {
}); });
it("correctly gets edges in the advanced graph", () => { it("correctly gets edges in the advanced graph", () => {
const g = demoData.advancedMealGraph(); const g = demoData.mealGraph();
[ [
demoData.pickEdge(), demoData.pickEdge(),
demoData.grabEdge(), demoData.grabEdge(),
@ -131,7 +131,7 @@ describe("graph", () => {
it("returns `undefined` for nodes that do not exist", () => { it("returns `undefined` for nodes that do not exist", () => {
expect( expect(
demoData demoData
.simpleMealGraph() .mealGraph()
.node(demoData.makeAddress("treasure_octorok#5", "NPC")) .node(demoData.makeAddress("treasure_octorok#5", "NPC"))
).toBeUndefined(); ).toBeUndefined();
}); });
@ -139,7 +139,7 @@ describe("graph", () => {
it("returns `undefined` for edges that do not exist", () => { it("returns `undefined` for edges that do not exist", () => {
expect( expect(
demoData demoData
.simpleMealGraph() .mealGraph()
.node( .node(
demoData.makeAddress( demoData.makeAddress(
"treasure_octorok#5@helps_cook@seafood_fruit_mix#3", "treasure_octorok#5@helps_cook@seafood_fruit_mix#3",
@ -157,7 +157,7 @@ describe("graph", () => {
demoData.mealNode(), demoData.mealNode(),
demoData.nullPayloadNode(), demoData.nullPayloadNode(),
]; ];
const actual = demoData.advancedMealGraph().nodes(); const actual = demoData.mealGraph().nodes();
expectSameSorted(expected, actual); expectSameSorted(expected, actual);
}); });
@ -174,7 +174,7 @@ describe("graph", () => {
}, },
]; ];
typeAndExpectedNodes.forEach(({type, nodes}) => { typeAndExpectedNodes.forEach(({type, nodes}) => {
const actual = demoData.advancedMealGraph().nodes({type}); const actual = demoData.mealGraph().nodes({type});
expectSameSorted(actual, nodes); expectSameSorted(actual, nodes);
}); });
}); });
@ -190,7 +190,7 @@ describe("graph", () => {
demoData.crabLoopEdge(), demoData.crabLoopEdge(),
demoData.duplicateCookEdge(), demoData.duplicateCookEdge(),
]; ];
const actual = demoData.advancedMealGraph().edges(); const actual = demoData.mealGraph().edges();
expectSameSorted(expected, actual); expectSameSorted(expected, actual);
}); });
@ -219,12 +219,12 @@ describe("graph", () => {
}, },
]; ];
typeAndExpectedEdges.forEach(({type, edges}) => { typeAndExpectedEdges.forEach(({type, edges}) => {
const actual = demoData.advancedMealGraph().edges({type}); const actual = demoData.mealGraph().edges({type});
expectSameSorted(actual, edges); expectSameSorted(actual, edges);
}); });
}); });
it("filter args are optional", () => { it("filter args are optional", () => {
const graph = demoData.advancedMealGraph(); const graph = demoData.mealGraph();
expectSameSorted(graph.edges(), graph.edges({})); expectSameSorted(graph.edges(), graph.edges({}));
expectSameSorted(graph.nodes(), graph.nodes({})); expectSameSorted(graph.nodes(), graph.nodes({}));
}); });
@ -241,7 +241,7 @@ describe("graph", () => {
dst: demoData.makeAddress("treasure_octorok#5", "NPC"), dst: demoData.makeAddress("treasure_octorok#5", "NPC"),
payload: {}, payload: {},
}); });
const g = demoData.simpleMealGraph().addEdge(edge()); const g = demoData.mealGraph().addEdge(edge());
expect(g.edge(edge().address)).toEqual(edge()); expect(g.edge(edge().address)).toEqual(edge());
}); });
@ -255,13 +255,13 @@ describe("graph", () => {
dst: demoData.mealNode().address, dst: demoData.mealNode().address,
payload: {}, payload: {},
}); });
const g = demoData.simpleMealGraph().addEdge(edge()); const g = demoData.mealGraph().addEdge(edge());
expect(g.edge(edge().address)).toEqual(edge()); expect(g.edge(edge().address)).toEqual(edge());
}); });
it("forbids adding a node with existing address and different contents", () => { it("forbids adding a node with existing address and different contents", () => {
expect(() => expect(() =>
demoData.simpleMealGraph().addNode({ demoData.mealGraph().addNode({
address: demoData.crabNode().address, address: demoData.crabNode().address,
payload: {anotherCrab: true}, payload: {anotherCrab: true},
}) })
@ -269,14 +269,14 @@ describe("graph", () => {
}); });
it("adding a node redundantly is a no-op", () => { it("adding a node redundantly is a no-op", () => {
const simple1 = demoData.simpleMealGraph(); const simple1 = demoData.mealGraph();
const simple2 = demoData.simpleMealGraph().addNode(demoData.heroNode()); const simple2 = demoData.mealGraph().addNode(demoData.heroNode());
expect(simple1.equals(simple2)).toBe(true); expect(simple1.equals(simple2)).toBe(true);
}); });
it("forbids adding an edge with existing address and different contents", () => { it("forbids adding an edge with existing address and different contents", () => {
expect(() => expect(() =>
demoData.simpleMealGraph().addEdge({ demoData.mealGraph().addEdge({
address: demoData.cookEdge().address, address: demoData.cookEdge().address,
src: demoData.crabNode().address, src: demoData.crabNode().address,
dst: demoData.crabNode().address, dst: demoData.crabNode().address,
@ -286,13 +286,13 @@ describe("graph", () => {
}); });
it("adding an edge redundantly is a no-op", () => { it("adding an edge redundantly is a no-op", () => {
const simple1 = demoData.simpleMealGraph(); const simple1 = demoData.mealGraph();
const simple2 = demoData.simpleMealGraph().addEdge(demoData.cookEdge()); const simple2 = demoData.mealGraph().addEdge(demoData.cookEdge());
expect(simple1.equals(simple2)).toBe(true); expect(simple1.equals(simple2)).toBe(true);
}); });
it("allows creating self-loops", () => { it("allows creating self-loops", () => {
const g = demoData.simpleMealGraph(); const g = demoData.mealGraph();
g.addEdge(demoData.crabLoopEdge()); g.addEdge(demoData.crabLoopEdge());
expect( expect(
g g
@ -312,7 +312,7 @@ describe("graph", () => {
}); });
it("allows creating multiple edges between the same nodes", () => { it("allows creating multiple edges between the same nodes", () => {
const g = demoData.simpleMealGraph(); const g = demoData.mealGraph();
g.addEdge(demoData.duplicateCookEdge()); g.addEdge(demoData.duplicateCookEdge());
[demoData.cookEdge(), demoData.duplicateCookEdge()].forEach((e) => { [demoData.cookEdge(), demoData.duplicateCookEdge()].forEach((e) => {
expect( expect(
@ -329,7 +329,7 @@ describe("graph", () => {
// the namespaces to be forced to be disjoint. In that case, we can // the namespaces to be forced to be disjoint. In that case, we can
// certainly change these tests. // certainly change these tests.
it("allows adding an edge with an existing node's address", () => { it("allows adding an edge with an existing node's address", () => {
demoData.simpleMealGraph().addEdge({ demoData.mealGraph().addEdge({
address: demoData.crabNode().address, address: demoData.crabNode().address,
src: demoData.crabNode().address, src: demoData.crabNode().address,
dst: demoData.crabNode().address, dst: demoData.crabNode().address,
@ -337,7 +337,7 @@ describe("graph", () => {
}); });
}); });
it("allows adding a node with an existing edge's address", () => { it("allows adding a node with an existing edge's address", () => {
demoData.simpleMealGraph().addNode({ demoData.mealGraph().addNode({
address: demoData.cookEdge().address, address: demoData.cookEdge().address,
payload: {}, payload: {},
}); });
@ -608,9 +608,7 @@ describe("graph", () => {
}, },
]; ];
nodeAndNeighborhood.forEach(({node, neighborhood}) => { nodeAndNeighborhood.forEach(({node, neighborhood}) => {
const actual = demoData const actual = demoData.mealGraph().neighborhood(node.address);
.advancedMealGraph()
.neighborhood(node.address);
const sort = (hood) => const sort = (hood) =>
sortBy(hood, (hoodlum) => stringify(hoodlum.edge.address)); sortBy(hood, (hoodlum) => stringify(hoodlum.edge.address));
expect(sort(actual)).toEqual(sort(neighborhood)); expect(sort(actual)).toEqual(sort(neighborhood));
@ -633,7 +631,7 @@ describe("graph", () => {
]; ];
nodeAndExpectedEdgePairs.forEach(([node, expectedEdges]) => { nodeAndExpectedEdgePairs.forEach(([node, expectedEdges]) => {
const actual = demoData const actual = demoData
.advancedMealGraph() .mealGraph()
.neighborhood(node.address, {direction: "OUT"}) .neighborhood(node.address, {direction: "OUT"})
.map(({edge}) => edge); .map(({edge}) => edge);
expectSameSorted(actual, expectedEdges); expectSameSorted(actual, expectedEdges);
@ -660,7 +658,7 @@ describe("graph", () => {
]; ];
nodeAndExpectedEdgePairs.forEach(([node, expectedEdges]) => { nodeAndExpectedEdgePairs.forEach(([node, expectedEdges]) => {
const actual = demoData const actual = demoData
.advancedMealGraph() .mealGraph()
.neighborhood(node.address, {direction: "IN"}) .neighborhood(node.address, {direction: "IN"})
.map(({edge}) => edge); .map(({edge}) => edge);
expectSameSorted(actual, expectedEdges); expectSameSorted(actual, expectedEdges);
@ -669,7 +667,7 @@ describe("graph", () => {
it("gets empty out-edges for a nonexistent node", () => { it("gets empty out-edges for a nonexistent node", () => {
const result = demoData const result = demoData
.simpleMealGraph() .mealGraph()
.neighborhood(demoData.makeAddress("hinox", "NPC"), { .neighborhood(demoData.makeAddress("hinox", "NPC"), {
direction: "OUT", direction: "OUT",
}); });
@ -678,7 +676,7 @@ describe("graph", () => {
it("gets empty in-edges for a nonexistent node", () => { it("gets empty in-edges for a nonexistent node", () => {
const result = demoData const result = demoData
.simpleMealGraph() .mealGraph()
.neighborhood(demoData.makeAddress("hinox", "NPC"), { .neighborhood(demoData.makeAddress("hinox", "NPC"), {
direction: "IN", direction: "IN",
}); });
@ -709,7 +707,7 @@ describe("graph", () => {
it("has in-edges for deleted node with dangling edge", () => { it("has in-edges for deleted node with dangling edge", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addNode(danglingSrc()) .addNode(danglingSrc())
.addNode(danglingDst()) .addNode(danglingDst())
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
@ -723,7 +721,7 @@ describe("graph", () => {
it("has out-edges for deleted node with dangling edge", () => { it("has out-edges for deleted node with dangling edge", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addNode(danglingSrc()) .addNode(danglingSrc())
.addNode(danglingDst()) .addNode(danglingDst())
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
@ -737,7 +735,7 @@ describe("graph", () => {
it("has lack of in-edges for deleted edge", () => { it("has lack of in-edges for deleted edge", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addNode(danglingSrc()) .addNode(danglingSrc())
.addNode(danglingDst()) .addNode(danglingDst())
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
@ -750,7 +748,7 @@ describe("graph", () => {
it("has lack of out-edges for deleted edge", () => { it("has lack of out-edges for deleted edge", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addNode(danglingSrc()) .addNode(danglingSrc())
.addNode(danglingDst()) .addNode(danglingDst())
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
@ -762,7 +760,7 @@ describe("graph", () => {
}); });
it("has in-edges for non-existent node with dangling edge", () => { it("has in-edges for non-existent node with dangling edge", () => {
const g = demoData.simpleMealGraph().addEdge(fullyDanglingEdge()); const g = demoData.mealGraph().addEdge(fullyDanglingEdge());
const inEdges = g const inEdges = g
.neighborhood(fullyDanglingEdge().dst, {direction: "IN"}) .neighborhood(fullyDanglingEdge().dst, {direction: "IN"})
.map(({edge}) => edge); .map(({edge}) => edge);
@ -770,7 +768,7 @@ describe("graph", () => {
}); });
it("has out-edges for non-existent node with dangling edge", () => { it("has out-edges for non-existent node with dangling edge", () => {
const g = demoData.simpleMealGraph().addEdge(fullyDanglingEdge()); const g = demoData.mealGraph().addEdge(fullyDanglingEdge());
const outEdges = g const outEdges = g
.neighborhood(fullyDanglingEdge().src, {direction: "OUT"}) .neighborhood(fullyDanglingEdge().src, {direction: "OUT"})
.map(({edge}) => edge); .map(({edge}) => edge);
@ -779,7 +777,7 @@ describe("graph", () => {
it("has in-edges that were added before their endpoints", () => { it("has in-edges that were added before their endpoints", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
.addNode(danglingDst()); .addNode(danglingDst());
const inEdges = g const inEdges = g
@ -790,7 +788,7 @@ describe("graph", () => {
it("has out-edges that were added before their endpoints", () => { it("has out-edges that were added before their endpoints", () => {
const g = demoData const g = demoData
.simpleMealGraph() .mealGraph()
.addEdge(fullyDanglingEdge()) .addEdge(fullyDanglingEdge())
.addNode(danglingSrc()); .addNode(danglingSrc());
const outEdges = g const outEdges = g
@ -802,7 +800,7 @@ describe("graph", () => {
}); });
describe("when adding edges multiple times", () => { describe("when adding edges multiple times", () => {
const originalGraph = () => demoData.advancedMealGraph(); const originalGraph = () => demoData.mealGraph();
const taredge = () => demoData.crabLoopEdge(); const taredge = () => demoData.crabLoopEdge();
const modifiedGraph = () => { const modifiedGraph = () => {
const g = originalGraph(); const g = originalGraph();
@ -841,23 +839,17 @@ describe("graph", () => {
describe("#equals", () => { describe("#equals", () => {
it("returns true for identity-equal graphs", () => { it("returns true for identity-equal graphs", () => {
const g = demoData.advancedMealGraph(); const g = demoData.mealGraph();
expect(g.equals(g)).toBe(true); expect(g.equals(g)).toBe(true);
}); });
it("returns true for deep-equal graphs", () => { it("returns true for deep-equal graphs", () => {
expect( expect(demoData.mealGraph().equals(demoData.mealGraph())).toBe(true);
demoData.advancedMealGraph().equals(demoData.advancedMealGraph())
).toBe(true);
}); });
it("returns false when the LHS has nodes missing in the RHS", () => { it("returns false when the LHS has nodes missing in the RHS", () => {
expect( expect(demoData.mealGraph().equals(new Graph())).toBe(false);
demoData.advancedMealGraph().equals(demoData.simpleMealGraph())
).toBe(false);
}); });
it("returns false when the RHS has nodes missing in the LHS", () => { it("returns false when the RHS has nodes missing in the LHS", () => {
expect( expect(new Graph().equals(demoData.mealGraph())).toBe(false);
demoData.simpleMealGraph().equals(demoData.advancedMealGraph())
).toBe(false);
}); });
const extraNode1 = () => ({ const extraNode1 = () => ({
address: demoData.makeAddress("octorok", "NPC"), address: demoData.makeAddress("octorok", "NPC"),
@ -868,13 +860,13 @@ describe("graph", () => {
payload: {status: "sleeping"}, payload: {status: "sleeping"},
}); });
it("returns false when the LHS has edges missing in the RHS", () => { it("returns false when the LHS has edges missing in the RHS", () => {
const g1 = demoData.advancedMealGraph(); const g1 = demoData.mealGraph();
const g2 = demoData.advancedMealGraph().addNode(extraNode1()); const g2 = demoData.mealGraph().addNode(extraNode1());
expect(g1.equals(g2)).toBe(false); expect(g1.equals(g2)).toBe(false);
}); });
it("returns false when the LHS has edges missing in the RHS", () => { it("returns false when the LHS has edges missing in the RHS", () => {
const g1 = demoData.advancedMealGraph().addNode(extraNode1()); const g1 = demoData.mealGraph().addNode(extraNode1());
const g2 = demoData.advancedMealGraph(); const g2 = demoData.mealGraph();
expect(g1.equals(g2)).toBe(false); expect(g1.equals(g2)).toBe(false);
}); });
it("returns true when nodes are added in different orders", () => { it("returns true when nodes are added in different orders", () => {
@ -945,25 +937,25 @@ describe("graph", () => {
it("recomposes a neighborhood decomposition", () => { it("recomposes a neighborhood decomposition", () => {
const result = Graph.mergeConservative( const result = Graph.mergeConservative(
neighborhoodDecomposition(demoData.advancedMealGraph()) neighborhoodDecomposition(demoData.mealGraph())
); );
expect(result.equals(demoData.advancedMealGraph())).toBe(true); expect(result.equals(demoData.mealGraph())).toBe(true);
}); });
it("recomposes an edge decomposition", () => { it("recomposes an edge decomposition", () => {
const result = edgeDecomposition(demoData.advancedMealGraph()).reduce( const result = edgeDecomposition(demoData.mealGraph()).reduce(
(g1, g2) => Graph.mergeConservative([g1, g2]), (g1, g2) => Graph.mergeConservative([g1, g2]),
new Graph() new Graph()
); );
expect(result.equals(demoData.advancedMealGraph())).toBe(true); expect(result.equals(demoData.mealGraph())).toBe(true);
}); });
it("merges a graph with itself", () => { it("merges a graph with itself", () => {
const result = Graph.mergeConservative([ const result = Graph.mergeConservative([
demoData.advancedMealGraph(), demoData.mealGraph(),
demoData.advancedMealGraph(), demoData.mealGraph(),
]); ]);
expect(result.equals(demoData.advancedMealGraph())).toBe(true); expect(result.equals(demoData.mealGraph())).toBe(true);
}); });
it("rejects a graph with conflicting nodes", () => { it("rejects a graph with conflicting nodes", () => {
@ -1000,36 +992,36 @@ describe("graph", () => {
}); });
it("is the identity on a singleton list", () => { it("is the identity on a singleton list", () => {
const merged = Graph.mergeConservative([demoData.advancedMealGraph()]); const merged = Graph.mergeConservative([demoData.mealGraph()]);
expect(merged.equals(demoData.advancedMealGraph())).toBe(true); expect(merged.equals(demoData.mealGraph())).toBe(true);
}); });
it("has the empty graph as a left identity", () => { it("has the empty graph as a left identity", () => {
const merged = Graph.mergeConservative([ const merged = Graph.mergeConservative([
new Graph(), new Graph(),
demoData.advancedMealGraph(), demoData.mealGraph(),
]); ]);
expect(merged.equals(demoData.advancedMealGraph())).toBe(true); expect(merged.equals(demoData.mealGraph())).toBe(true);
}); });
it("has the empty graph as a right identity", () => { it("has the empty graph as a right identity", () => {
const merged = Graph.mergeConservative([ const merged = Graph.mergeConservative([
demoData.advancedMealGraph(), demoData.mealGraph(),
new Graph(), new Graph(),
]); ]);
expect(merged.equals(demoData.advancedMealGraph())).toBe(true); expect(merged.equals(demoData.mealGraph())).toBe(true);
}); });
}); });
describe("JSON functions", () => { describe("JSON functions", () => {
it("should serialize a simple graph", () => { it("should serialize a simple graph", () => {
expect(demoData.advancedMealGraph().toJSON()).toMatchSnapshot(); expect(demoData.mealGraph().toJSON()).toMatchSnapshot();
}); });
it("should work transparently with JSON.stringify", () => { it("should work transparently with JSON.stringify", () => {
// (This is guaranteed by the `JSON.stringify` API, and is more // (This is guaranteed by the `JSON.stringify` API, and is more
// as documentation than actual test.) // as documentation than actual test.)
expect(JSON.stringify(demoData.advancedMealGraph())).toEqual( expect(JSON.stringify(demoData.mealGraph())).toEqual(
JSON.stringify(demoData.advancedMealGraph().toJSON()) JSON.stringify(demoData.mealGraph().toJSON())
); );
}); });
it("should canonicalize away phantom nodes", () => { it("should canonicalize away phantom nodes", () => {
@ -1064,11 +1056,11 @@ describe("graph", () => {
expect(g1.toJSON()).toEqual(g2.toJSON()); expect(g1.toJSON()).toEqual(g2.toJSON());
}); });
it("should no-op on a serialization--deserialization roundtrip", () => { it("should no-op on a serialization--deserialization roundtrip", () => {
const g = () => demoData.advancedMealGraph(); const g = () => demoData.mealGraph();
expect(Graph.fromJSON(g().toJSON()).equals(g())).toBe(true); expect(Graph.fromJSON(g().toJSON()).equals(g())).toBe(true);
}); });
it("should no-op on a deserialization--serialization roundtrip", () => { it("should no-op on a deserialization--serialization roundtrip", () => {
const json = () => demoData.advancedMealGraph().toJSON(); const json = () => demoData.mealGraph().toJSON();
expect(Graph.fromJSON(json()).toJSON()).toEqual(json()); expect(Graph.fromJSON(json()).toJSON()).toEqual(json());
}); });
}); });
@ -1121,7 +1113,7 @@ describe("graph", () => {
describe("copy", () => { describe("copy", () => {
it("separates references from the original", () => { it("separates references from the original", () => {
const g1 = demoData.advancedMealGraph(); const g1 = demoData.mealGraph();
const g2 = g1.copy(); const g2 = g1.copy();
const newNode = () => ({ const newNode = () => ({
address: demoData.makeAddress("brand-new", "EXPERIMENT"), address: demoData.makeAddress("brand-new", "EXPERIMENT"),
@ -1133,10 +1125,10 @@ describe("graph", () => {
}); });
it("yields a result equal to the original", () => { it("yields a result equal to the original", () => {
const g1 = demoData.advancedMealGraph(); const g1 = demoData.mealGraph();
const g2 = g1.copy(); const g2 = g1.copy();
expect(g1.equals(g2)).toBe(true); expect(g1.equals(g2)).toBe(true);
expect(g1.equals(demoData.advancedMealGraph())).toBe(true); expect(g1.equals(demoData.mealGraph())).toBe(true);
}); });
}); });
}); });

View File

@ -76,18 +76,6 @@ export const eatEdge = () => ({
dst: mealNode().address, dst: mealNode().address,
payload: {}, payload: {},
}); });
export const simpleMealGraph = () =>
new Graph()
.addNode(heroNode())
.addNode(bananasNode())
.addNode(crabNode())
.addNode(mealNode())
.addEdge(pickEdge())
.addEdge(grabEdge())
.addEdge(cookEdge())
.addEdge(bananasIngredientEdge())
.addEdge(crabIngredientEdge())
.addEdge(eatEdge());
export const crabLoopEdge = () => ({ export const crabLoopEdge = () => ({
address: makeAddress("crab-self-assessment", "SILLY"), address: makeAddress("crab-self-assessment", "SILLY"),
@ -109,7 +97,7 @@ export const duplicateCookEdge = () => ({
}, },
}); });
// This node is added to and then removed from the advanced meal graph. // This node is added to and then removed from the meal graph.
export const phantomNode = () => ({ export const phantomNode = () => ({
address: makeAddress("restless_cricket#9", "EXPERIMENT"), address: makeAddress("restless_cricket#9", "EXPERIMENT"),
payload: {}, payload: {},
@ -122,8 +110,18 @@ export const nullPayloadNode = () => ({
payload: null, payload: null,
}); });
export const advancedMealGraph = () => export const mealGraph = () =>
simpleMealGraph() new Graph()
.addNode(heroNode())
.addNode(bananasNode())
.addNode(crabNode())
.addNode(mealNode())
.addEdge(pickEdge())
.addEdge(grabEdge())
.addEdge(cookEdge())
.addEdge(bananasIngredientEdge())
.addEdge(crabIngredientEdge())
.addEdge(eatEdge())
.addEdge(crabLoopEdge()) .addEdge(crabLoopEdge())
.addEdge(duplicateCookEdge()) .addEdge(duplicateCookEdge())
.addNode(phantomNode()) .addNode(phantomNode())

View File

@ -4,7 +4,7 @@ import {NodePorcelain, NodeReference} from "./porcelain";
import * as demoData from "./graphDemoData"; import * as demoData from "./graphDemoData";
function exampleStuff() { function exampleStuff() {
const graph = demoData.advancedMealGraph(); const graph = demoData.mealGraph();
const heroNode = demoData.heroNode(); const heroNode = demoData.heroNode();
const heroReference = new NodeReference(graph, heroNode.address); const heroReference = new NodeReference(graph, heroNode.address);
const heroPorcelain = new NodePorcelain(heroReference, heroNode); const heroPorcelain = new NodePorcelain(heroReference, heroNode);