m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__/parser.test.js
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/parser.test.js')
-rw-r--r--__tests__/parser.test.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/__tests__/parser.test.js b/__tests__/parser.test.js
index 74ca442..f3c6e97 100644
--- a/__tests__/parser.test.js
+++ b/__tests__/parser.test.js
@@ -1,6 +1,23 @@
const { parse } = require('../src/parser.js')
describe('parse', () => {
+ describe('error handling', () => {
+ it('throws when a binary operation lacks an argument', () => {
+ expect(() => { parse('1d') }).toThrow(/Syntax error/)
+ expect(() => { parse('2+3+') }).toThrow(/Syntax error/)
+ })
+
+ it('throws when two binary operations follow each other', () => {
+ expect(() => { parse('1dd2') }).toThrow(/Syntax error/)
+ expect(() => { parse('1+d2') }).toThrow(/Syntax error/)
+ })
+
+ it('throws when two dice not combined with a binary operation', () => {
+ expect(() => { parse('(1d4)(1d6)') }).toThrow(/Syntax error/)
+ expect(() => { parse('1 2') }).toThrow(/Syntax error/)
+ })
+ })
+
it('parses a constant', () => {
expect(parse('5')).toEqual({ type: 'constant', value: 5 })
})