[test/helper] Check got values to be strings for md5: fields
authorYen Chi Hsuan <yan12125@gmail.com>
Sat, 9 Apr 2016 14:04:48 +0000 (22:04 +0800)
committerYen Chi Hsuan <yan12125@gmail.com>
Sat, 9 Apr 2016 14:04:48 +0000 (22:04 +0800)
Seen in PBSIE tests

test/helper.py

index f2d87821290095c1f9526f50db5d80ab31969d56..b8e22c5cb42f2e14465e812ed624aaa5e102ff5c 100644 (file)
@@ -143,6 +143,9 @@ def expect_value(self, got, expected, field):
             expect_value(self, item_got, item_expected, field)
     else:
         if isinstance(expected, compat_str) and expected.startswith('md5:'):
+            self.assertTrue(
+                isinstance(got, compat_str),
+                'Expected field %s to be a unicode object, but got value %r of type %r' % (field, got, type(got)))
             got = 'md5:' + md5(got)
         elif isinstance(expected, compat_str) and expected.startswith('mincount:'):
             self.assertTrue(