mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
60 lines
2.2 KiB
Nim
60 lines
2.2 KiB
Nim
import unittest, optional_nonstrict
|
|
include nre
|
|
|
|
suite "captures":
|
|
test "map capture names to numbers":
|
|
check(getNameToNumberTable(re("(?<v1>1(?<v2>2(?<v3>3))(?'v4'4))()")) ==
|
|
{ "v1" : 0, "v2" : 1, "v3" : 2, "v4" : 3 }.toTable())
|
|
|
|
test "capture bounds are correct":
|
|
let ex1 = re("([0-9])")
|
|
check("1 23".find(ex1).matchBounds == 0 .. 0)
|
|
check("1 23".find(ex1).captureBounds[0].get == 0 .. 0)
|
|
check("1 23".find(ex1, 1).matchBounds == 2 .. 2)
|
|
check("1 23".find(ex1, 3).matchBounds == 3 .. 3)
|
|
|
|
let ex2 = re("()()()()()()()()()()([0-9])")
|
|
check("824".find(ex2).captureBounds[0].get == 0 .. -1)
|
|
check("824".find(ex2).captureBounds[10].get == 0 .. 0)
|
|
|
|
let ex3 = re("([0-9]+)")
|
|
check("824".find(ex3).captureBounds[0].get == 0 .. 2)
|
|
|
|
test "named captures":
|
|
let ex1 = "foobar".find(re("(?<foo>foo)(?<bar>bar)"))
|
|
check(ex1.captures["foo"] == "foo")
|
|
check(ex1.captures["bar"] == "bar")
|
|
|
|
let ex2 = "foo".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex2.captures["foo"] == "foo")
|
|
check(ex2.captures["bar"] == nil)
|
|
|
|
test "named capture bounds":
|
|
let ex1 = "foo".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex1.captureBounds["foo"] == some(0..2))
|
|
check(ex1.captureBounds["bar"] == none(Slice[int]))
|
|
|
|
test "capture count":
|
|
let ex1 = re("(?<foo>foo)(?<bar>bar)?")
|
|
check(ex1.captureCount == 2)
|
|
check(ex1.captureNameId == {"foo" : 0, "bar" : 1}.toTable())
|
|
|
|
test "named capture table":
|
|
let ex1 = "foo".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex1.captures.toTable == {"foo" : "foo", "bar" : nil}.toTable())
|
|
check(ex1.captureBounds.toTable == {"foo" : some(0..2), "bar" : none(Slice[int])}.toTable())
|
|
check(ex1.captures.toTable("") == {"foo" : "foo", "bar" : ""}.toTable())
|
|
|
|
let ex2 = "foobar".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex2.captures.toTable == {"foo" : "foo", "bar" : "bar"}.toTable())
|
|
|
|
test "capture sequence":
|
|
let ex1 = "foo".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex1.captures.toSeq == @["foo", nil])
|
|
check(ex1.captureBounds.toSeq == @[some(0..2), none(Slice[int])])
|
|
check(ex1.captures.toSeq("") == @["foo", ""])
|
|
|
|
let ex2 = "foobar".find(re("(?<foo>foo)(?<bar>bar)?"))
|
|
check(ex2.captures.toSeq == @["foo", "bar"])
|
|
|