mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
5960e398ec
Don't mix every http request in with the tests output. Don't print that the file servers are starting unless -vv flag is passed. Capture the output of run with run_output which returns stdout, stderr and exit_code. Test against this rather than relying on sys.exit.
33 lines
1,020 B
Python
Executable file
33 lines
1,020 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import os
|
|
import shutil
|
|
import sys
|
|
|
|
import http_server
|
|
from test_util import DenoTestCase, run_tests
|
|
from util import mkdtemp, tests_path, run_output
|
|
|
|
|
|
class TestFetch(DenoTestCase):
|
|
def test_fetch(self):
|
|
deno_dir = mkdtemp()
|
|
try:
|
|
t = os.path.join(tests_path, "006_url_imports.ts")
|
|
result = run_output([self.deno_exe, "fetch", t],
|
|
quiet=True,
|
|
merge_env={"DENO_DIR": deno_dir})
|
|
self.assertEqual(result.out, "")
|
|
self.assertEqual(result.code, 0)
|
|
# Check that we actually did the prefetch.
|
|
os.path.exists(
|
|
os.path.join(
|
|
deno_dir,
|
|
"deps/http/localhost_PORT4545/tests/subdir/mod2.ts"))
|
|
finally:
|
|
shutil.rmtree(deno_dir)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
with http_server.spawn():
|
|
run_tests()
|