namespace Xmpp.Test { class StanzaTest : Gee.TestCase { public StanzaTest() { base("Stanza"); add_async_test("node_one", (cb) => { test_node_one.begin(cb); }); add_async_test("typical_stream", (cb) => { test_typical_stream.begin(cb); }); add_async_test("ack_stream", (cb) => { test_ack_stream.begin(cb); }); } private async void test_node_one(Gee.TestFinishedCallback cb) { var node1 = new StanzaNode.build("test", "ns1_uri") .add_self_xmlns() .put_attribute("ns2", "ns2_uri", XMLNS_URI) .put_attribute("bla", "blub") .put_node(new StanzaNode.build("testaa", "ns2_uri") .put_attribute("ns3", "ns3_uri", XMLNS_URI)) .put_node(new StanzaNode.build("testbb", "ns3_uri") .add_self_xmlns()); var xml1 = node1.to_xml(); var node2 = yield new StanzaReader.for_string(xml1).read_node(); fail_if_not(node1.equals(node2)); fail_if_not_eq_str(node1.to_string(), node2.to_string()); cb(); } private async void test_typical_stream(Gee.TestFinishedCallback cb) { var stream = """ I'll send a friar with speed, to Mantua, with my letters to thy lord. """; var root_node_cmp = new StanzaNode.build("stream", "http://etherx.jabber.org/streams") .put_attribute("to", "example.com") .put_attribute("xmlns", "jabber:client") .put_attribute("stream", "http://etherx.jabber.org/streams", XMLNS_URI) .put_attribute("version", "1.0"); var node_cmp = new StanzaNode.build("message") .put_attribute("from", "laurence@example.net/churchyard") .put_attribute("to", "juliet@example.com") .put_attribute("lang", "en", XML_URI) .put_node(new StanzaNode.build("body") .put_node(new StanzaNode.text(" I'll send a friar with speed, to Mantua, with my letters to thy lord."))); var reader = new StanzaReader.for_string(stream); fail_if_not_eq_node(root_node_cmp, yield reader.read_root_node()); fail_if_not_eq_node(node_cmp, yield reader.read_node()); yield reader.read_node(); yield fail_if_not_end_of_stream(reader); cb(); } private async void fail_if_not_end_of_stream(StanzaReader reader) { try { yield reader.read_node(); fail_if_reached("end of stream should be reached"); } catch (IOError.CLOSED e) { return; } catch (Error e) { fail_if_reached("Unexpected error"); } } private async void test_ack_stream(Gee.TestFinishedCallback cb) { var stream = """ """; var root_node_cmp = new StanzaNode.build("stream", "http://etherx.jabber.org/streams") .put_attribute("to", "example.com") .put_attribute("xmlns", "jabber:client") .put_attribute("stream", "http://etherx.jabber.org/streams", XMLNS_URI) .put_attribute("ack", "http://jabber.org/protocol/ack", XMLNS_URI) .put_attribute("version", "1.0"); var node_cmp = new StanzaNode.build("features", XmppStream.NS_URI) .put_node(new StanzaNode.build("ack", "http://jabber.org/protocol/ack")) .put_node(new StanzaNode.build("bind", "urn:ietf:params:xml:ns:xmpp-bind") .add_self_xmlns() .put_node(new StanzaNode.build("required", "urn:ietf:params:xml:ns:xmpp-bind"))); var node2_cmp = new StanzaNode.build("r", "http://jabber.org/protocol/ack"); var reader = new StanzaReader.for_string(stream); fail_if_not_eq_node(root_node_cmp, yield reader.read_root_node()); fail_if_not_eq_node(node_cmp, yield reader.read_node()); fail_if_not_eq_node(node2_cmp, yield reader.read_node()); yield reader.read_node(); yield fail_if_not_end_of_stream(reader); cb(); } } }