浏览代码

[test_utils] Add tests for malformed JSON handling in js_to_json

Sergey M․ 7 年之前
父节点
当前提交
c707b1d828
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      test/test_utils.py

+ 4 - 0
test/test_utils.py

@@ -891,6 +891,10 @@ class TestUtil(unittest.TestCase):
         on = js_to_json('{42:4.2e1}')
         on = js_to_json('{42:4.2e1}')
         self.assertEqual(json.loads(on), {'42': 42.0})
         self.assertEqual(json.loads(on), {'42': 42.0})
 
 
+    def test_js_to_json_malformed(self):
+        self.assertEqual(js_to_json('42a1'), '42"a1"')
+        self.assertEqual(js_to_json('42a-1'), '42"a"-1')
+
     def test_extract_attributes(self):
     def test_extract_attributes(self):
         self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
         self.assertEqual(extract_attributes('<e x="y">'), {'x': 'y'})
         self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})
         self.assertEqual(extract_attributes("<e x='y'>"), {'x': 'y'})