Skip to content

Commit

Permalink
fix nim-lang#17952: fix both false positives and false negatives for …
Browse files Browse the repository at this point in the history
…reInvalidSpec (nim-lang#17956)

* fix nim-lang#17952: fix both false positives and false negatives for reInvalidSpec

* handle megatest properly

* fix for tests/stdlib/tbase64.nim
  • Loading branch information
timotheecour authored May 7, 2021
1 parent 062571a commit fb677bf
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 43 deletions.
11 changes: 9 additions & 2 deletions testament/categories.nim
Original file line number Diff line number Diff line change
Expand Up @@ -600,12 +600,19 @@ proc runJoinedTest(r: var TResults, cat: Category, testsDir: string, options: st
]#
var specs: seq[TSpec] = @[]
for kind, dir in walkDir(testsDir):
assert testsDir.startsWith(testsDir)
assert dir.startsWith(testsDir)
let cat = dir[testsDir.len .. ^1]
if kind == pcDir and cat notin specialCategories:
for file in walkDirRec(testsDir / cat):
if isTestFile(file):
let spec = parseSpec(file)
var spec: TSpec
try:
spec = parseSpec(file)
except ValueError:
# e.g. for `tests/navigator/tincludefile.nim` which have multiple
# specs; this will be handled elsewhere
echo "parseSpec failed for: '$1', assuming this will be handled outside of megatest" % file
continue
if isJoinableSpec(spec):
specs.add spec

Expand Down
30 changes: 20 additions & 10 deletions testament/specs.nim
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ proc extractErrorMsg(s: string; i: int; line: var int; col: var int; spec: var T
proc extractSpec(filename: string; spec: var TSpec): string =
const
tripleQuote = "\"\"\""
specStart = "discard " & tripleQuote
var s = readFile(filename)

var i = 0
Expand All @@ -187,25 +188,34 @@ proc extractSpec(filename: string; spec: var TSpec): string =
var line = 1
var col = 1
while i < s.len:
if s.continuesWith(tripleQuote, i):
if a < 0: a = i
elif b < 0: b = i
inc i, 2
inc col
if (i == 0 or s[i-1] != ' ') and s.continuesWith(specStart, i):
# `s[i-1] == '\n'` would not work because of `tests/stdlib/tbase64.nim` which contains BOM (https://en.wikipedia.org/wiki/Byte_order_mark)
const lineMax = 10
if a != -1:
raise newException(ValueError, "testament spec violation: duplicate `specStart` found: " & $(filename, a, b, line))
elif line > lineMax:
# not overly restrictive, but prevents mistaking some `specStart` as spec if deeep inside a test file
raise newException(ValueError, "testament spec violation: `specStart` should be before line $1, or be indented; info: $2" % [$lineMax, $(filename, a, b, line)])
i += specStart.len
a = i
elif a > -1 and b == -1 and s.continuesWith(tripleQuote, i):
b = i
i += tripleQuote.len
elif s[i] == '\n':
inc line
inc i
col = 1
elif s.continuesWith(inlineErrorMarker, i):
i = extractErrorMsg(s, i, line, col, spec)
else:
inc col
inc i
inc i

# look for """ only in the first section
if a >= 0 and b > a and a < 40:
result = s.substr(a+3, b-1).multiReplace({"'''": tripleQuote, "\\31": "\31"})
if a >= 0 and b > a:
result = s.substr(a, b-1).multiReplace({"'''": tripleQuote, "\\31": "\31"})
elif a >= 0:
raise newException(ValueError, "testament spec violation: `specStart` found but not trailing `tripleQuote`: $1" % $(filename, a, b, line))
else:
#echo "warning: file does not contain spec: " & filename
result = ""

proc parseTargets*(value: string): set[TTarget] =
Expand Down
40 changes: 20 additions & 20 deletions tests/manyloc/keineschweine/lib/sg_gui.nim
Original file line number Diff line number Diff line change
Expand Up @@ -193,28 +193,28 @@ proc setActive*(t: PTextEntry) =
if not t.isNil and not t.inputClient.isNil:
input_helpers.setActive(t.inputClient)

when false:
proc newMessageArea*(container: PGuiContainer; position: TVector2f): PMessageArea =
new(result)
result.messages = @[]
result.pos = position
container.add(result)
proc add*(m: PMessageArea, text: string): PText =
result = messageProto.copy()
result.setString(text)
m.messages.add(result)
let nmsgs = len(m.messages)
var pos = vec2f(m.pos.x, m.pos.y)
for i in countdown(nmsgs - 1, max(nmsgs - 30, 0)):
setPosition(m.messages[i], pos)
pos.y -= 16.0

discard """proc newMessageArea*(container: PGuiContainer; position: TVector2f): PMessageArea =
new(result)
result.messages = @[]
result.pos = position
container.add(result)
proc add*(m: PMessageArea, text: string): PText =
result = messageProto.copy()
result.setString(text)
m.messages.add(result)
let nmsgs = len(m.messages)
var pos = vec2f(m.pos.x, m.pos.y)
for i in countdown(nmsgs - 1, max(nmsgs - 30, 0)):
setPosition(m.messages[i], pos)
pos.y -= 16.0
proc draw*(window: PRenderWindow; m: PMessageArea) =
let nmsgs = len(m.messages)
if nmsgs == 0: return
for i in countdown(nmsgs - 1, max(nmsgs - 30, 0)):
window.draw(m.messages[i])

proc draw*(window: PRenderWindow; m: PMessageArea) =
let nmsgs = len(m.messages)
if nmsgs == 0: return
for i in countdown(nmsgs - 1, max(nmsgs - 30, 0)):
window.draw(m.messages[i])
"""
proc newMessageArea*(container: PGuiContainer; position: TVector2f): PMessageArea =
new(result)
result.messages = @[]
Expand Down
11 changes: 6 additions & 5 deletions tests/manyloc/nake/nakefile.nim
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ task "test2", "Build release test build test release build":
if shell("nim", ReleaseDefines, ReleaseTestDefines, "compile", ExeName) == 0:
shell "."/ExeName

discard """task "dirserver", "build the directory server":
withDir "server":
if shell("nim", ServerDefines, "compile", "dirserver") != 0:
echo "Failed to build the dirserver"
quit 1"""
when false:
task "dirserver", "build the directory server":
withDir "server":
if shell("nim", ServerDefines, "compile", "dirserver") != 0:
echo "Failed to build the dirserver"
quit 1

task "zoneserver", "build the zone server":
withDir "enet_server":
Expand Down
6 changes: 3 additions & 3 deletions tests/modules/texplicit_system_import.nim
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
##.
import system except `+`

discard """
errormsg: "undeclared identifier: '+'"
line: 9
"""
# Testament requires that the initial """ occurs before the 40th byte
# in the file. No kidding...


echo 4+5
14 changes: 11 additions & 3 deletions tests/statictypes/tstatictypes.nim
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
discard """
nimoutFull: true
nimout: '''
staticAlialProc instantiated with 358
staticAlialProc instantiated with 368
0: Foo
1: Bar
0: Foo
1: Bar
0: Foo
1: Bar
0: Foo
1: Bar
Hint: ***SLOW, DEBUG BUILD***; -d:release makes code run faster. [BuildMode]
'''
output: '''
16
Expand All @@ -15,8 +23,11 @@ heyho
Val1
Val1
'''
matrix: "--hint:XDeclaredButNotUsed:off --hint:cc:off --hint:link:off --hint:SuccessX:off --hint:conf:off"
"""

# pending https://github.com/nim-lang/Nim/pull/17852 use `--hints:none --hint:SuccessX:off`, or improve `isSuccess`

import macros

template ok(x) = doAssert(x)
Expand Down Expand Up @@ -247,9 +258,6 @@ echo t.foo, u.bar
#------------------------------------------------------------------------------
# issue #9679

discard """
output: ''''''
"""
type
Foo*[T] = object
bar*: int
Expand Down

0 comments on commit fb677bf

Please sign in to comment.