-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest-CRAN-vec.R
More file actions
399 lines (370 loc) · 11 KB
/
test-CRAN-vec.R
File metadata and controls
399 lines (370 loc) · 11 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
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
library(nc)
library(testthat)
library(data.table)
context("variable args syntax")
source(system.file("test_engines.R", package="nc", mustWork=TRUE), local=TRUE)
## In stringi there is a difference between matching an empty
## string, and an optional match that fails.
inames <- c("Species", "Petal.Length", "Sepal.Width")
sapply(c("[^.]*(.*)", "[^.]*([.].*)?"), function(pat){
if(requireNamespace("stringi"))stringi::stri_match_first_regex(inames, pat)
})
test_engines("match nothing in required group is empty string", {
empty.dt <- capture_first_vec(
inames,
"[^.]*",
rest=".*")
expect_identical(empty.dt, data.table(rest=c("", ".Length", ".Width")))
})
test_engines("no match for optional group is empty string", {
opt.empty.dt <- capture_first_vec(
inames,
"[^.]*",
rest="[.].*", "?")
expect_identical(opt.empty.dt, data.table(rest=c("", ".Length", ".Width")))
})
test_engines("no match for required group is NA", {
na.dt <- capture_first_vec(
inames,
"[^.]*",
rest="[.].*",
nomatch.error=FALSE)
expect_identical(na.dt, data.table(rest=c(NA, ".Length", ".Width")))
})
test_engines("error for capture first regex with literal groups", {
expect_error({
capture_first_vec(
c("chr1:100-200", "chr2:5-6"),
chrom="chr.",
":",
"([0-9]+)")
}, "regex contains more groups than names; please remove literal groups (parentheses) from the regex pattern, and use named arguments in R code instead", fixed=TRUE)
})
subject <- c(
ten="chr10:213,054,000-213,055,000",
chrNA="chrNA:111,000-222,000",
no.match="foo bar",
missing=NA,
two="chr1:110-111 chr2:220-222")
test_engines("capture_first_vec returns data.table with chr columns", {
computed <- capture_first_vec(
subject,
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
nomatch.error=FALSE)
expected <- data.table(
chrom=c("chr10", "chrNA", NA, NA, "chr1"),
chromStart=c("213,054,000", "111,000", NA, NA, "110"),
chromEnd=c("213,055,000", "222,000", NA, NA, "111"))
expect_identical(computed, expected)
})
keep.digits <- function(x)as.integer(gsub("[^0-9]", "", x))
test_engines("capture_first_vec returns data.table with int columns", {
computed <- capture_first_vec(
subject,
chrom="chr.*?",
":",
chromStart=".*?", keep.digits,
"-",
chromEnd="[0-9,]*", keep.digits,
nomatch.error=FALSE)
expected <- data.table(
chrom=c("chr10", "chrNA", NA, NA, "chr1"),
chromStart=as.integer(c(213054000, 111000, NA, NA, 110)),
chromEnd=as.integer(c(213055000, 222000, NA, NA, 111)))
expect_identical(computed, expected)
})
test_engines("capture_first_vec(type.convert=TRUE) returns one int column", {
computed <- capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
type.convert=TRUE)
expected <- data.table(
chrom="chr1",
chromStart=2L,
chromEnd="3,000")
expect_identical(computed, expected)
})
test_engines("capture_first_vec(type.convert=TRUE) returns two int columns", {
computed <- capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*", keep.digits,
type.convert=TRUE)
expected <- data.table(
chrom="chr1",
chromStart=2L,
chromEnd=3000L)
expect_identical(computed, expected)
})
test_engines("capture_first_vec(type.convert=constant fun) returns all num columns", {
computed <- capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
type.convert=function(...)5)
expected <- data.table(
chrom=5,
chromStart=5,
chromEnd=5)
expect_identical(computed, expected)
})
test_engines("capture_first_vec(type.convert=as.integer) returns all int columns", {
computed <- suppressWarnings(capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
type.convert=as.integer))
expected <- data.table(
chrom=NA_integer_,
chromStart=2L,
chromEnd=NA_integer_)
expect_identical(computed, expected)
})
test_engines("capture_first_vec(type.convert=invalid) errors", {
expect_error({
capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
type.convert=function()5)
}, "type conversion functions should take one argument (character vector of captured text) and return an atomic vector of the same size; function for group 1(chrom) raised an error: unused argument (match.vec)", fixed=TRUE)
})
test_engines("capture_first_vec(type.convert='foo') errors", {
expect_error({
capture_first_vec(
"chr1:2-3,000",
chrom="chr.*?",
":",
chromStart=".*?",
"-",
chromEnd="[0-9,]*",
type.convert='foo')
}, "type.convert should be either TRUE or FALSE or a function", fixed=TRUE)
})
test_engines("named function is an error", {
expect_error({
capture_first_vec(
subject,
chrom="chr.*?",
":",
chromStart=".*?", fun=keep.digits,
"-",
chromEnd="[0-9,]*", keep.digits)
}, "functions must not be named, problem: fun")
})
test_engines("capture_first_vec errors for one argument", {
expect_error({
capture_first_vec("foo")
}, "must have at least one named argument")
})
test_engines("capture_first_vec errors for multi-dim patterns", {
expect_error({
capture_first_vec("foo", bar=c("bar", "baz"))
}, "patterns must be character vectors of length 1")
})
test_engines("capture_first_vec errors for 0-length patterns", {
expect_error({
capture_first_vec("foo", bar=character())
}, "patterns must be character vectors of length 1")
})
test_engines("capture_first_vec errors for non char/fun args", {
expect_error({
capture_first_vec("foo", baz="bar", 1)
}, "arguments must be", fixed=TRUE)
})
test_engines("capture_first_vec errors for two funs in a row", {
expect_error({
capture_first_vec(
"foo", g="bar", as.integer, as.numeric)
},
"too many functions; up to one function may follow each named pattern")
})
test_engines("capture_first_vec errors for fun at start", {
expect_error({
capture_first_vec("foo", as.numeric, bar="baz")
},
"too many functions; up to one function may follow each named pattern")
})
test_engines("capture_first_vec errors for NA pattern", {
expect_error({
capture_first_vec("foo", g="bar", NA_character_, "baz")
}, "patterns must not be missing/NA")
})
range.pattern <- list(
"\\[",
task1="[0-9]+", as.integer,
"(?:-",#begin optional end of range.
taskN="[0-9]+", as.integer,
")?", #end is optional.
"\\]")
full.pattern <- list(
job="[0-9]+", as.integer,
"_",
"(?:",#begin alternate
task="[0-9]+", as.integer,
"|",#either one task(above) or range(below)
range.pattern,
")",#end alternate
"(?:[.]",
type=".*",
")?")
task.vec <- c(
"13937810_25",
"13937810_25.batch",
"13937810_25.extern",
"14022192_[1-3]",
"14022204_[4]")
all.args <- list(task.vec, full.pattern)
test_engines("nested lists are OK", {
task.df <- do.call(capture_first_vec, all.args)
expect_identical(
names(task.df),
c("job", "task", "task1", "taskN", "type"))
expect_identical(task.df$job, as.integer(c(
13937810, 13937810, 13937810, 14022192, 14022204)))
expect_identical(task.df$task, as.integer(c(
25, 25, 25, NA, NA)))
expect_identical(task.df$task1, as.integer(c(
NA, NA, NA, 1, 4)))
expect_identical(task.df$taskN, as.integer(c(
NA, NA, NA, 3, NA)))
expect_identical(task.df$type, c(
"", "batch", "extern", "", ""))
})
range.square <- list(
"[[]",
task1="[0-9]+", as.integer,
"(?:-",#begin optional end of range.
taskN="[0-9]+", as.integer,
")?", #end is optional.
"[]]")
full.square <- list(
job="[0-9]+", as.integer,
"_",
"(?:",#begin alternate
task="[0-9]+", as.integer,
"|",#either one task(above) or range(below)
range.square,
")",#end alternate
"(?:[.]",
type=".*",
")?")
test_engines("vec square brackets pattern", {
if(identical(getOption("nc.engine"), "ICU")){
expect_error({
capture_first_vec(task.vec, full.square)
}, "when matching pattern above with ICU engine")
}else{
task.df <- capture_first_vec(task.vec, full.square)
expect_identical(
names(task.df),
c("job", "task", "task1", "taskN", "type"))
expect_identical(task.df$job, as.integer(c(
13937810, 13937810, 13937810, 14022192, 14022204)))
expect_identical(task.df$task, as.integer(c(
25, 25, 25, NA, NA)))
expect_identical(task.df$task1, as.integer(c(
NA, NA, NA, 1, 4)))
expect_identical(task.df$taskN, as.integer(c(
NA, NA, NA, 3, NA)))
expect_identical(task.df$type, c(
"", "batch", "extern", "", ""))
}
})
chr.pos.nomatch.vec <- c(
"chr10:213,054,000-213,055,000",
"chrM:111,000",
"this will not match",
NA, # neither will this.
"chr1:110-111 chr2:220-222") # two possible matches.
chr.pos.df <- capture_first_vec(
chr.pos.nomatch.vec,
chrom="chr.*?",
":",
chromStart="[0-9,]+", keep.digits,
list(
"-",
chromEnd="[0-9,]+", keep.digits
), "?",
nomatch.error=FALSE)
test_engines("un-named list interpreted as non-capturing group", {
expect_identical(
chr.pos.df$chromStart,
as.integer(c(213054000, 111000, NA, NA, 110)))
expect_identical(
chr.pos.df$chromEnd,
as.integer(c(213055000, NA, NA, NA, 111)))
})
matching.subjects <- c(
"chr10:213,054,000-213,055,000",
"chrM:111,000",
"chr1:110-111 chr2:220-222") # two possible matches.
test_engines("str subject no error if nomatch.error=TRUE and all matches", {
match.df <- capture_first_vec(
matching.subjects, nomatch.error=TRUE,
chrom="chr.*?",
":",
chromStart="[0-9,]+", keep.digits,
list(
"-",
chromEnd="[0-9,]+", keep.digits
), "?")
expect_identical(
match.df$chromEnd,
as.integer(c(213055000, NA, 111)))
})
test_engines("str subject stop if nomatch.error=TRUE and no match", {
expect_error({
capture_first_vec(
chr.pos.nomatch.vec, nomatch.error=TRUE,
chrom="chr.*?",
":",
chromStart="[0-9,]+", keep.digits,
list(
"-",
chromEnd="[0-9,]+", keep.digits
), "?")
}, "subject(s) 3,4 (2 total) did not match regex below", fixed=TRUE)
})
test_that("only a few subject IDs in error", {
expect_error({
capture_first_vec(paste(1:1000), foo="bar")
}, "subject(s) 1,2,3,4,5,...,996,997,998,999,1000 (1000 total) did not match regex below",
fixed=TRUE)
})
(foo.mat <- capture_first_vec(
c("foo", "foobar", "fooba"),
first="foo",
list("b", second="ar"), "?"))
test_engines("un-named list interpreted as non-capturing group foo subject", {
expect_identical(foo.mat$first, c("foo", "foo", "foo"))
expect_identical(foo.mat$second, c("", "ar", ""))
})
subject <- "foo55bar"
test_engines("capture_first_vec returns dt with only one group = name", {
out.dt <- capture_first_vec(
subject,
name="[0-9]+", as.integer)
expect_equal(dim(out.dt), c(1, 1))
expect_identical(names(out.dt), "name")
})