summaryrefslogtreecommitdiffstats
path: root/python/t/210-setvalue.py
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-11-19 16:54:26 +0000
committerRichard W.M. Jones <rjones@redhat.com>2011-11-19 16:54:26 +0000
commit207402a20ac8be74e767876f8ac93aba6292b2a9 (patch)
tree961eb78edec509b6a55f27b0047a042ef5760ae6 /python/t/210-setvalue.py
parenta6ba26dca8dd496bec71d65746b3c3b65e604f03 (diff)
downloadhivex-207402a20ac8be74e767876f8ac93aba6292b2a9.tar.gz
hivex-207402a20ac8be74e767876f8ac93aba6292b2a9.tar.xz
hivex-207402a20ac8be74e767876f8ac93aba6292b2a9.zip
python: Support Python 3 (RHBZ#752916).
Diffstat (limited to 'python/t/210-setvalue.py')
-rw-r--r--python/t/210-setvalue.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/python/t/210-setvalue.py b/python/t/210-setvalue.py
index 1cb8c52..9d93519 100644
--- a/python/t/210-setvalue.py
+++ b/python/t/210-setvalue.py
@@ -15,6 +15,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+import sys
import os
import hivex
@@ -46,12 +47,20 @@ h.node_set_value (b, value1)
value1 = { "key": "Key1", "t": 3, "value": "JKL" }
h.node_set_value (b, value1)
+# In Python2, the data is returned as a string. In Python3, it is
+# returned as bytes. Provide a function to convert either to a string.
+def to_string (data):
+ if sys.version_info[0] == 2:
+ return data
+ else:
+ return str (data, "utf-8")
+
val = h.node_get_value (b, "Key1")
t_data = h.value_value (val)
assert t_data[0] == 3
-assert t_data[1] == "JKL"
+assert to_string (t_data[1]) == "JKL"
val = h.node_get_value (b, "Key3")
t_data = h.value_value (val)
assert t_data[0] == 3
-assert t_data[1] == "GHI"
+assert to_string (t_data[1]) == "GHI"