mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 20:55:35 -05:00
43c6c1a9f5
* use subclass of unittest.TestCase for all test cases * allow to run single test file (eg. python tools/integration_tests.py) * test filtering (via --pattern/-p CLI flag) * use common CLI parser for all tests: usage: test.py [-h] [--failfast] [--verbose] [--executable EXECUTABLE] [--release] [--pattern PATTERN] [--build-dir BUILD_DIR] optional arguments: -h, --help show this help message and exit --failfast, -f Stop on first failure --verbose, -v Verbose output --executable EXECUTABLE Use external executable of Deno --release Test against release executable --pattern PATTERN, -p PATTERN Run tests that match provided pattern --build-dir BUILD_DIR Deno build directory * respect NO_COLOR variable
45 lines
1.6 KiB
Python
Executable file
45 lines
1.6 KiB
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import os
|
|
import shutil
|
|
|
|
from test_util import DenoTestCase, run_tests
|
|
from util import mkdtemp, root_path, tests_path, run
|
|
|
|
|
|
class FmtTest(DenoTestCase):
|
|
def test_fmt(self):
|
|
d = mkdtemp()
|
|
try:
|
|
fixed_filename = os.path.join(tests_path,
|
|
"badly_formatted_fixed.js")
|
|
src = os.path.join(tests_path, "badly_formatted.js")
|
|
dst = os.path.join(d, "badly_formatted.js")
|
|
shutil.copyfile(src, dst)
|
|
|
|
# Set DENO_DIR to the temp dir to test an initial fetch of prettier.
|
|
# TODO(ry) This make the test depend on internet access which is not
|
|
# ideal. We should have prettier in the repo already, and we could
|
|
# fetch it instead through tools/http_server.py.
|
|
deno_dir = d
|
|
|
|
# TODO(kt3k) Below can be run([deno_exe, "fmt", dst], ...)
|
|
# once the following issue is addressed:
|
|
# https://github.com/denoland/deno_std/issues/330
|
|
run([
|
|
os.path.join(root_path, self.deno_exe), "fmt",
|
|
"badly_formatted.js"
|
|
],
|
|
cwd=d,
|
|
merge_env={"DENO_DIR": deno_dir})
|
|
with open(fixed_filename) as f:
|
|
expected = f.read()
|
|
with open(dst) as f:
|
|
actual = f.read()
|
|
self.assertEqual(expected, actual)
|
|
finally:
|
|
shutil.rmtree(d)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|