diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-19 14:06:36 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-19 14:06:36 -0700 |
commit | 3acc7d0914eb1ad883caf6a39685a807a17ba75c (patch) | |
tree | 69d0f4b23db5ef9955cb6de4971b61a968615920 /tests | |
parent | b077ef91502c2e723afe5e0130c85103b0118648 (diff) | |
parent | 31d3e3b2b640e210e577eaa01c292c92be84d953 (diff) | |
download | slixmpp-3acc7d0914eb1ad883caf6a39685a807a17ba75c.tar.gz slixmpp-3acc7d0914eb1ad883caf6a39685a807a17ba75c.tar.bz2 slixmpp-3acc7d0914eb1ad883caf6a39685a807a17ba75c.tar.xz slixmpp-3acc7d0914eb1ad883caf6a39685a807a17ba75c.zip |
Merge pull request #150 from correl/rpc_value_fixes
Updated XEP-0009 to handle unicode strings
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_stanza_xep_0009.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_stanza_xep_0009.py b/tests/test_stanza_xep_0009.py index 36800335..724ebb95 100644 --- a/tests/test_stanza_xep_0009.py +++ b/tests/test_stanza_xep_0009.py @@ -1,3 +1,5 @@ +# -*- encoding:utf-8 -*- + """ SleekXMPP: The Sleek XMPP Library Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON). @@ -114,6 +116,24 @@ class TestJabberRPC(SleekTest): self.assertEqual(params, xml2py(expected_xml), "XML to string conversion") + def testConvertUnicodeString(self): + params = [u"おはよう"] + params_xml = py2xml(*params) + expected_xml = self.parse_xml(""" + <params xmlns="jabber:iq:rpc"> + <param> + <value> + <string>おはよう</string> + </value> + </param> + </params> + """) + self.assertTrue(self.compare(expected_xml, params_xml), + "String to XML conversion\nExpected: %s\nGot: %s" % ( + tostring(expected_xml), tostring(params_xml))) + self.assertEqual(params, xml2py(expected_xml), + "XML to string conversion") + def testConvertInteger(self): params = [32767, -32768] params_xml = py2xml(*params) |