-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtree-tools-test.js
139 lines (123 loc) · 2.21 KB
/
tree-tools-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import { filterTree, mapTree } from "../libs/tree-tools.js";
describe("mapTree", () => {
it("maps a tree", async () => {
const t = {
foo: {
bar: 1
},
baz: 2,
qux: {
ist: {
ber: 3
},
eld: 4
},
eth: {
el: 5
},
zod: 6
};
const result = mapTree(t, v => String.fromCharCode(v + 64));
expect(result.foo.bar).toBe("A");
expect(result.baz).toBe("B");
expect(result.qux.ist.ber).toBe("C");
expect(result.qux.eld).toBe("D");
expect(result.eth.el).toBe("E");
expect(result.zod).toBe("F");
});
it("maps a tree and keys", async () => {
const t = {
foo: {
bar: 1
},
baz: 2,
qux: {
ist: {
ber: 3
},
eld: 4
},
eth: {
el: 5
},
zod: 6
};
const result = mapTree(t, v => String.fromCharCode(v + 64), x => "$" + x);
expect(result.$foo.$bar).toBe("A");
expect(result.$baz).toBe("B");
expect(result.$qux.$ist.$ber).toBe("C");
expect(result.$qux.$eld).toBe("D");
expect(result.$eth.$el).toBe("E");
expect(result.$zod).toBe("F");
});
it("maps a tree with keys and paths", async () => {
const t = {
foo: {
bar: 1
},
baz: 2,
qux: {
ist: {
ber: 3
},
eld: 4
},
eth: {
el: 5
},
zod: 6
};
const result = mapTree(t, (v, k, p) => p.join(".") + "." + k);
expect(result.foo.bar).toBe("foo.bar");
expect(result.baz).toBe(".baz");
expect(result.qux.ist.ber).toBe("qux.ist.ber");
expect(result.qux.eld).toBe("qux.eld");
expect(result.eth.el).toBe("eth.el");
expect(result.zod).toBe(".zod");
});
});
describe("filterTree", () => {
it("filters a tree (shallow)", () => {
const t = {
foo: 1,
bar: 2
};
const result = filterTree(t, x => x === 1);
expect(result).toEqual({
foo: 1
});
});
it("filters a tree (deep)", () => {
const t = {
foo: 1,
bar: 2,
baz: {
el: 3,
eld: 4
}
};
const result = filterTree(t, x => x !== 3);
expect(result).toEqual({
foo: 1,
bar: 2,
baz: {
eld: 4
}
});
});
it("filters a tree (removed node)", () => {
const t = {
foo: 1,
bar: 2,
baz: {
el: 3,
eld: 4
}
};
const result = filterTree(t, x => x < 3);
expect(result).toEqual({
foo: 1,
bar: 2
});
});
});