mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -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
23 lines
607 B
Python
Executable file
23 lines
607 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import os
|
|
import unittest
|
|
from sys import stdin
|
|
|
|
from test_util import DenoTestCase, run_tests
|
|
from util import tty_capture
|
|
|
|
IS_TTY_TEST_TS = "tests/is_tty.ts"
|
|
|
|
|
|
@unittest.skipIf(os.name == 'nt', "Unable to test tty on Windows")
|
|
class TestIsTty(DenoTestCase):
|
|
def test_is_tty(self):
|
|
cmd = [self.deno_exe, "run", IS_TTY_TEST_TS]
|
|
code, stdout, _ = tty_capture(cmd, b'')
|
|
assert code == 0
|
|
assert str(stdin.isatty()).lower() in stdout
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|