PATH:
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
simplejson
/
tests
import unittest import simplejson as json class TestEncodeForHTML(unittest.TestCase): def setUp(self): self.decoder = json.JSONDecoder() self.encoder = json.JSONEncoderForHTML() self.non_ascii_encoder = json.JSONEncoderForHTML(ensure_ascii=False) def test_basic_encode(self): self.assertEqual(r'"\u0026"', self.encoder.encode('&')) self.assertEqual(r'"\u003c"', self.encoder.encode('<')) self.assertEqual(r'"\u003e"', self.encoder.encode('>')) self.assertEqual(r'"\u2028"', self.encoder.encode(u'\u2028')) def test_non_ascii_basic_encode(self): self.assertEqual(r'"\u0026"', self.non_ascii_encoder.encode('&')) self.assertEqual(r'"\u003c"', self.non_ascii_encoder.encode('<')) self.assertEqual(r'"\u003e"', self.non_ascii_encoder.encode('>')) self.assertEqual(r'"\u2028"', self.non_ascii_encoder.encode(u'\u2028')) def test_basic_roundtrip(self): for char in '&<>': self.assertEqual( char, self.decoder.decode( self.encoder.encode(char))) def test_prevent_script_breakout(self): bad_string = '</script><script>alert("gotcha")</script>' self.assertEqual( r'"\u003c/script\u003e\u003cscript\u003e' r'alert(\"gotcha\")\u003c/script\u003e"', self.encoder.encode(bad_string)) self.assertEqual( bad_string, self.decoder.decode( self.encoder.encode(bad_string)))
[-] test_separators.py
[edit]
[-] test_speedups.py
[edit]
[-] test_namedtuple.py
[edit]
[-] test_indent.py
[edit]
[-] test_check_circular.py
[edit]
[-] test_decode.py
[edit]
[-] test_dump.py
[edit]
[-] test_raw_json.py
[edit]
[+]
..
[-] _cibw_runner.py
[edit]
[-] test_unicode.py
[edit]
[-] test_float.py
[edit]
[-] test_errors.py
[edit]
[-] test_encode_basestring_ascii.py
[edit]
[-] test_subclass.py
[edit]
[-] test_decimal.py
[edit]
[-] test_encode_for_html.py
[edit]
[-] test_default.py
[edit]
[-] test_iterable.py
[edit]
[-] test_fail.py
[edit]
[-] test_bitsize_int_as_string.py
[edit]
[-] test_tool.py
[edit]
[+]
__pycache__
[-] test_bigint_as_string.py
[edit]
[-] test_for_json.py
[edit]
[-] test_pass3.py
[edit]
[-] test_pass2.py
[edit]
[-] test_item_sort_key.py
[edit]
[-] __init__.py
[edit]
[-] test_str_subclass.py
[edit]
[-] test_scanstring.py
[edit]
[-] test_recursion.py
[edit]
[-] test_tuple.py
[edit]
[-] test_pass1.py
[edit]