summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRobert McQueen <robot101@debian.org>2005-10-24 18:29:50 +0000
committerRobert McQueen <robot101@debian.org>2005-10-24 18:29:50 +0000
commitef47e01f7593c4844f927752c0462dae7722ff9e (patch)
treea8e947d38bf380c71566d21c7e79d6636dfcb1f2 /test
parent396b9c9e709f9abd6906a962382df409e118a48c (diff)
2005-10-24 Robert McQueen <robot101@debian.org>
* python/dbus_bindings.pyx (String, MessageIter): make D-Bus strings derive from unicode instead of str, and encode/decode UTF-8 when marshalling/unmarshalling bus messages * python/introspect_parser.py: encode introspection data as UTF-8 before passing the buffer into libxml2 * test/python/test-client.py: add unicode test strings * test/data/valid-service-files/.cvsignore, test/python/.cvsignore: ignore generated python test files
Diffstat (limited to 'test')
-rw-r--r--test/data/valid-service-files/.cvsignore3
-rw-r--r--test/python/.cvsignore2
-rwxr-xr-xtest/python/test-client.py2
3 files changed, 6 insertions, 1 deletions
diff --git a/test/data/valid-service-files/.cvsignore b/test/data/valid-service-files/.cvsignore
index ca3fbc75..b6f2adcf 100644
--- a/test/data/valid-service-files/.cvsignore
+++ b/test/data/valid-service-files/.cvsignore
@@ -1,5 +1,6 @@
debug-echo.service
-debug-segfault.service
debug-glib.service
+debug-python.service
+debug-segfault.service
debug-shell-echo-fail.service
debug-shell-echo-success.service
diff --git a/test/python/.cvsignore b/test/python/.cvsignore
new file mode 100644
index 00000000..282522db
--- /dev/null
+++ b/test/python/.cvsignore
@@ -0,0 +1,2 @@
+Makefile
+Makefile.in
diff --git a/test/python/test-client.py b/test/python/test-client.py
index 57965cc7..3cc1542b 100755
--- a/test/python/test-client.py
+++ b/test/python/test-client.py
@@ -23,6 +23,8 @@ if not dbus_bindings.__file__.startswith(pydir):
test_types_vals = [1, 12323231, 3.14159265, 99999999.99,
"dude", "123", "What is all the fuss about?", "gob@gob.com",
+ u'\\u310c\\u310e\\u3114', u'\\u0413\\u0414\\u0415',
+ u'\\u2200software \\u2203crack', u'\\xf4\\xe5\\xe8',
[1,2,3], ["how", "are", "you"], [1.23,2.3], [1], ["Hello"],
(1,2,3), (1,), (1,"2",3), ("2", "what"), ("you", 1.2),
{1:"a", 2:"b"}, {"a":1, "b":2}, #{"a":(1,"B")},