40 lines
1.6 KiB
Elixir
40 lines
1.6 KiB
Elixir
defmodule RDF.Star.NTriples.EncoderTest do
|
|
use RDF.Test.Case
|
|
|
|
alias RDF.NTriples
|
|
|
|
test "quoted triples on subject position" do
|
|
assert NTriples.Encoder.encode!(graph_with_annotation()) ==
|
|
"""
|
|
<< <http://example.com/S> <http://example.com/P> "Foo" >> <http://example.com/ap> <http://example.com/ao> .
|
|
"""
|
|
end
|
|
|
|
test "quoted triples on object position" do
|
|
assert NTriples.Encoder.encode!(
|
|
Graph.new([
|
|
statement(),
|
|
{EX.AS, EX.ap(), statement()}
|
|
])
|
|
) ==
|
|
"""
|
|
<http://example.com/AS> <http://example.com/ap> << <http://example.com/S> <http://example.com/P> "Foo" >> .
|
|
<http://example.com/S> <http://example.com/P> "Foo" .
|
|
"""
|
|
end
|
|
|
|
test "nested quoted triples" do
|
|
assert NTriples.Encoder.encode!(
|
|
Graph.new([
|
|
{
|
|
{{EX.s1(), EX.p1(), EX.o1()}, EX.q1(), {EX.s2(), EX.p2(), EX.o2()}},
|
|
EX.q2(),
|
|
{{EX.s3(), EX.p3(), EX.o3()}, EX.q3(), {EX.s4(), EX.p4(), EX.o4()}}
|
|
}
|
|
])
|
|
) ==
|
|
"""
|
|
<< << <http://example.com/s1> <http://example.com/p1> <http://example.com/o1> >> <http://example.com/q1> << <http://example.com/s2> <http://example.com/p2> <http://example.com/o2> >> >> <http://example.com/q2> << << <http://example.com/s3> <http://example.com/p3> <http://example.com/o3> >> <http://example.com/q3> << <http://example.com/s4> <http://example.com/p4> <http://example.com/o4> >> >> .
|
|
"""
|
|
end
|
|
end
|