mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
Cleanup setTimeout repl test and alphabetize tests
This commit is contained in:
parent
09aa9b9698
commit
e6309b78b0
1 changed files with 54 additions and 53 deletions
|
@ -1,8 +1,8 @@
|
||||||
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
||||||
import os
|
import os
|
||||||
from subprocess import PIPE, Popen
|
from subprocess import CalledProcessError, PIPE, Popen
|
||||||
import sys
|
import sys
|
||||||
from time import sleep
|
import time
|
||||||
|
|
||||||
from util import build_path, executable_suffix, green_ok
|
from util import build_path, executable_suffix, green_ok
|
||||||
|
|
||||||
|
@ -10,20 +10,29 @@ from util import build_path, executable_suffix, green_ok
|
||||||
class Repl(object):
|
class Repl(object):
|
||||||
def __init__(self, deno_exe):
|
def __init__(self, deno_exe):
|
||||||
self.deno_exe = deno_exe
|
self.deno_exe = deno_exe
|
||||||
self.warm_up()
|
self._warm_up()
|
||||||
|
|
||||||
|
def _warm_up(self):
|
||||||
|
# This may output an error message about the history file (ignore it).
|
||||||
|
self.input("")
|
||||||
|
|
||||||
def input(self, *lines, **kwargs):
|
def input(self, *lines, **kwargs):
|
||||||
exit_ = kwargs.pop("exit", True)
|
exit_ = kwargs.pop("exit", True)
|
||||||
|
sleep_ = kwargs.pop("sleep", 0)
|
||||||
p = Popen([self.deno_exe], stdout=PIPE, stderr=PIPE, stdin=PIPE)
|
p = Popen([self.deno_exe], stdout=PIPE, stderr=PIPE, stdin=PIPE)
|
||||||
try:
|
try:
|
||||||
|
# Note: The repl takes a >100ms until it's ready.
|
||||||
|
time.sleep(sleep_)
|
||||||
for line in lines:
|
for line in lines:
|
||||||
p.stdin.write(line.encode("utf-8") + b'\n')
|
p.stdin.write(line.encode("utf-8") + b'\n')
|
||||||
|
p.stdin.flush()
|
||||||
|
time.sleep(sleep_)
|
||||||
if exit_:
|
if exit_:
|
||||||
p.stdin.write(b'deno.exit(0)\n')
|
p.stdin.write(b'deno.exit(0)\n')
|
||||||
else:
|
else:
|
||||||
sleep(1) # wait to be killed by js
|
time.sleep(1) # wait to be killed by js
|
||||||
out, err = p.communicate()
|
out, err = p.communicate()
|
||||||
except Exception as e: # Should this be CalledProcessError?
|
except CalledProcessError as e:
|
||||||
p.kill()
|
p.kill()
|
||||||
p.wait()
|
p.wait()
|
||||||
raise
|
raise
|
||||||
|
@ -31,15 +40,14 @@ class Repl(object):
|
||||||
# Ignore Windows CRLF (\r\n).
|
# Ignore Windows CRLF (\r\n).
|
||||||
return out.replace('\r\n', '\n'), err.replace('\r\n', '\n'), retcode
|
return out.replace('\r\n', '\n'), err.replace('\r\n', '\n'), retcode
|
||||||
|
|
||||||
def warm_up(self):
|
def run(self):
|
||||||
# This may output an error message about the history file (ignore it).
|
print('repl_test.py')
|
||||||
self.input("")
|
test_names = [name for name in dir(self) if name.startswith("test_")]
|
||||||
|
for t in test_names:
|
||||||
def test_function(self):
|
self.__getattribute__(t)()
|
||||||
out, err, code = self.input("deno.writeFileSync")
|
sys.stdout.write(".")
|
||||||
assertEqual(out, '[Function: writeFileSync]\n')
|
sys.stdout.flush()
|
||||||
assertEqual(err, '')
|
print(' {}\n'.format(green_ok()))
|
||||||
assertEqual(code, 0)
|
|
||||||
|
|
||||||
def test_console_log(self):
|
def test_console_log(self):
|
||||||
out, err, code = self.input("console.log('hello')", "'world'")
|
out, err, code = self.input("console.log('hello')", "'world'")
|
||||||
|
@ -47,13 +55,31 @@ class Repl(object):
|
||||||
assertEqual(err, '')
|
assertEqual(err, '')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_variable(self):
|
def test_exit_command(self):
|
||||||
out, err, code = self.input("var a = 123;", "a")
|
out, err, code = self.input(".exit", "'ignored'", exit=False)
|
||||||
assertEqual(out, 'undefined\n123\n')
|
assertEqual(out, '')
|
||||||
assertEqual(err, '')
|
assertEqual(err, '')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_settimeout(self):
|
def test_function(self):
|
||||||
|
out, err, code = self.input("deno.writeFileSync")
|
||||||
|
assertEqual(out, '[Function: writeFileSync]\n')
|
||||||
|
assertEqual(err, '')
|
||||||
|
assertEqual(code, 0)
|
||||||
|
|
||||||
|
def test_multiline(self):
|
||||||
|
out, err, code = self.input("(\n1 + 2\n)")
|
||||||
|
assertEqual(out, '3\n')
|
||||||
|
assertEqual(err, '')
|
||||||
|
assertEqual(code, 0)
|
||||||
|
|
||||||
|
def test_reference_error(self):
|
||||||
|
out, err, code = self.input("not_a_variable")
|
||||||
|
assertEqual(out, '')
|
||||||
|
assertEqual(err, 'ReferenceError: not_a_variable is not defined\n')
|
||||||
|
assertEqual(code, 0)
|
||||||
|
|
||||||
|
def test_set_timeout(self):
|
||||||
out, err, code = self.input(
|
out, err, code = self.input(
|
||||||
"setTimeout(() => { console.log('b'); deno.exit(0); }, 10)",
|
"setTimeout(() => { console.log('b'); deno.exit(0); }, 10)",
|
||||||
"'a'",
|
"'a'",
|
||||||
|
@ -62,10 +88,13 @@ class Repl(object):
|
||||||
assertEqual(err, '')
|
assertEqual(err, '')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_reference_error(self):
|
def test_set_timeout_interlaced(self):
|
||||||
out, err, code = self.input("not_a_variable")
|
out, err, code = self.input(
|
||||||
assertEqual(out, '')
|
"setTimeout(() => console.log('a'), 250)",
|
||||||
assertEqual(err, 'ReferenceError: not_a_variable is not defined\n')
|
"setTimeout(() => console.log('b'), 150)",
|
||||||
|
sleep=0.2)
|
||||||
|
assertEqual(out, '1\n2\na\nb\n')
|
||||||
|
assertEqual(err, '')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_syntax_error(self):
|
def test_syntax_error(self):
|
||||||
|
@ -80,40 +109,12 @@ class Repl(object):
|
||||||
assertEqual(err, 'TypeError: console is not a function\n')
|
assertEqual(err, 'TypeError: console is not a function\n')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_multiline(self):
|
def test_variable(self):
|
||||||
out, err, code = self.input("(\n1 + 2\n)")
|
out, err, code = self.input("var a = 123;", "a")
|
||||||
assertEqual(out, '3\n')
|
assertEqual(out, 'undefined\n123\n')
|
||||||
assertEqual(err, '')
|
assertEqual(err, '')
|
||||||
assertEqual(code, 0)
|
assertEqual(code, 0)
|
||||||
|
|
||||||
def test_set_timeout(self):
|
|
||||||
# Special treatment
|
|
||||||
p = Popen([self.deno_exe], stdout=PIPE, stderr=PIPE, stdin=PIPE)
|
|
||||||
# Print after 0.1 second
|
|
||||||
p.stdin.write(
|
|
||||||
"setTimeout(() => console.log('HI'), 100)\n".encode("utf-8"))
|
|
||||||
sleep(0.2) # Wait 0.2 second before proceed
|
|
||||||
out, err = p.communicate()
|
|
||||||
code = p.poll()
|
|
||||||
assertEqual(out.replace('\r\n', '\n'), '1\nHI\n')
|
|
||||||
assertEqual(err.replace('\r\n', '\n'), '')
|
|
||||||
assertEqual(code, 0)
|
|
||||||
|
|
||||||
def test_exit_command(self):
|
|
||||||
out, err, code = self.input(".exit", "'ignored'", exit=False)
|
|
||||||
assertEqual(out, '')
|
|
||||||
assertEqual(err, '')
|
|
||||||
assertEqual(code, 0)
|
|
||||||
|
|
||||||
def run(self):
|
|
||||||
print('repl_test.py')
|
|
||||||
test_names = [name for name in dir(self) if name.startswith("test_")]
|
|
||||||
for t in test_names:
|
|
||||||
self.__getattribute__(t)()
|
|
||||||
sys.stdout.write(".")
|
|
||||||
sys.stdout.flush()
|
|
||||||
print(' {}\n'.format(green_ok()))
|
|
||||||
|
|
||||||
|
|
||||||
def assertEqual(left, right):
|
def assertEqual(left, right):
|
||||||
if left != right:
|
if left != right:
|
||||||
|
|
Loading…
Reference in a new issue