-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrim_test.go
287 lines (237 loc) · 7.31 KB
/
trim_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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// 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 text_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/conflowio/parsley/ast"
"github.com/conflowio/parsley/data"
"github.com/conflowio/parsley/parsley"
"github.com/conflowio/parsley/parsley/parsleyfakes"
"github.com/conflowio/parsley/text"
"github.com/conflowio/parsley/text/terminal"
)
var _ = Describe("Trim parsers", func() {
var (
r *text.Reader
f *text.File
ctx *parsley.Context
input []byte
pos parsley.Pos
p parsley.Parser
fakep *parsleyfakes.FakeParser
wsMode text.WsMode
res, parserRes parsley.Node
err, parserErr parsley.Error
leftRectCtx data.IntMap
cp, parserCP data.IntSet
)
JustBeforeEach(func() {
fakep.ParseReturns(parserRes, parserCP, parserErr)
f = text.NewFile("testfile", input)
fs := parsley.NewFileSet(f)
r = text.NewReader(f)
ctx = parsley.NewContext(fs, r)
})
BeforeEach(func() {
fakep = &parsleyfakes.FakeParser{}
p = fakep
wsMode = text.WsSpacesNl
pos = parsley.Pos(1)
leftRectCtx = data.EmptyIntMap.Inc(1)
parserRes = &parsleyfakes.FakeNode{}
parserErr = nil
parserCP = data.EmptyIntSet.Insert(1)
})
var _ = Describe("LeftTrim", func() {
BeforeEach(func() {
input = []byte(" \t\n\fabc \t")
})
JustBeforeEach(func() {
leftTrim := text.LeftTrim(p, wsMode)
res, cp, err = leftTrim.Parse(ctx, leftRectCtx, pos)
})
It("calls the parser", func() {
Expect(fakep.ParseCallCount()).To(Equal(1))
passedCtx, passedLeftRecCtx, _ := fakep.ParseArgsForCall(0)
Expect(passedCtx).To(Equal(ctx))
Expect(passedLeftRecCtx).To(Equal(leftRectCtx))
})
It("returns the result of the parser", func() {
Expect(res).To(BeIdenticalTo(parserRes))
Expect(cp).To(Equal(parserCP))
})
Context("when whitespace mode is no whitespaces", func() {
BeforeEach(func() {
wsMode = text.WsNone
})
It("returns an error", func() {
expectWhiteSpaceError(err, pos, "whitespaces are not allowed")
})
})
Context("when whitespace mode is spaces", func() {
BeforeEach(func() {
wsMode = text.WsSpaces
})
It("should trim all whitespaces from the left and return an error", func() {
expectWhiteSpaceError(err, pos+2, "new line is not allowed")
})
})
Context("when whitespace mode is spaces and new lines", func() {
BeforeEach(func() {
wsMode = text.WsSpacesNl
})
It("should trim the spaces and new lines from the left", func() {
_, _, passedPos := fakep.ParseArgsForCall(0)
Expect(passedPos).To(Equal(pos + 4))
})
})
Context("when whitespace mode is forcing a new line", func() {
BeforeEach(func() {
wsMode = text.WsSpacesForceNl
})
It("should trim the spaces and new lines from the left", func() {
_, _, passedPos := fakep.ParseArgsForCall(0)
Expect(passedPos).To(Equal(pos + 4))
})
})
Context("when whitespace mode is forcing a new line but no new line", func() {
BeforeEach(func() {
wsMode = text.WsSpacesForceNl
pos = parsley.Pos(8)
})
It("should return an error", func() {
expectWhiteSpaceError(err, parsley.Pos(10), "was expecting a new line")
})
})
})
var _ = Describe("RightTrim", func() {
BeforeEach(func() {
input = []byte("abc \t\n\fdef")
parserRes = nil
})
JustBeforeEach(func() {
rightTrim := text.RightTrim(p, wsMode)
res, cp, err = rightTrim.Parse(ctx, leftRectCtx, pos)
})
It("calls the parser", func() {
Expect(fakep.ParseCallCount()).To(Equal(1))
passedCtx, passedLeftRecCtx, _ := fakep.ParseArgsForCall(0)
Expect(passedCtx).To(Equal(ctx))
Expect(passedLeftRecCtx).To(Equal(leftRectCtx))
})
It("returns with the curtailing parsers", func() {
Expect(cp).To(Equal(parserCP))
})
When("there is result", func() {
When("there are no whitespaces after the match", func() {
BeforeEach(func() {
p = terminal.Word("string", "def", "def")
pos = parsley.Pos(8)
})
It("should return the result", func() {
Expect(res.ReaderPos()).To(Equal(parsley.Pos(11)))
Expect(err).ToNot(HaveOccurred())
})
})
When("there are whitespaces after the match", func() {
BeforeEach(func() {
p = terminal.Word("string", "abc", "abc")
pos = parsley.Pos(1)
})
Context("when whitespace mode is no whitespaces", func() {
BeforeEach(func() {
wsMode = text.WsNone
})
It("should return an error", func() {
expectWhiteSpaceError(err, pos+3, "whitespaces are not allowed")
})
})
Context("when whitespace mode is spaces", func() {
BeforeEach(func() {
wsMode = text.WsSpaces
})
It("should return an error", func() {
expectWhiteSpaceError(err, pos+5, "new line is not allowed")
})
})
Context("when whitespace mode is spaces and new lines", func() {
BeforeEach(func() {
wsMode = text.WsSpacesNl
})
It("should trim the spaces and new lines from the right", func() {
Expect(res.ReaderPos()).To(Equal(parsley.Pos(8)))
})
})
Context("when whitespace mode is forcing new lines", func() {
BeforeEach(func() {
p = terminal.Word("string", "def", "def")
pos = parsley.Pos(8)
wsMode = text.WsSpacesForceNl
})
It("should return with error", func() {
Expect(err.Error()).To(Equal("was expecting a new line"))
Expect(err.Pos()).To(Equal(parsley.Pos(11)))
})
})
})
})
Context("When there is error", func() {
BeforeEach(func() {
parserRes = nil
parserErr = parsley.NewErrorf(parsley.Pos(4), "some error")
})
Context("when whitespace mode is no whitespaces", func() {
BeforeEach(func() {
wsMode = text.WsNone
})
It("returns the error at the position of the whitespaces", func() {
Expect(err).To(MatchError(parsley.NewError(parsley.Pos(8), parserErr.Cause())))
})
})
Context("when whitespace mode is spaces", func() {
BeforeEach(func() {
wsMode = text.WsSpaces
})
It("should trim all whitespaces from the right", func() {
Expect(err.Error()).To(Equal("some error"))
Expect(err.Pos()).To(Equal(parsley.Pos(8)))
})
})
Context("when whitespace mode is spaces and new lines", func() {
BeforeEach(func() {
wsMode = text.WsSpacesNl
})
It("should trim the spaces and new lines from the right", func() {
Expect(err.Error()).To(Equal("some error"))
Expect(err.Pos()).To(Equal(parsley.Pos(8)))
})
})
})
})
var _ = Describe("Trim", func() {
BeforeEach(func() {
input = []byte(" \t\n\fabc \t\n\f")
})
JustBeforeEach(func() {
trim := text.Trim(p)
res, cp, err = trim.Parse(ctx, leftRectCtx, pos)
})
Context("When there is result", func() {
BeforeEach(func() {
p = terminal.Word("string", "abc", "abc")
})
It("should trim the spaces and new lines from the right", func() {
Expect(res).To(Equal(ast.NewTerminalNode("string", "ABC", "abc", parsley.Pos(5), parsley.Pos(12))))
})
})
})
})
func expectWhiteSpaceError(err error, pos parsley.Pos, msg string) {
Expect(err).To(MatchError(parsley.NewError(
pos, parsley.NewWhitespaceError(msg),
)))
}