From baf9aaf26c80c87e770cdf35b1fa4fe231663246 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Wed, 19 Jun 2013 08:21:54 -0700 Subject: Add test for nodeprep idempotency after explicitly using Unicode 3.2 --- tests/test_jid.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests') diff --git a/tests/test_jid.py b/tests/test_jid.py index aeb635a1..76e56586 100644 --- a/tests/test_jid.py +++ b/tests/test_jid.py @@ -1,5 +1,8 @@ +# -*- encoding: utf8 -*- +from __future__ import unicode_literals from sleekxmpp.test import * from sleekxmpp import JID, InvalidJID +from sleekxmpp.jid import nodeprep class TestJIDClass(SleekTest): @@ -278,5 +281,9 @@ class TestJIDClass(SleekTest): #self.assertRaises(InvalidJID, JID, '%s@example.com' % '\\20foo2') #self.assertRaises(InvalidJID, JID, '%s@example.com' % 'bar2\\20') + def testNodePrepIdemptotent(self): + node = 'ᴹᴵᴷᴬᴱᴸ' + self.assertEqual(nodeprep(node), nodeprep(nodeprep(node))) + suite = unittest.TestLoader().loadTestsFromTestCase(TestJIDClass) -- cgit v1.2.3