/opt/imunify360/venv/lib/python3.11/site-packages/simplejson/tests
NameSizeModeActions
__pycache__/-0755rm
test_bigint_as_string.py22380644editdlrm
test_bitsize_int_as_string.py45350644editdlrm
test_check_circular.py15790644editdlrm
test_decimal.py25440644editdlrm
test_decode.py74700644editdlrm
test_default.py2210644editdlrm
test_dump.py176000644editdlrm
test_encode_basestring_ascii.py23370644editdlrm
test_encode_for_html.py15150644editdlrm
test_errors.py35030644editdlrm
test_fail.py64540644editdlrm
test_float.py19830644editdlrm
test_for_json.py41260644editdlrm
test_free_threading.py31690644editdlrm
test_indent.py25680644editdlrm
test_item_sort_key.py13760644editdlrm
test_iterable.py25800644editdlrm
test_namedtuple.py73910644editdlrm
test_pass1.py17460644editdlrm
test_pass2.py3860644editdlrm
test_pass3.py4820644editdlrm
test_raw_json.py10620644editdlrm
test_recursion.py16790644editdlrm
test_scanstring.py120980644editdlrm
test_separators.py9420644editdlrm
test_speedups.py125900644editdlrm
test_str_subclass.py7400644editdlrm
test_subclass.py11240644editdlrm
test_subinterpreters.py46390644editdlrm
test_tool.py29960644editdlrm
test_tuple.py18310644editdlrm
test_unicode.py70560644editdlrm
_cibw_runner.py1730644editdlrm
_helpers.py4050644editdlrm
__init__.py29170644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/simplejson/tests/test_tool.py (2996B)
import os import re import sys import textwrap import unittest import subprocess import tempfile def strip_python_stderr(stderr): """Strip debug-build refcount output from stderr.""" return re.sub(b"\\[\\d+ refs\\]\\r?\\n?$", b"", stderr).strip() def open_temp_file(): file = tempfile.NamedTemporaryFile(delete=False) filename = file.name return file, filename class TestTool(unittest.TestCase): data = """ [["blorpie"],[ "whoops" ] , [ ],\t"d-shtaeou",\r"d-nthiouh", "i-vhbjkhnth", {"nifty":87}, {"morefield" :\tfalse,"field" :"yes"} ] """ expect = textwrap.dedent("""\ [ [ "blorpie" ], [ "whoops" ], [], "d-shtaeou", "d-nthiouh", "i-vhbjkhnth", { "nifty": 87 }, { "field": "yes", "morefield": false } ] """) def runTool(self, args=None, data=None): if sys.platform == 'emscripten': self.skipTest("subprocess not available on Emscripten") argv = [sys.executable, '-m', 'simplejson.tool'] if args: argv.extend(args) proc = subprocess.Popen(argv, stdin=subprocess.PIPE, stderr=subprocess.PIPE, stdout=subprocess.PIPE) out, err = proc.communicate(data) self.assertEqual(strip_python_stderr(err), ''.encode()) self.assertEqual(proc.returncode, 0) return out.decode('utf8').splitlines() def test_stdin_stdout(self): self.assertEqual( self.runTool(data=self.data.encode()), self.expect.splitlines()) def test_infile_stdout(self): infile, infile_name = open_temp_file() try: infile.write(self.data.encode()) infile.close() self.assertEqual( self.runTool(args=[infile_name]), self.expect.splitlines()) finally: os.unlink(infile_name) def test_infile_outfile(self): infile, infile_name = open_temp_file() try: infile.write(self.data.encode()) infile.close() # outfile will get overwritten by tool, so the delete # may not work on some platforms. Do it manually. outfile, outfile_name = open_temp_file() try: outfile.close() self.assertEqual( self.runTool(args=[infile_name, outfile_name]), []) with open(outfile_name, 'rb') as f: self.assertEqual( f.read().decode('utf8').splitlines(), self.expect.splitlines() ) finally: os.unlink(outfile_name) finally: os.unlink(infile_name)