2019-01-21 14:03:30 -05:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-11-05 12:55:59 -05:00
|
|
|
import os
|
2018-11-28 19:08:18 -05:00
|
|
|
from subprocess import CalledProcessError, PIPE, Popen
|
2018-11-05 12:55:59 -05:00
|
|
|
import sys
|
2018-11-28 19:08:18 -05:00
|
|
|
import time
|
2018-11-05 12:55:59 -05:00
|
|
|
|
|
|
|
from util import build_path, executable_suffix, green_ok
|
|
|
|
|
|
|
|
|
|
|
|
class Repl(object):
|
|
|
|
def __init__(self, deno_exe):
|
|
|
|
self.deno_exe = deno_exe
|
2018-11-28 19:08:18 -05:00
|
|
|
self._warm_up()
|
|
|
|
|
|
|
|
def _warm_up(self):
|
|
|
|
# This may output an error message about the history file (ignore it).
|
|
|
|
self.input("")
|
2018-11-05 12:55:59 -05:00
|
|
|
|
|
|
|
def input(self, *lines, **kwargs):
|
|
|
|
exit_ = kwargs.pop("exit", True)
|
2018-11-28 19:08:18 -05:00
|
|
|
sleep_ = kwargs.pop("sleep", 0)
|
2019-02-09 16:55:40 -05:00
|
|
|
p = Popen([self.deno_exe, "-A"], stdout=PIPE, stderr=PIPE, stdin=PIPE)
|
2018-11-05 12:55:59 -05:00
|
|
|
try:
|
2018-11-28 19:08:18 -05:00
|
|
|
# Note: The repl takes a >100ms until it's ready.
|
|
|
|
time.sleep(sleep_)
|
2018-11-05 12:55:59 -05:00
|
|
|
for line in lines:
|
|
|
|
p.stdin.write(line.encode("utf-8") + b'\n')
|
2018-11-28 19:08:18 -05:00
|
|
|
p.stdin.flush()
|
|
|
|
time.sleep(sleep_)
|
2018-11-05 12:55:59 -05:00
|
|
|
if exit_:
|
|
|
|
p.stdin.write(b'deno.exit(0)\n')
|
|
|
|
else:
|
2018-11-28 19:08:18 -05:00
|
|
|
time.sleep(1) # wait to be killed by js
|
2018-11-05 12:55:59 -05:00
|
|
|
out, err = p.communicate()
|
2018-11-28 19:08:18 -05:00
|
|
|
except CalledProcessError as e:
|
2018-11-05 12:55:59 -05:00
|
|
|
p.kill()
|
|
|
|
p.wait()
|
2018-11-30 03:27:41 -05:00
|
|
|
raise e
|
2018-11-05 12:55:59 -05:00
|
|
|
retcode = p.poll()
|
|
|
|
# Ignore Windows CRLF (\r\n).
|
|
|
|
return out.replace('\r\n', '\n'), err.replace('\r\n', '\n'), retcode
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
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 test_console_log(self):
|
|
|
|
out, err, code = self.input("console.log('hello')", "'world'")
|
|
|
|
assertEqual(out, 'hello\nundefined\nworld\n')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
|
|
|
def test_exit_command(self):
|
2019-01-29 14:41:12 -05:00
|
|
|
out, err, code = self.input("exit", "'ignored'", exit=False)
|
2018-11-28 19:08:18 -05:00
|
|
|
assertEqual(out, '')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
2018-11-05 12:55:59 -05:00
|
|
|
|
2019-01-29 14:41:12 -05:00
|
|
|
def test_help_command(self):
|
|
|
|
out, err, code = self.input("help")
|
|
|
|
expectedOut = '\n'.join([
|
|
|
|
"exit Exit the REPL",
|
|
|
|
"help Print this help message",
|
|
|
|
"",
|
|
|
|
])
|
|
|
|
assertEqual(out, expectedOut)
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-05 12:55:59 -05:00
|
|
|
def test_function(self):
|
|
|
|
out, err, code = self.input("deno.writeFileSync")
|
|
|
|
assertEqual(out, '[Function: writeFileSync]\n')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
def test_multiline(self):
|
|
|
|
out, err, code = self.input("(\n1 + 2\n)")
|
|
|
|
assertEqual(out, '3\n')
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2019-02-11 14:01:28 -05:00
|
|
|
# This should print error instead of wait for input
|
|
|
|
def test_eval_unterminated(self):
|
|
|
|
out, err, code = self.input("eval('{')")
|
|
|
|
assertEqual(out, '')
|
|
|
|
assert "Unexpected end of input" in err
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
def test_reference_error(self):
|
|
|
|
out, err, code = self.input("not_a_variable")
|
|
|
|
assertEqual(out, '')
|
2019-02-09 16:55:40 -05:00
|
|
|
assert "not_a_variable is not defined" in err
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
def test_set_timeout(self):
|
2018-11-05 12:55:59 -05:00
|
|
|
out, err, code = self.input(
|
|
|
|
"setTimeout(() => { console.log('b'); deno.exit(0); }, 10)",
|
|
|
|
"'a'",
|
|
|
|
exit=False)
|
|
|
|
assertEqual(out, '1\na\nb\n')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
def test_set_timeout_interlaced(self):
|
|
|
|
out, err, code = self.input(
|
2019-01-09 15:32:05 -05:00
|
|
|
"setTimeout(() => console.log('a'), 1000)",
|
|
|
|
"setTimeout(() => console.log('b'), 600)",
|
|
|
|
sleep=0.8)
|
2018-11-28 19:08:18 -05:00
|
|
|
assertEqual(out, '1\n2\na\nb\n')
|
|
|
|
assertEqual(err, '')
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2019-02-09 16:55:40 -05:00
|
|
|
def test_async_op(self):
|
|
|
|
out, err, code = self.input(
|
|
|
|
"fetch('http://localhost:4545/tests/001_hello.js')" +
|
|
|
|
".then(res => res.text()).then(console.log)",
|
|
|
|
sleep=1)
|
|
|
|
assertEqual(out, 'Promise {}\nconsole.log("Hello World");\n\n')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-05 12:55:59 -05:00
|
|
|
def test_syntax_error(self):
|
|
|
|
out, err, code = self.input("syntax error")
|
|
|
|
assertEqual(out, '')
|
2019-02-09 16:55:40 -05:00
|
|
|
assert "Unexpected identifier" in err
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(code, 0)
|
|
|
|
|
|
|
|
def test_type_error(self):
|
|
|
|
out, err, code = self.input("console()")
|
|
|
|
assertEqual(out, '')
|
2019-02-09 16:55:40 -05:00
|
|
|
assert "console is not a function" in err
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-28 19:08:18 -05:00
|
|
|
def test_variable(self):
|
|
|
|
out, err, code = self.input("var a = 123;", "a")
|
|
|
|
assertEqual(out, 'undefined\n123\n')
|
2018-11-05 12:55:59 -05:00
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2019-02-09 16:55:40 -05:00
|
|
|
def test_lexical_scoped_variable(self):
|
|
|
|
out, err, code = self.input("let a = 123;", "a")
|
|
|
|
assertEqual(out, 'undefined\n123\n')
|
|
|
|
assertEqual(err, '')
|
|
|
|
assertEqual(code, 0)
|
|
|
|
|
2018-11-05 12:55:59 -05:00
|
|
|
|
|
|
|
def assertEqual(left, right):
|
|
|
|
if left != right:
|
|
|
|
raise AssertionError("{} != {}".format(repr(left), repr(right)))
|
|
|
|
|
|
|
|
|
|
|
|
def repl_tests(deno_exe):
|
|
|
|
Repl(deno_exe).run()
|
|
|
|
|
|
|
|
|
2018-11-30 03:27:41 -05:00
|
|
|
def main():
|
2018-11-05 12:55:59 -05:00
|
|
|
deno_exe = os.path.join(build_path(), "deno" + executable_suffix)
|
|
|
|
repl_tests(deno_exe)
|
2018-11-30 03:27:41 -05:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|