-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.js
135 lines (103 loc) · 2.79 KB
/
tests.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
var assert = require("node:assert");
var nodeTest = require("node:test");
var SymbolTable = require("./");
var SymbolTableStack = require("./stack");
// stub for https://www.npmjs.com/package/tape
function test(name, fn) {
nodeTest(name, function () {
fn({
equals: assert.equal,
ok: assert.ok,
notOk: function (ok) {
assert.ok(!ok);
},
end: function () {},
});
});
};
test("it", function(t){
var s0 = SymbolTable();
s0.set("a", 1);
s0.set("b", 2);
t.equals(s0.has("a"), true);
t.equals(s0.has("b"), true);
t.equals(s0.has("c"), false);
t.equals(s0.get("a"), 1);
t.equals(s0.get("b"), 2);
t.equals(s0.get("c"), undefined);
var s1 = s0.push();
s1.set("b", 200);
s1.set("c", 300);
t.equals(s1.has("a"), true);
t.equals(s1.has("b"), true);
t.equals(s1.has("c"), true);
t.equals(s1.has("d"), false);
t.equals(s1.get("a"), 1);
t.equals(s1.get("b"), 200);
t.equals(s1.get("c"), 300);
t.equals(s1.get("d"), undefined);
t.equals(s0.get("b"), 2);
t.equals(s0.has("c"), false);
t.equals(s0.get("c"), undefined);
t.end();
});
test("unset", function(t){
var s0 = SymbolTable();
s0.set("a", 1);
var s1 = s0.push();
s1.set("a", 10);
t.equals(s0.get("a"), 1);
t.equals(s1.get("a"), 10);
s0.unset("a");
t.equals(s0.has("a"), false);
t.equals(s0.get("a"), undefined);
t.equals(s1.has("a"), true);
t.equals(s1.get("a"), 10);
t.end();
});
test("set returns the value you just set", function(t){
var s = SymbolTable();
t.equals(s.set("a", 1), 1);
t.equals(s.set("a", 42), 42);
t.equals(s.set("a", t), t);
t.equals(s.set("a", s), s);
t.equals(s.get("a"), s);
t.end();
});
test("stack", function(t){
var s = SymbolTableStack();
t.equals(s.get("a"), void 0);
t.equals(s.set("a", 1), 1);
t.equals(s.get("a"), 1);
s.push();
t.equals(s.get("a"), 1);
t.equals(s.set("a", 2), 2);
t.equals(s.get("a"), 2);
t.ok(s.has("a"));
t.equals(s.unset("a"), void 0);
t.notOk(s.has("a"));
s.pop();
t.equals(s.get("a"), 1);
t.equals(s.height(), 1);
t.equals(s.getItsHeight("b"), void 0);
t.equals(s.set("b", 33), 33);
t.equals(s.getItsHeight("b"), 1);
s.push();
t.equals(s.getItsHeight("b"), 1);
t.equals(s.set("b", 44), 44);
t.equals(s.get("b"), 44);
t.equals(s.getItsHeight("b"), 2);
t.equals(s.height(), 2);
s.push();
t.equals(s.getItsHeight("b"), 2);
s.push();
t.equals(s.getItsHeight("b"), 2);
s.pop();
t.equals(s.getItsHeight("b"), 2);
s.pop();
t.equals(s.getItsHeight("b"), 2);
s.pop();
t.equals(s.height(), 1);
t.equals(s.get("b"), 33);
t.end();
});