mirror of https://github.com/status-im/NimYAML.git
100 lines
4.0 KiB
Nim
100 lines
4.0 KiB
Nim
# NimYAML - YAML implementation in Nim
|
|
# (c) Copyright 2015 Felix Krause
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
|
|
import ../yaml, ../yaml/data
|
|
|
|
proc escapeNewlines(s: string): string =
|
|
result = ""
|
|
for c in s:
|
|
case c
|
|
of '\l': result.add("\\n")
|
|
of '\t': result.add("\\t")
|
|
of '\\': result.add("\\\\")
|
|
else: result.add(c)
|
|
|
|
proc printDifference(entity: string, expected, actual: Properties): bool =
|
|
result = false
|
|
if expected.tag != actual.tag:
|
|
echo "[", entity, ".tag] expected ", $expected.tag, ", got ", $actual.tag
|
|
result = true
|
|
if expected.anchor != actual.anchor:
|
|
echo "[", entity, ".anchor] expected ", $expected.anchor, ", got ", $actual.anchor
|
|
result = true
|
|
|
|
proc printDifference*(expected, actual: Event) =
|
|
if expected.kind != actual.kind:
|
|
echo "expected ", expected.kind, ", got ", $actual.kind
|
|
else:
|
|
case expected.kind
|
|
of yamlScalar:
|
|
if not printDifference("scalar", expected.scalarProperties, actual.scalarProperties):
|
|
if expected.scalarContent != actual.scalarContent:
|
|
let msg = "[scalarEvent] content mismatch!\nexpected: " &
|
|
escapeNewlines(expected.scalarContent) &
|
|
"\ngot : " & escapeNewlines(actual.scalarContent)
|
|
if expected.scalarContent.len != actual.scalarContent.len:
|
|
echo msg, "\n(length does not match)"
|
|
else:
|
|
for i in 0..expected.scalarContent.high:
|
|
if expected.scalarContent[i] != actual.scalarContent[i]:
|
|
echo msg, "\n(first different char at pos ", i, ": expected ",
|
|
cast[int](expected.scalarContent[i]), ", got ",
|
|
cast[int](actual.scalarContent[i]), ")"
|
|
break
|
|
else: echo "[scalar] Unknown difference"
|
|
of yamlStartMap:
|
|
if not printDifference("map", expected.mapProperties, actual.mapProperties):
|
|
echo "[map] Unknown difference"
|
|
of yamlStartSeq:
|
|
if not printDifference("seq", expected.seqProperties, actual.seqProperties):
|
|
echo "[seq] Unknown difference"
|
|
of yamlAlias:
|
|
if expected.aliasTarget != actual.aliasTarget:
|
|
echo "[alias] expected ", expected.aliasTarget, ", got ",
|
|
actual.aliasTarget
|
|
else: echo "[alias] Unknown difference"
|
|
else: echo "Unknown difference in event kind " & $expected.kind
|
|
|
|
template ensure*(input: var YamlStream,
|
|
expected: varargs[Event]) {.dirty.} =
|
|
var i = 0
|
|
for token in input:
|
|
if i >= expected.len:
|
|
echo "received more tokens than expected (next token = ", token.kind, ")"
|
|
fail()
|
|
break
|
|
if token != expected[i]:
|
|
echo "at event #" & $i & ":"
|
|
printDifference(expected[i], token)
|
|
fail()
|
|
break
|
|
i.inc()
|
|
|
|
template assertStringEqual*(expected, actual: string) =
|
|
if expected != actual:
|
|
# if they are unequal, walk through the strings and check each
|
|
# character for a better error message
|
|
if expected.len != actual.len:
|
|
echo "Expected and actual string's length differs.\n"
|
|
echo "Expected length: ", expected.len, "\n"
|
|
echo "Actual length: ", actual.len, "\n"
|
|
# check length up to smaller of the two strings
|
|
for i in countup(0, min(expected.high, actual.high)):
|
|
if expected[i] != actual[i]:
|
|
echo "string mismatch at character #", i, "(expected:\'",
|
|
expected[i], "\', was \'", actual[i], "\'):\n"
|
|
echo "expected:\n", expected, "\nactual:\n", actual, "\n"
|
|
assert(false)
|
|
# if we haven't raised an assertion error here, the problem is that
|
|
# one string is longer than the other
|
|
let minInd = min(expected.len, actual.len) # len instead of high to continue
|
|
# after shorter string
|
|
if expected.high > actual.high:
|
|
echo "Expected continues with: '", expected[minInd .. ^1], "'"
|
|
assert false
|
|
else:
|
|
echo "Actual continues with: '", actual[minInd .. ^1], "'"
|
|
assert false |