-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarker_test.go
128 lines (117 loc) · 2.63 KB
/
marker_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
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
package lexer
import (
"testing"
)
// expectMarkerValid
//
func expectMarkerValid(t *testing.T, m *Marker, match bool) {
if m.Valid() != match {
t.Errorf("Marker.Valid() expecting '%t'", match)
}
}
// TestMarkerUnused
//
func TestMarkerUnused(t *testing.T) {
fn := func(l *Lexer) Fn {
m := l.Marker()
expectMarkerValid(t, m, true)
// Ignore marker
//
expectMatchEmitString(t, l, "123ABC", TString)
return nil
}
nexter := LexString("123ABC", fn)
expectNexterNext(t, nexter, TString, "123ABC", 1, 1)
expectNexterEOF(t, nexter)
}
// TestMarkerValid
//
func TestMarkerValid(t *testing.T) {
fn := func(l *Lexer) Fn {
m := l.Marker()
expectNextString(t, l, "123ABC")
expectMarkerValid(t, m, true)
l.EmitToken(TString)
expectMarkerValid(t, m, false)
return nil
}
nexter := LexString("123ABC", fn)
expectNexterNext(t, nexter, TString, "123ABC", 1, 1)
expectNexterEOF(t, nexter)
}
// TestMarkerImmediateApply
//
func TestMarkerImmediateApply(t *testing.T) {
fn := func(l *Lexer) Fn {
m := l.Marker()
expectMarkerValid(t, m, true)
// Apply it immediately
//
m.Apply()
expectMatchEmitString(t, l, "123ABC", TString)
expectMarkerValid(t, m, false)
return nil
}
nexter := LexString("123ABC", fn)
expectNexterNext(t, nexter, TString, "123ABC", 1, 1)
expectNexterEOF(t, nexter)
}
// TestMarkerApply
//
func TestMarkerApply(t *testing.T) {
fn := func(l *Lexer) Fn {
m := l.Marker()
expectMarkerValid(t, m, true)
expectNextString(t, l, "123ABC")
expectMarkerValid(t, m, true)
m.Apply()
expectMarkerValid(t, m, true)
expectMatchEmitString(t, l, "123ABC", TString)
expectMarkerValid(t, m, false)
return nil
}
nexter := LexString("123ABC", fn)
expectNexterNext(t, nexter, TString, "123ABC", 1, 1)
expectNexterEOF(t, nexter)
}
// TestMarkerApplyInvalid
//
func TestMarkerApplyInvalid(t *testing.T) {
fn := func(l *Lexer) Fn {
m := l.Marker()
expectMarkerValid(t, m, true)
expectNextString(t, l, "123ABC")
expectMarkerValid(t, m, true)
m.Apply()
expectMatchEmitString(t, l, "123ABC", TString)
expectMarkerValid(t, m, false)
// Valid said no, but let's try anyway
//
m.Apply()
return nil
}
assertPanic(t, func() {
_, _ = LexString("123ABC", fn).Next()
}, "Invalid marker")
}
func TestMarkerApplyNextFn(t *testing.T) {
var marker *Marker
var used = false
fn1 := func(l *Lexer) Fn {
if used {
t.Error("Marker.Apply() expected to return function that marker was created in")
return nil
}
used = true
return marker.Apply()
}
fn2 := func(l *Lexer) Fn {
if used {
return nil
}
marker = l.Marker()
return fn1
}
nexter := LexString(".", fn2)
expectNexterEOF(t, nexter)
}