summaryrefslogtreecommitdiffstats
path: root/contrib/python/simplejson/py2
diff options
context:
space:
mode:
authormaxim-yurchuk <[email protected]>2024-10-09 12:29:46 +0300
committermaxim-yurchuk <[email protected]>2024-10-09 13:14:22 +0300
commit9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80 (patch)
treea8fb3181d5947c0d78cf402aa56e686130179049 /contrib/python/simplejson/py2
parenta44b779cd359f06c3ebbef4ec98c6b38609d9d85 (diff)
publishFullContrib: true for ydb
<HIDDEN_URL> commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
Diffstat (limited to 'contrib/python/simplejson/py2')
-rw-r--r--contrib/python/simplejson/py2/simplejson/tests/_cibw_runner.py7
-rw-r--r--contrib/python/simplejson/py2/simplejson/tests/test_tool.py114
2 files changed, 121 insertions, 0 deletions
diff --git a/contrib/python/simplejson/py2/simplejson/tests/_cibw_runner.py b/contrib/python/simplejson/py2/simplejson/tests/_cibw_runner.py
new file mode 100644
index 00000000000..bffb70b8add
--- /dev/null
+++ b/contrib/python/simplejson/py2/simplejson/tests/_cibw_runner.py
@@ -0,0 +1,7 @@
+"""Internal module for running tests from cibuildwheel"""
+
+import sys
+import simplejson.tests
+
+if __name__ == '__main__':
+ simplejson.tests.main(project_dir=sys.argv[1])
diff --git a/contrib/python/simplejson/py2/simplejson/tests/test_tool.py b/contrib/python/simplejson/py2/simplejson/tests/test_tool.py
new file mode 100644
index 00000000000..914bff8bca5
--- /dev/null
+++ b/contrib/python/simplejson/py2/simplejson/tests/test_tool.py
@@ -0,0 +1,114 @@
+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()
+
+def open_temp_file():
+ if sys.version_info >= (2, 6):
+ file = tempfile.NamedTemporaryFile(delete=False)
+ filename = file.name
+ else:
+ fd, filename = tempfile.mkstemp()
+ file = os.fdopen(fd, 'w+b')
+ 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):
+ 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)