mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-10 05:38:10 +00:00
Add a test to xmlparser
This commit is contained in:
@@ -143,17 +143,24 @@ proc loadXml*(path: string): XmlNode =
|
||||
result = loadXml(path, errors)
|
||||
if errors.len > 0: raiseInvalidXml(errors)
|
||||
|
||||
when not defined(testing) and isMainModule:
|
||||
import os
|
||||
when isMainModule:
|
||||
when not defined(testing):
|
||||
import os
|
||||
|
||||
var errors: seq[string] = @[]
|
||||
var x = loadXml(paramStr(1), errors)
|
||||
for e in items(errors): echo e
|
||||
var errors: seq[string] = @[]
|
||||
var x = loadXml(paramStr(1), errors)
|
||||
for e in items(errors): echo e
|
||||
|
||||
var f: File
|
||||
if open(f, "xmltest.txt", fmWrite):
|
||||
f.write($x)
|
||||
f.close()
|
||||
var f: File
|
||||
if open(f, "xmltest.txt", fmWrite):
|
||||
f.write($x)
|
||||
f.close()
|
||||
else:
|
||||
quit("cannot write test.txt")
|
||||
else:
|
||||
quit("cannot write test.txt")
|
||||
block: # correctly parse ../../tests/testdata/doc1.xml
|
||||
let filePath = "tests/testdata/doc1.xml"
|
||||
var errors: seq[string] = @[]
|
||||
var xml = loadXml(filePath, errors)
|
||||
assert(errors.len == 0, "The file tests/testdata/doc1.xml should be parsed without errors.")
|
||||
|
||||
|
||||
1
tests/testdata/doc1.xml
vendored
1
tests/testdata/doc1.xml
vendored
@@ -5,6 +5,7 @@
|
||||
<test2>
|
||||
bla ah absy hsh
|
||||
hsh
|
||||
&woohoo;
|
||||
sjj
|
||||
</test2>
|
||||
<test><teh>bla</teh></test>
|
||||
|
||||
Reference in New Issue
Block a user