Adds support of reading from io.TextIOBase Adds hidden support of reading from str and bytes Improves test coveragepull/238/head
parent
e686e8ce8f
commit
241bd763fa
@ -1,44 +1,58 @@ |
|||||||
import unittest |
import unittest |
||||||
import io |
from io import StringIO, BytesIO, RawIOBase |
||||||
|
from tempfile import NamedTemporaryFile |
||||||
|
|
||||||
from pyoxigraph import * |
from pyoxigraph import * |
||||||
|
|
||||||
|
|
||||||
class TestParse(unittest.TestCase): |
EXAMPLE_TRIPLE = Triple( |
||||||
def test_parse(self): |
|
||||||
input = io.BytesIO(b'<foo> <p> "1" .') |
|
||||||
result = list(parse(input, "text/turtle", base_iri="http://example.com/")) |
|
||||||
|
|
||||||
self.assertEqual( |
|
||||||
result, |
|
||||||
[ |
|
||||||
Triple( |
|
||||||
NamedNode("http://example.com/foo"), |
NamedNode("http://example.com/foo"), |
||||||
NamedNode("http://example.com/p"), |
NamedNode("http://example.com/p"), |
||||||
Literal( |
Literal("1") |
||||||
"1", |
|
||||||
datatype=NamedNode("http://www.w3.org/2001/XMLSchema#string"), |
|
||||||
), |
|
||||||
) |
|
||||||
], |
|
||||||
) |
) |
||||||
|
|
||||||
|
|
||||||
class TestSerialize(unittest.TestCase): |
class TestParse(unittest.TestCase): |
||||||
def test_serialize(self): |
def test_parse_file(self): |
||||||
output = io.BytesIO() |
with NamedTemporaryFile() as fp: |
||||||
serialize( |
fp.write(b'<foo> <p> "1" .') |
||||||
[ |
fp.flush() |
||||||
Triple( |
self.assertEqual( |
||||||
NamedNode("http://example.com"), |
list(parse(fp.name, "text/turtle", base_iri="http://example.com/")), |
||||||
NamedNode("http://example.com/p"), |
[EXAMPLE_TRIPLE] |
||||||
Literal("1"), |
|
||||||
) |
) |
||||||
], |
|
||||||
output, |
def test_parse_not_existing_file(self): |
||||||
"text/turtle", |
with self.assertRaises(IOError) as _: |
||||||
|
parse("/tmp/not-existing-oxigraph-file.ttl", "text/turtle") |
||||||
|
|
||||||
|
def test_parse_str_io(self): |
||||||
|
self.assertEqual( |
||||||
|
list(parse(StringIO('<foo> <p> "1" .'), "text/turtle", base_iri="http://example.com/")), |
||||||
|
[EXAMPLE_TRIPLE] |
||||||
) |
) |
||||||
|
|
||||||
|
def test_parse_bytes_io(self): |
||||||
self.assertEqual( |
self.assertEqual( |
||||||
output.getvalue(), b'<http://example.com> <http://example.com/p> "1" .\n' |
list(parse(BytesIO(b'<foo> <p> "1" .'), "text/turtle", base_iri="http://example.com/")), |
||||||
|
[EXAMPLE_TRIPLE] |
||||||
) |
) |
||||||
|
|
||||||
|
def test_parse_io_error(self): |
||||||
|
class BadIO(RawIOBase): |
||||||
|
pass |
||||||
|
|
||||||
|
with self.assertRaises(NotImplementedError) as _: |
||||||
|
list(parse(BadIO(), mime_type="application/n-triples")) |
||||||
|
|
||||||
|
|
||||||
|
class TestSerialize(unittest.TestCase): |
||||||
|
def test_serialize_to_bytes_io(self): |
||||||
|
output = BytesIO() |
||||||
|
serialize([EXAMPLE_TRIPLE], output, "text/turtle") |
||||||
|
self.assertEqual(output.getvalue(), b'<http://example.com/foo> <http://example.com/p> "1" .\n') |
||||||
|
|
||||||
|
def test_serialize_to_file(self): |
||||||
|
with NamedTemporaryFile() as fp: |
||||||
|
serialize([EXAMPLE_TRIPLE], fp.name, "text/turtle") |
||||||
|
self.assertEqual(fp.read(), b'<http://example.com/foo> <http://example.com/p> "1" .\n') |
||||||
|
Loading…
Reference in new issue