Merge branch 'master' of github.com:Araq/Nimrod

This commit is contained in:
Araq
2013-06-13 01:40:35 +02:00
17 changed files with 152 additions and 75 deletions

7
.gitignore vendored
View File

@@ -167,10 +167,13 @@ examples/cross_calculator/android/tags
/run.json
/testresults.html
/testresults.json
/tests/caas/SymbolProcRun.*/
/tests/caas/idetools_api
/tests/caas/imported
/tests/caas/issue_416
/tests/caas/issue_452
/tests/caas/issue_416_template_shift
/tests/caas/issue_452_export_shift
/tests/caas/issue_477_dynamic_dispatch
/tests/caas/main
/tests/caasdriver
/tools/nimgrep
no changes added to commit (use "git add" and/or "git commit -a")

View File

@@ -1,8 +1,7 @@
main.nim
> c
SuccessX
# Ugh, undocumented trackDirty, how is it supposed to work? Fails in proc mode.
> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest
CaasRun skField\tx
CaasRun skField\ty
> idetools --trackDirty:main_dirty.nim,$TESTNIM,12,7 --suggest
skField\tx
skField\ty

View File

@@ -1,9 +1,9 @@
main.nim
> c
SuccessX
> idetools --track:main.nim,5,18 --def
> idetools --track:$TESTNIM,5,18 --def
strutils.toUpper
! SuccessX
> idetools --track:main.nim,5,18 --def
> idetools --track:$TESTNIM,5,18 --def
strutils.toUpper
! SuccessX

View File

@@ -1,8 +1,8 @@
main.nim
> idetools --track:main.nim,5,18 --def
> idetools --track:$TESTNIM,5,18 --def
strutils.toUpper
! SuccessX
> idetools --track:main.nim,5,18 --def
> idetools --track:$TESTNIM,5,18 --def
strutils.toUpper
! SuccessX
> c

View File

@@ -1,5 +1,5 @@
main.nim
> idetools --track:main.nim,5,18 --def
> idetools --track:$TESTNIM,5,18 --def
strutils.toUpper
! SuccessX
> c

View File

@@ -21,3 +21,23 @@ type
proc adder(a, b: int): int =
result = a + b
type
PExpr = ref object of TObject ## abstract base class for an expression
PLiteral = ref object of PExpr
x: int
PPlusExpr = ref object of PExpr
a, b: PExpr
# watch out: 'eval' relies on dynamic binding
method eval(e: PExpr): int =
# override this base method
quit "to override!"
method eval(e: PLiteral): int = e.x
method eval(e: PPlusExpr): int = eval(e.a) + eval(e.b)
proc newLit(x: int): PLiteral = PLiteral(x: x)
proc newPlus(a, b: PExpr): PPlusExpr = PPlusExpr(a: a, b: b)
echo eval(newPlus(newPlus(newLit(1), newLit(2)), newLit(4)))

View File

@@ -1,41 +1,44 @@
idetools_api.nim
> c
SuccessX
> idetools --track:idetools_api.nim,4,11 --def
> idetools --track:$TESTNIM,4,11 --def
def\tskType\tsystem.TFile\tTFile
> idetools --track:idetools_api.nim,5,7 --def
> idetools --track:$TESTNIM,5,7 --def
def\tskProc\tsystem.Open\tproc \(var TFile, string, TFileMode, int\): bool
> idetools --track:idetools_api.nim,5,21 --def
> idetools --track:$TESTNIM,5,21 --def
def\tskProc\tsystem.\&\tproc \(string, string\): string\{.noSideEffect.\}
> idetools --track:idetools_api.nim,5,38 --def
> idetools --track:$TESTNIM,5,38 --def
def\tskEnumField\tsystem.TFileMode.fmWrite\tTFileMode
> idetools --track:idetools_api.nim,7,6 --def
> idetools --track:$TESTNIM,7,6 --def
def\tskProc\tsystem.Close\tproc \(TFile\)
> idetools --track:idetools_api.nim,12,23 --def
> idetools --track:$TESTNIM,12,23 --def
def\tskIterator\tunicode.runes\titerator \(string\): TRune
> idetools --track:idetools_api.nim,12,15 --def
> idetools --track:$TESTNIM,12,15 --def
def\tskTemplate\tsequtils.toSeq\tproc \(expr\): expr
> idetools --track:idetools_api.nim,15,7 --def
> idetools --track:$TESTNIM,15,7 --def
# ProcRun mode will fail the next line, because the type is returned empty.
def\tskConst\tidetools_api.SOME_SEQUENCE\tseq\[int\]\t
> idetools --track:idetools_api.nim,15,23 --def
def\tskConst\t$MODULE.SOME_SEQUENCE\tseq\[int\]\t
> idetools --track:$TESTNIM,15,23 --def
def\tskProc\tsystem.@\tproc \(array\[IDX, T\]\): seq\[T\]\{.noSideEffect.\}
> idetools --track:idetools_api.nim,17,3 --def
> idetools --track:$TESTNIM,17,3 --def
# ProcRun mode will fail the next line, because the type is returned empty.
def\tskType\tidetools_api.bad_string\tbad_string\t
> idetools --track:idetools_api.nim,11,24 --def
def\tskParam\tidetools_api.test_iterators.filename\tstring
> idetools --track:idetools_api.nim,6,5 --def
def\tskVar\tidetools_api.test_enums.o\tTFile
> idetools --track:idetools_api.nim,12,34 --def
def\tskLet\tidetools_api.test_iterators.input\tTaintedString
> idetools --track:idetools_api.nim,13,35 --def
def\tskForVar\tidetools_api.test_iterators.letter\tTRune
> idetools --track:idetools_api.nim,23,3 --def
def\tskResult\tidetools_api.adder.result\tint
> idetools --track:idetools_api.nim,19,6 --def
def\tskType\t$MODULE.bad_string\tbad_string\t
> idetools --track:$TESTNIM,11,24 --def
def\tskParam\t$MODULE.test_iterators.filename\tstring
> idetools --track:$TESTNIM,6,5 --def
def\tskVar\t$MODULE.test_enums.o\tTFile
> idetools --track:$TESTNIM,12,34 --def
def\tskLet\t$MODULE.test_iterators.input\tTaintedString
> idetools --track:$TESTNIM,13,35 --def
def\tskForVar\t$MODULE.test_iterators.letter\tTRune
> idetools --track:$TESTNIM,23,3 --def
def\tskResult\t$MODULE.adder.result\tint
> idetools --track:$TESTNIM,19,6 --def
# ProcRun mode will fail the next line, because the type is returned empty.
def\tskField\tidetools_api.TPerson.name\tbad_string\t
def\tskField\t$MODULE.TPerson.name\tbad_string\t
> idetools --track:$TESTNIM,43,7 --def
def\tskMethod\t$MODULE.eval\tproc \(PPlusExpr\): int\t

View File

@@ -1,14 +0,0 @@
issue_416.nim
> c
SuccessX
> idetools --track:issue_416.nim,12,28 --def
def\tskType\tsystem.string\tstring
> idetools --track:issue_416.nim,12,35 --def
def\tskLet\tissue_416.failtest.input\tTaintedString
# The following fail because they seem shifted one colum to the right.
> idetools --track:issue_416.nim,12,16 --def
def\tskTemplate\tsequtils.toSeq\tproc \(expr\): expr
> idetools --track:issue_416.nim,12,22 --def
def\tskIterator\tunicode.runes\titerator \(string\): TRune

View File

@@ -0,0 +1,14 @@
issue_416_template_shift.nim
> c
SuccessX
> idetools --track:$TESTNIM,12,28 --def
def\tskType\tsystem.string\tstring
> idetools --track:$TESTNIM,12,35 --def
def\tskLet\t$MODULE.failtest.input\tTaintedString
# The following fail because they seem shifted one colum to the right.
> idetools --track:$TESTNIM,12,16 --def
def\tskTemplate\tsequtils.toSeq\tproc \(expr\): expr
> idetools --track:$TESTNIM,12,22 --def
def\tskIterator\tunicode.runes\titerator \(string\): TRune

View File

@@ -1,11 +0,0 @@
issue_452.nim
> c
SuccessX
> idetools --track:issue_452.nim,2,2 --def
def\tskConst\tissue_452.VERSION_STR1\tstring
> idetools --track:issue_452.nim,3,2 --def
def\tskConst\tissue_452.VERSION_STR2\tstring
> idetools --track:issue_452.nim,7,5 --def
def\tskProc\tissue_452.forward1\tproc \(\): string\t
> idetools --track:issue_452.nim,8,5 --def
def\tskProc\tissue_452.forward2\tproc \(\): string\t

View File

@@ -0,0 +1,11 @@
issue_452_export_shift.nim
> c
SuccessX
> idetools --track:$TESTNIM,2,2 --def
def\tskConst\t$MODULE.VERSION_STR1\tstring
> idetools --track:$TESTNIM,3,2 --def
def\tskConst\t$MODULE.VERSION_STR2\tstring
> idetools --track:$TESTNIM,7,5 --def
def\tskProc\t$MODULE.forward1\tproc \(\): string\t
> idetools --track:$TESTNIM,8,5 --def
def\tskProc\t$MODULE.forward2\tproc \(\): string\t

View File

@@ -0,0 +1,19 @@
type
TThing = object of TObject
TUnit = object of TThing
x: int
method collide(a, b: TThing) {.inline.} =
quit "to override!"
method collide(a: TThing, b: TUnit) {.inline.} =
echo "collide1"
method collide(a: TUnit, b: TThing) {.inline.} =
echo "collide2"
var
a, b: TUnit
when isMainModule:
collide(a, b) # output: 2

View File

@@ -0,0 +1,5 @@
issue_477_dynamic_dispatch.nim
> c --run
SuccessX
> idetools --track:issue_477_dynamic_dispatch.nim,19,5 --def
def\tskMethod\tissue_477_dynamic_dispatch.collide\tproc \(TUnit, TThing\)\{.inline.\}

View File

@@ -1,6 +1,5 @@
main.nim
# Ugh, undocumented trackDirty, how is it supposed to work? Fails in proc mode.
> idetools --trackDirty:main_dirty.nim,main.nim,12,7 --suggest
> idetools --trackDirty:main_dirty.nim,$TESTNIM,12,7 --suggest
skField\tx
skField\ty
> c

View File

@@ -22,7 +22,12 @@ import osproc, streams, os, strutils, re
## only in that mode.
##
## The rest of the line is treated as a regular expression, so be careful
## escaping metacharacters like parenthesis.
## escaping metacharacters like parenthesis. Before the line is processed as a
## regular expression, some basic variables are searched for and replaced in
## the tests. The variables which will be replaced are:
##
## - $TESTNIM: filename specified in the first line of the script.
## - $MODULE: like $TESTNIM but without extension, useful for expected output.
##
## You can optionally pass parameters at the command line to modify the
## behaviour of the test suite. By default only tests which fail will be echoed
@@ -40,32 +45,50 @@ import osproc, streams, os, strutils, re
type
TRunMode = enum
ProcRun, CaasRun
ProcRun, CaasRun, SymbolProcRun
TNimrodSession* = object
nim: PProcess # Holds the open process for CaasRun sessions, nil otherwise.
mode: TRunMode # Stores the type of run mode the session was started with.
lastOutput: string # Preserves the last output, needed for ProcRun mode.
filename: string # Appended to each command starting with '>'.
filename: string # Appended to each command starting with '>'. Also a var.
modname: string # Like filename but without extension.
nimcache: string # Input script based name for the nimcache dir.
const modes = [CaasRun, ProcRun]
const
modes = [CaasRun, ProcRun, SymbolProcRun]
filenameReplaceVar = "$TESTNIM"
moduleReplaceVar = "$MODULE"
var
TesterDir = getAppDir()
NimrodBin = TesterDir / "../bin/nimrod"
proc startNimrodSession(project: string, mode: TRunMode): TNimrodSession =
let (dir, name) = project.SplitPath
proc replaceVars(session: var TNimrodSession, text: string): string =
result = text.replace(filenameReplaceVar, session.filename)
result = result.replace(moduleReplaceVar, session.modname)
proc startNimrodSession(project, script: string, mode: TRunMode):
TNimrodSession =
let (dir, name, ext) = project.splitFile
result.mode = mode
result.lastOutput = ""
result.filename = name
result.filename = name & ext
result.modname = name
let (nimcacheDir, nimcacheName, nimcacheExt) = script.splitFile
result.nimcache = "SymbolProcRun." & nimcacheName
if mode == SymbolProcRun:
removeDir(nimcacheDir / result.nimcache)
if mode == CaasRun:
result.nim = startProcess(NimrodBin, workingDir = dir,
args = ["serve", "--server.type:stdin", name])
proc doCaasCommand(session: var TNimrodSession, command: string): string =
assert session.mode == CaasRun
session.nim.inputStream.write(command & "\n")
session.nim.inputStream.write(session.replaceVars(command) & "\n")
session.nim.inputStream.flush
result = ""
@@ -80,10 +103,10 @@ proc doCaasCommand(session: var TNimrodSession, command: string): string =
break
proc doProcCommand(session: var TNimrodSession, command: string): string =
assert session.mode == ProcRun
assert session.mode == ProcRun or session.mode == SymbolProcRun
except: result = "FAILED TO EXECUTE: " & command & "\n" & result
var
process = startProcess(NimrodBin, args = command.split)
process = startProcess(NimrodBin, args = session.replaceVars(command).split)
stream = outputStream(process)
line = TaintedString("")
@@ -99,6 +122,12 @@ proc doCommand(session: var TNimrodSession, command: string) =
session.lastOutput = doCaasCommand(session,
command & " " & session.filename)
else:
var command = command
# For symbol runs we prepend the necessary parameters to avoid clobbering
# the normal nimcache.
if session.mode == SymbolProcRun:
command = "--symbolFiles:on --nimcache:" & session.nimcache &
" " & command
session.lastOutput = doProcCommand(session,
command & " " & session.filename)
@@ -114,7 +143,7 @@ proc doScenario(script: string, output: PStream, mode: TRunMode): bool =
if f.readLine(project):
var
s = startNimrodSession(script.parentDir / project.string, mode)
s = startNimrodSession(script.parentDir / project.string, script, mode)
tline = TaintedString("")
ln = 1
@@ -141,9 +170,9 @@ proc doScenario(script: string, output: PStream, mode: TRunMode): bool =
output.writeln line, "\n", s.lastOutput
else:
var expectMatch = true
var pattern = line
var pattern = s.replaceVars(line)
if line.startsWith("!"):
pattern = line.substr(1).strip
pattern = pattern.substr(1).strip
expectMatch = false
let actualMatch =