1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import os
import sys
import logging
log = logging.getLogger(__name__)
try:
from .testutils import check_serialize_parse
except:
from test.testutils import check_serialize_parse
def _get_test_files_formats():
skiptests = [
]
for f in os.listdir('test/n3'):
if f not in skiptests:
fpath = "test/n3/" + f
if f.endswith('.rdf'):
yield fpath, 'xml'
elif f.endswith('.n3'):
yield fpath, 'n3'
def all_n3_files():
skiptests = [
'test/n3/example-lots_of_graphs.n3', # only n3 can serialize QuotedGraph, no point in testing roundtrip
]
for fpath, fmt in _get_test_files_formats():
if fpath in skiptests:
log.debug("Skipping %s, known issue" % fpath)
else:
yield fpath, fmt
def test_n3_writing():
for fpath, fmt in _get_test_files_formats():
yield check_serialize_parse, fpath, fmt, 'n3'
if __name__ == "__main__":
if len(sys.argv) > 1:
check_serialize_parse(sys.argv[1], 'n3', 'n3', True)
sys.exit()
else:
import nose
nose.main(defaultTest=__name__)
|