-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbool_test.go
More file actions
76 lines (67 loc) · 2.62 KB
/
Copy pathbool_test.go
File metadata and controls
76 lines (67 loc) · 2.62 KB
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
// 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("Bool", func() {
var p = terminal.Bool("bool", "true", "false")
Context("when called with an empty true/false value", func() {
It("should panic", func() {
Expect(func() { terminal.Bool("bool", "", "false") }).To(Panic())
Expect(func() { terminal.Bool("bool", "true", "") }).To(Panic())
})
})
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("BOOL"))
Expect(res.Schema()).To(Equal("bool"))
Expect(res.(parsley.LiteralNode).Value()).To(Equal(value))
Expect(res.Pos()).To(Equal(nodePos))
Expect(res.ReaderPos()).To(Equal(f.Pos(endPos)))
},
Entry("true beginning", "true ---", 0, true, parsley.Pos(1), 4),
Entry("false beginning", "false ---", 0, false, parsley.Pos(1), 5),
Entry("true middle", "--- true ---", 4, true, parsley.Pos(5), 8),
Entry("false middle", "--- false ---", 4, false, parsley.Pos(5), 9),
Entry("true end", "--- true", 4, true, parsley.Pos(5), 8),
Entry("false end", "--- false", 4, false, parsley.Pos(5), 9),
)
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 boolean"))
Expect(err.Pos()).To(Equal(f.Pos(startPos)))
Expect(res).To(BeNil())
},
Entry("empty", "", 0),
Entry("truex", "truex", 0),
Entry("falsex", "falsex", 0),
Entry("tru", "tru", 0),
Entry("fals", "fals", 0),
Entry("True", "True", 0),
Entry("False", "False", 0),
)
})