/opt/alt/python37/lib64/python3.7/site-packages/simplejson/tests
NameSizeModeActions
__pycache__/-0755rm
test_bigint_as_string.py22380644editdlrm
test_bitsize_int_as_string.py22970644editdlrm
test_check_circular.py9170644editdlrm
test_decimal.py25440644editdlrm
test_decode.py40210644editdlrm
test_default.py2210644editdlrm
test_dump.py49990644editdlrm
test_encode_basestring_ascii.py23370644editdlrm
test_encode_for_html.py10220644editdlrm
test_errors.py15490644editdlrm
test_fail.py63460644editdlrm
test_float.py14300644editdlrm
test_for_json.py27670644editdlrm
test_indent.py25680644editdlrm
test_item_sort_key.py13760644editdlrm
test_iterable.py13900644editdlrm
test_namedtuple.py40040644editdlrm
test_pass1.py17460644editdlrm
test_pass2.py3860644editdlrm
test_pass3.py4820644editdlrm
test_raw_json.py10620644editdlrm
test_recursion.py16790644editdlrm
test_scanstring.py73110644editdlrm
test_separators.py9420644editdlrm
test_speedups.py31060644editdlrm
test_str_subclass.py5510644editdlrm
test_subclass.py11240644editdlrm
test_tool.py28530644editdlrm
test_tuple.py18310644editdlrm
test_unicode.py69960644editdlrm
__init__.py19790644editdlrm
Edit: /opt/alt/python37/lib64/python3.7/site-packages/simplejson/tests/test_tool.py (2853B)
from __future__ import with_statement import os import sys import textwrap import unittest import subprocess import tempfile try: # Python 3.x from test.support import strip_python_stderr except ImportError: # Python 2.6+ try: from test.test_support import strip_python_stderr except ImportError: # Python 2.5 import re def strip_python_stderr(stderr): return re.sub( r"\[\d+ refs\]\r?\n?$".encode(), "".encode(), stderr).strip() 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): 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 def test_stdin_stdout(self): self.assertEqual( self.runTool(data=self.data.encode()), self.expect.encode()) def test_infile_stdout(self): with tempfile.NamedTemporaryFile() as infile: infile.write(self.data.encode()) infile.flush() self.assertEqual( self.runTool(args=[infile.name]), self.expect.encode()) def test_infile_outfile(self): with tempfile.NamedTemporaryFile() as infile: infile.write(self.data.encode()) infile.flush() # outfile will get overwritten by tool, so the delete # may not work on some platforms. Do it manually. outfile = tempfile.NamedTemporaryFile() try: self.assertEqual( self.runTool(args=[infile.name, outfile.name]), ''.encode()) with open(outfile.name, 'rb') as f: self.assertEqual(f.read(), self.expect.encode()) finally: outfile.close() if os.path.exists(outfile.name): os.unlink(outfile.name)