-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmath.spec.ts
294 lines (270 loc) · 9.6 KB
/
math.spec.ts
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
import {
BinaryOperation,
evaluate,
expression,
NumberLiteral,
product,
sum,
unary,
UnaryOperation,
value
} from "@examples/math";
describe("value parser", () => {
it("can parse 1", () => {
expect(value.parse("1 ")).toBeSuccessful(new NumberLiteral(1));
});
it("can parse an expression in parentheses", () => {
expect(value.parse("( 1 ) ")).toBeSuccessful(new NumberLiteral(1));
});
});
describe("unary parser", () => {
it("can parse a negation expression", () => {
const expected = new UnaryOperation("-", new NumberLiteral(1));
expect(unary.parse("-1 ")).toBeSuccessful(expected);
});
});
describe("product parser", () => {
describe("single", () => {
it("can parse *", () => {
const expected = new BinaryOperation(new NumberLiteral(1), "*", new NumberLiteral(2));
expect(product().parse("1 * 2 ")).toBeSuccessful(expected);
});
it("can parse /", () => {
const expected = new BinaryOperation(new NumberLiteral(1), "/", new NumberLiteral(2));
expect(product().parse("1 / 2 ")).toBeSuccessful(expected);
});
it("can parse %", () => {
const expected = new BinaryOperation(new NumberLiteral(1), "%", new NumberLiteral(2));
expect(product().parse("1 % 2 ")).toBeSuccessful(expected);
});
});
describe("multiple", () => {
it("can parse *", () => {
const expected = new BinaryOperation(
new BinaryOperation(new NumberLiteral(1), "*", new NumberLiteral(2)),
"*",
new NumberLiteral(3)
);
expect(product().parse("1 * 2 * 3 ")).toBeSuccessful<BinaryOperation>(expected);
});
it("can parse /", () => {
const expected = new BinaryOperation(
new BinaryOperation(new NumberLiteral(1), "/", new NumberLiteral(2)),
"/",
new NumberLiteral(3)
);
expect(product().parse("1 /2 / 3 ")).toBeSuccessful(expected);
});
it("can parse %", () => {
const expected = new BinaryOperation(
new BinaryOperation(new NumberLiteral(1), "%", new NumberLiteral(2)),
"%",
new NumberLiteral(3)
);
expect(product().parse("1%2%3")).toBeSuccessful(expected);
});
});
});
describe("sum parser", () => {
describe("single", () => {
it("can parse +", () => {
const expected = new BinaryOperation(new NumberLiteral(1), "+", new NumberLiteral(2));
expect(sum().parse("1 + 2 ")).toBeSuccessful(expected);
});
it("can parse -", () => {
const expected = new BinaryOperation(new NumberLiteral(1), "-", new NumberLiteral(2));
expect(sum().parse("1 - 2 ")).toBeSuccessful(expected);
});
});
describe("multiple", () => {
it("can parse +", () => {
const expected = new BinaryOperation(
new BinaryOperation(new NumberLiteral(1), "+", new NumberLiteral(2)),
"+",
new NumberLiteral(3)
);
expect(sum().parse("1 + 2 + 3")).toBeSuccessful(expected);
});
it("can parse -", () => {
const expected = new BinaryOperation(
new BinaryOperation(new NumberLiteral(1), "-", new NumberLiteral(2)),
"-",
new NumberLiteral(3)
);
expect(sum().parse("1 - 2 - 3 ")).toBeSuccessful(expected);
});
});
});
describe("expression parser", () => {
it("can parse a number", () => {
expect(expression.parse("1")).toBeSuccessful(new NumberLiteral(1));
});
const leftExpression = new BinaryOperation(
new NumberLiteral(1),
"+",
new BinaryOperation(new NumberLiteral(2), "/", new NumberLiteral(3))
);
it("can parse a mixed expression of sums and products", () => {
expect(expression.parse("1+ 2/ 3")).toBeSuccessful(leftExpression);
});
it("can parse 1+2/3-4*5", () => {
const expected = new BinaryOperation(
leftExpression,
"-",
new BinaryOperation(new NumberLiteral(4), "*", new NumberLiteral(5))
);
expect(expression.parse("1+2/ 3-4*5")).toBeSuccessful(expected);
});
});
describe("evaluation", () => {
it("can evaluate a complex expression", () => {
expect(evaluate("3+(5*2)-4/2")).toBe(11);
});
it("calculates the correct result when parentheses are used", () => {
expect(evaluate("3+(5*( 2 -4) )/ 2")).toBe(-2);
});
it("can evaluate %", () => {
expect(evaluate("3%2")).toBe(1);
});
it("can evaluate unary -", () => {
expect(evaluate("-3")).toBe(-3);
});
it("can evaluate unary with the correct precedence", () => {
expect(evaluate("(- (3 +-0))*2")).toBe(-6);
});
it("can parse a complex expression from the bug report", () => {
// this expression was reported to fail in the bug report:
// https://github.com/GregRos/parjs/issues/27
expect(evaluate("( 1 + 2 ) * 2 * 2+( 3 * 5 ) / 2 / 2 + 0.25")).toBe(16);
});
it("displays an error message if the expression is invalid", () => {
// the different parsers' expectations are combined into a single error
// message. Without the "expects" calls, the error message would be much
// more difficult to understand.
expect(() => evaluate("1 + 2 +")).toThrowErrorMatchingInlineSnapshot(`
"Failed to parse expression '1 + 2 +': {
"trace": {
"userState": {},
"position": 7,
"reason": "expecting '-' OR expecting a floating-point number OR expecting '('",
"input": "1 + 2 +",
"location": {
"line": 0,
"column": 7
},
"stackTrace": [
{
"type": "string",
"expecting": "expecting '-'"
},
{
"type": "then",
"expecting": "expecting '-'"
},
{
"type": "map",
"expecting": "expecting '-'"
},
{
"type": "then",
"expecting": "expecting '-'"
},
{
"type": "map",
"expecting": "expecting '-'"
},
{
"type": "float",
"expecting": "expecting a floating-point number"
},
{
"type": "then",
"expecting": "expecting a floating-point number"
},
{
"type": "map",
"expecting": "expecting a floating-point number"
},
{
"type": "map",
"expecting": "expecting a floating-point number"
},
{
"type": "then",
"expecting": "expecting a floating-point number"
},
{
"type": "map",
"expecting": "expecting a floating-point number"
},
{
"type": "string",
"expecting": "expecting '('"
},
{
"type": "then",
"expecting": "expecting '('"
},
{
"type": "map",
"expecting": "expecting '('"
},
{
"type": "then",
"expecting": "expecting '('"
},
{
"type": "map",
"expecting": "expecting '('"
},
{
"type": "then",
"expecting": "expecting '('"
},
{
"type": "map",
"expecting": "an expression in parentheses"
},
{
"type": "or",
"expecting": "value"
},
{
"type": "or",
"expecting": "a unary expression"
},
{
"type": "then",
"expecting": "a unary expression"
},
{
"type": "map",
"expecting": "product"
},
{
"type": "then",
"expecting": "expecting one of: 'expecting '+'' (string), 'expecting '-'' (string)"
},
{
"type": "many",
"expecting": "expecting one of: 'expecting '+'' (string), 'expecting '-'' (string)"
},
{
"type": "then",
"expecting": "product"
},
{
"type": "map",
"expecting": "expression"
},
{
"type": "later",
"expecting": "expression"
}
],
"kind": "Hard"
}
}"
`);
});
});