-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrune_test.go
59 lines (52 loc) · 1.95 KB
/
rune_test.go
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
// Copyright (c) 2017 Opsidian Ltd.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package terminal_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
"github.com/conflowio/parsley/data"
"github.com/conflowio/parsley/parsley"
"github.com/conflowio/parsley/text"
"github.com/conflowio/parsley/text/terminal"
)
var _ = Describe("Rune", func() {
var p = terminal.Rune('+')
DescribeTable("should match",
func(input string, startPos int, value interface{}, nodePos parsley.Pos, endPos int) {
f := text.NewFile("textfile", []byte(input))
fs := parsley.NewFileSet(f)
r := text.NewReader(f)
ctx := parsley.NewContext(fs, r)
res, curtailingParsers, err := p.Parse(ctx, data.EmptyIntMap, f.Pos(startPos))
Expect(curtailingParsers).To(Equal(data.EmptyIntSet))
Expect(err).ToNot(HaveOccurred())
Expect(res.Token()).To(Equal("+"))
Expect(res.(parsley.LiteralNode).Value()).To(Equal(value))
Expect(res.Pos()).To(Equal(nodePos))
Expect(res.ReaderPos()).To(Equal(f.Pos(endPos)))
},
Entry(`+ beginning`, `+ ---`, 0, '+', parsley.Pos(1), 1),
Entry(`+ middle`, `--- + ---`, 4, '+', parsley.Pos(5), 5),
Entry(`+ end`, `--- +`, 4, '+', parsley.Pos(5), 5),
)
DescribeTable("should not match",
func(input string, startPos int) {
f := text.NewFile("textfile", []byte(input))
fs := parsley.NewFileSet(f)
r := text.NewReader(f)
ctx := parsley.NewContext(fs, r)
res, curtailingParsers, err := p.Parse(ctx, data.EmptyIntMap, f.Pos(startPos))
Expect(curtailingParsers).To(Equal(data.EmptyIntSet))
Expect(err).To(HaveOccurred())
Expect(err.Cause()).To(MatchError("was expecting \"+\""))
Expect(err.Pos()).To(Equal(f.Pos(startPos)))
Expect(res).To(BeNil())
},
Entry("empty", ``, 0),
Entry("x", `x`, 0),
)
})