aboutsummaryrefslogtreecommitdiff
path: root/tests/parser.spec.ts
blob: 8a53faf645d6fddcbfd793b2b3aff59fe2919462 (plain) (blame)
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
import { left, right } from 'fp-ts/Either'
import {
  digits,
  whitespace,
  whitespaces0,
  delimited,
} from '../src/parser/utils'
import { parser } from '../src/parser'
import { none, some } from 'fp-ts/Option'
import { Expr, Literal } from '../src/types'

const wrap = (e: Expr) => right([[none, e, none], ''])
const grouped = (l: Expr[]) => wrap(Expr.Group({ exprs: l }))
const groupedAlt = (l: Expr[]) => wrap(Expr.Or({ exprs: l }))

describe('Parser', () => {
  it('should do shit', () => {
    // jlog(parser(/ -2.05|\n2|true|\s|\T /.source))
  })

  it('should do shit', () => {
    expect(digits('12901')).toEqual(right(['12901', '']))
    expect(digits('12901asas')).toEqual(right(['12901', 'asas']))
    expect(whitespace(' ')).toEqual(right([' ', '']))
    expect(whitespace('\n')).toEqual(right(['\n', '']))
    expect(whitespace('a')).toEqual(left(['unable to match', 'a']))

    expect(delimited(whitespaces0, digits, whitespaces0)(' 20 ')).toEqual(
      right(['20', '']),
    )
    expect(delimited(whitespaces0, digits, whitespaces0)(' 2 0 ')).toEqual(
      right(['2', '0 ']),
    )
  })

  it('should compount expressions', () => {
    expect(parser(/^ .\s(\n\b)  \T $/.source)).toEqual(
      right([
        [
          some(Expr.Start()),
          Expr.Group({
            exprs: [
              Expr.AnyItem(),
              Expr.AnyString(),
              Expr.Group({ exprs: [Expr.AnyNumber(), Expr.AnyBool()] }),
              Expr.Truthy(),
            ],
          }),
          some(Expr.End()),
        ],
        '',
      ]),
    )

    expect(parser(/^ \s* \T? \n+ $/.source)).toEqual(
      right([
        [
          some(Expr.Start()),
          Expr.Group({
            exprs: [
              Expr.ZeroOrMore({ expr: Expr.AnyString() }),
              Expr.Optional({ expr: Expr.Truthy() }),
              Expr.OneOrMore({ expr: Expr.AnyNumber() }),
            ],
          }),
          some(Expr.End()),
        ],
        '',
      ]),
    )
  })

  it('should or expressions', () => {
    expect(parser(/ \s|\b\T|\n /.source)).toEqual(
      groupedAlt([
        Expr.AnyString(),
        Expr.Group({ exprs: [Expr.AnyBool(), Expr.Truthy()] }),
        Expr.AnyNumber(),
      ]),
    )
    expect(parser(/ ((\s|\b\T)|\n) /.source)).toEqual(
      groupedAlt([
        Expr.Or({
          exprs: [
            Expr.AnyString(),
            Expr.Group({ exprs: [Expr.AnyBool(), Expr.Truthy()] }),
          ],
        }),
        Expr.AnyNumber(),
      ]),
    )
  })

  it('object proprtyu', () => {
    expect(parser(/ [name \s\T] [age \n] /.source)).toEqual(
      grouped([
        Expr.PropertyMatch({
          name: 'name',
          expr: Expr.Group({ exprs: [Expr.AnyString(), Expr.Truthy()] }),
        }),
        Expr.PropertyMatch({
          name: 'age',
          expr: Expr.AnyNumber(),
        }),
      ]),
    )
  })

  it('literals', () => {
    // unsigned numbers
    expect(parser(/ 0.105 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(0.105))),
    )
    expect(parser(/ 9 /.source)).toEqual(wrap(Expr.Literal(Literal.Number(9))))
    expect(parser(/ 23 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(23))),
    )

    // signed numbers
    expect(parser(/ +23.025 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(23.025))),
    )
    expect(parser(/ -23.025 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(-23.025))),
    )
    expect(parser(/ +23 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(23))),
    )
    expect(parser(/ -23 /.source)).toEqual(
      wrap(Expr.Literal(Literal.Number(-23))),
    )

    // boolean
    expect(parser(/ true /.source)).toEqual(
      wrap(Expr.Literal(Literal.Boolean(true))),
    )
    expect(parser(/ false /.source)).toEqual(
      wrap(Expr.Literal(Literal.Boolean(false))),
    )
  })

  it('sequence of values', () => {
    expect(parser(/true, \s\T, \n/.source)).toEqual(
      wrap(
        Expr.Sequence({
          exprs: [
            Expr.Literal(Literal.Boolean(true)),
            Expr.Group({ exprs: [Expr.AnyString(), Expr.Truthy()] }),
            Expr.AnyNumber(),
          ],
        }),
      ),
    )
  })
})