Skip to content

Commit ced60f5

Browse files
committed
support for nim 0.15
1 parent ba4c5f5 commit ced60f5

8 files changed

+25
-20
lines changed

cucumber.nimble

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ skipDirs = @["tests"]
99

1010
# Dependencies
1111

12-
requires "nim >= 0.13.0"
12+
requires "nim >= 0.15.0"
1313
requires "nre >= 1.0.0"
14-
requires "commandeer >= 0.9.1 & < 0.10.2"
14+
requires "commandeer >= 0.10.5"
15+
requires "tempfile >= 0.1.4"
1516

16-
task tests, "test cucumber_nim features":
17+
task test, "test cucumber_nim features":
1718
exec "nim c -r --verbosity:0 ./tests/run"
18-
setCommand "nop"

cucumber/feature.nim

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import sets
99
from streams import newFileStream, Stream, readLine
1010
from sequtils import mapIt, apply
1111
from sets import toSet, contains
12-
from strutils import split, strip, repeat, `%`, join, capitalize
12+
from strutils import split, strip, repeat, `%`, join, capitalizeAscii
1313
from nre import re, match, captures, `[]`, replace
1414
import options
1515
import "./types"
@@ -115,7 +115,7 @@ proc newFeature(name: string): Feature =
115115
scenarios: @[]
116116
)
117117
proc newScenario(feature: Feature, text: string) : Scenario =
118-
let description = text.replace(headRE, "").capitalize
118+
let description = text.replace(headRE, "").capitalizeAscii
119119
result = Scenario(
120120
description: description,
121121
parent: feature,
@@ -174,7 +174,7 @@ proc newLine(line: string, ltype: LineType, number: int): Line =
174174
content: sline.strip)
175175

176176
proc headKey(line: Line) : string =
177-
return capitalize((line.content.match headRE).get.captures[0])
177+
return capitalizeAscii((line.content.match headRE).get.captures[0])
178178

179179
proc nextLine(stream: var LineStream, skipBlankLines : bool = true) : Line =
180180
var text = ""
@@ -291,7 +291,7 @@ proc readBody(
291291
feature.comments.add comments
292292

293293
const stepTypes = ["And", "Given", "When", "Then"]
294-
let stepTypeRE = re("($1)" % (stepTypes.mapIt ("(?:^$1)" % it)).join("|"))
294+
let stepTypeRE = re("($1)" % mapIt(stepTypes, ("(?:^$1)" % it)).join("|"))
295295

296296
proc addStep(parent: Scenario, steps: var seq[Step], line: Line) : void =
297297
var text = line.content.strip()

cucumber/hook.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ proc `[]`*(
3636
defs.items[hookType]
3737

3838
proc hookTypeFor*(hookTypeName: string) : HookType {.procvar.} =
39-
case hookTypeName.toLower
39+
case hookTypeName.toLowerAscii
4040
of "beforeall": result = htBeforeAll
4141
of "afterall": result = htAfterAll
4242
of "beforefeature": result = htBeforeFeature

cucumber/macroutil.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import strutils
55
import sequtils
66

77
proc pubName*(prefix: string, aname: string) : NimNode {.compiletime.} =
8-
let name : string = if prefix == nil: aname else: prefix & capitalize(aname)
8+
let name : string = if prefix == nil: aname else: prefix & capitalizeAscii(aname)
99
result = postfix(newIdentNode(name), "*")
1010
proc toTypeNode(atype: NimNode, isVar: bool = false): NimNode {.compiletime.} =
1111
result = atype

cucumber/main.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ proc buildTagFilter(tagStr: string, op: string = "+"): TagFilter =
4242

4343
let tagStr = tagStr.strip
4444
let match = (tagStr.match tagRE).get
45-
let c = toSeq(match.captures.items)
45+
let c = toSeq(match.captures)
4646
let (neg, tag, nextOp, inner) = (c[0], c[1], c[2], c[3])
4747
result = proc (tags: StringSet): bool =
4848
if tag != nil:

cucumber/parameter.nim

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import tables
3131
import macros
32-
from strutils import capitalize, parseInt, toLower
32+
from strutils import capitalizeAscii, parseInt, toLowerAscii
3333
import macroutil
3434
import "./types"
3535

@@ -39,7 +39,7 @@ type
3939
ResetContext* = proc(ctype: ContextType) : void
4040

4141
proc contextTypeFor*(cname: string) : ContextType =
42-
case cname.substr().toLower
42+
case cname.substr().toLowerAscii
4343
of "global": result = ctGlobal
4444
of "feature": result = ctFeature
4545
of "scenario": result = ctScenario
@@ -66,10 +66,10 @@ proc resetList*[T](contextList: var ContextList[T], clear: ContextType) :void =
6666
proc ptName*(name: string, suffix: string) : string {.compiletime.} =
6767
var name = name
6868
if name[0..3] == "seq[" and name[^1] == ']':
69-
name = name[0..2] & capitalize(name[4..^2])
70-
ptPrefix & capitalize(name) & capitalize(suffix)
69+
name = name[0..2] & capitalizeAscii(name[4..^2])
70+
ptPrefix & capitalizeAscii(name) & capitalizeAscii(suffix)
7171
proc cttName(name: string) : string {.compiletime.} =
72-
capitalize(name) & "Context"
72+
capitalizeAscii(name) & "Context"
7373

7474
macro declareTypeName(name: static[string], ptype: untyped) : untyped =
7575
result = newVar(
@@ -254,7 +254,7 @@ DeclareParamType("string", string, parseString, newStringA, r"(.*)")
254254
proc newFloat(): float = 0
255255
const floatPattern = r"((?:[-+]?[0-9]*\.?[0-9]+(?:[eE][-+]?[0-9]+)?)|(?:[Nn][Aa][Nn])|(?:[Ii][Nn][Ff])|(?:-[Ii][Nn][Ff]))"
256256
proc parseFloat*(s: string) : float =
257-
strutils.parseFloat(strutils.toUpper s)
257+
strutils.parseFloat(strutils.toUpperAscii s)
258258
DeclareParamType("float", float, parseFloat, newFloat, floatPattern)
259259

260260
proc newSeqPT*[T]() : seq[T] = newSeq[T]()

cucumber/runner.nim

+7-2
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ iterator count(a, b: int) : int =
303303
yield i
304304

305305
proc runHooks(
306-
hookType: HookType, tags: StringSet, testNode: TestNode,
306+
hookType: HookType, tags: HashSet[string], testNode: TestNode,
307307
options: CucumberOptions): HookResult =
308308
result = HookResult(value: hrSuccess)
309309
let definitions = hookDefinitions[hookType]
@@ -318,8 +318,13 @@ proc runHooks(
318318

319319
let hookDef = definitions[ihookDef]
320320
if options.verbosity >= 5:
321+
# ???? sets.items missing/broken ... nim 0.15.2?
322+
#let tagiter = sets.items[string](tags)
323+
var tagseq = newSeq[string]()
324+
for t in tags:
325+
tagseq.add t
321326
echo "Check hook $1($2): {$3}?: $4" % [
322-
$hookType, $ihookDef, toSeq(tags.items).join(","), $hookDef.tagFilter(tags)]
327+
$hookType, $ihookDef, tagseq.join(","), $hookDef.tagFilter(tags)]
323328
if not hookDef.tagFilter(tags):
324329
continue
325330
try:

cucumber/step.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ proc `[]`*(
4242
defs.items[stepType]
4343

4444
proc stepTypeFor*(stName: string) : StepType {.procvar.} =
45-
case stName.substr().toLower
45+
case stName.substr().toLowerAscii
4646
of "given": return stGiven
4747
of "when": return stWhen
4848
of "then": return stThen

0 commit comments

Comments
 (0)