m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/__tests__/lexer.test.js
blob: 20d461fb4484d0cb66041d64ee349c8561ce72a5 (plain)
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
const { lex } = require('../src/lexer.js')

describe('lex', () => {
  it('lexes the empty string', () => {
    expect(lex('')).toEqual([])
  })

  it('signals an error on unexpected input', () => {
    expect(lex('q')).toBe('error')
  })

  describe('basic dice', () => {
    it('1d6', () => {
      expect(lex('1d6')).toEqual([
        { type: 'number', value: 1 },
        { type: 'd' },
        { type: 'number', value: 6 }
      ])
    })

    it('42d172', () => {
      expect(lex('42d172')).toEqual([
        { type: 'number', value: 42 },
        { type: 'd' },
        { type: 'number', value: 172 }
      ])
    })
  })
})