Skip to content

Commit

Permalink
Add Elixir tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mremond committed Feb 3, 2016
1 parent df7c39a commit 49d124a
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions test/elixir/fast_xml_test.exs
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright (C) 2002-2016 ProcessOne, SARL. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

defmodule FastXMLTest do
use ExUnit.Case

Expand All @@ -6,12 +20,18 @@ defmodule FastXMLTest do
test "Stream parser can return Elixir structs" do
s1 = :fxml_stream.new(self, :infinity, [:no_gen_server, :use_maps])
s2 = :fxml_stream.parse(s1, "<root>")
assert receive_result == %FastXML.StreamStart{name: "root"}
assert receive_stanza == %FastXML.StreamStart{name: "root"}
s3 = :fxml_stream.parse(s2, "<xmlelement>content cdata</xmlelement>")
assert receive_result == %FastXML.El{name: "xmlelement", children: ["content cdata"]}
s4 = :fxml_stream.parse(s3, "</root>")
assert receive_result == %FastXML.StreamEnd{name: "root"}
:fxml_stream.close(s4)
assert receive_stanza == %FastXML.El{name: "xmlelement", children: ["content cdata"]}
s4 = :fxml_stream.parse(s3, "<xmlelement><empty/><subelement attribute='true'>content cdata</subelement></xmlelement>")
assert receive_stanza == %FastXML.El{name: "xmlelement", children: ["content cdata"]}
s5 = :fxml_stream.parse(s4, "</root>")
assert receive_stanza == %FastXML.StreamEnd{name: "root"}
:fxml_stream.close(s5)
end

test "Size of parsed stanza can be limited" do
:todo
end

# TODO This test is failing at the moment
Expand All @@ -26,8 +46,10 @@ defmodule FastXMLTest do
# code: receive_result == %FastXML.StreamStart{name: "stream:stream", attrs: %{xmlns: "jabber:client"}}
# lhs: %{__struct__: FastXML.StreamError, desc: {27, "unbound prefix"}}
# rhs: %FastXML.StreamStart{attrs: %{xmlns: "jabber:client"}, name: "stream:stream"}

# TODO test mismatched tags

defp receive_result do
defp receive_stanza do
receive do
result ->
result
Expand All @@ -36,4 +58,3 @@ defmodule FastXMLTest do
end
end
end

0 comments on commit 49d124a

Please sign in to comment.