pleroma/test/xml_builder_test.exs

62 lines
1.5 KiB
Elixir
Raw Normal View History

2017-04-17 04:44:41 -07:00
defmodule Pleroma.XmlBuilderTest do
use Pleroma.DataCase
alias Pleroma.XmlBuilder
test "Build a basic xml string from a tuple" do
2018-03-30 06:01:53 -07:00
data = {:feed, %{xmlns: "http://www.w3.org/2005/Atom"}, "Some content"}
2017-04-17 04:44:41 -07:00
expected_xml = "<feed xmlns=\"http://www.w3.org/2005/Atom\">Some content</feed>"
assert XmlBuilder.to_xml(data) == expected_xml
end
test "returns a complete document" do
2018-03-30 06:01:53 -07:00
data = {:feed, %{xmlns: "http://www.w3.org/2005/Atom"}, "Some content"}
2017-04-17 04:44:41 -07:00
2018-03-30 06:01:53 -07:00
expected_xml =
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><feed xmlns=\"http://www.w3.org/2005/Atom\">Some content</feed>"
2017-04-17 04:44:41 -07:00
assert XmlBuilder.to_doc(data) == expected_xml
end
test "Works without attributes" do
data = {
:feed,
"Some content"
}
expected_xml = "<feed>Some content</feed>"
assert XmlBuilder.to_xml(data) == expected_xml
end
test "It works with nested tuples" do
data = {
:feed,
[
{:guy, "brush"},
2018-03-30 06:01:53 -07:00
{:lament, %{configuration: "puzzle"}, "pinhead"}
2017-04-17 04:44:41 -07:00
]
}
2018-03-30 06:01:53 -07:00
expected_xml =
~s[<feed><guy>brush</guy><lament configuration="puzzle">pinhead</lament></feed>]
2017-04-17 04:44:41 -07:00
assert XmlBuilder.to_xml(data) == expected_xml
end
test "Represents NaiveDateTime as iso8601" do
assert XmlBuilder.to_xml(~N[2000-01-01 13:13:33]) == "2000-01-01T13:13:33"
end
test "Uses self-closing tags when no content is giving" do
data = {
:link,
2018-03-30 06:01:53 -07:00
%{rel: "self"}
2017-04-17 04:44:41 -07:00
}
expected_xml = ~s[<link rel="self" />]
assert XmlBuilder.to_xml(data) == expected_xml
end
end