From b7d8a0c6f6e90a65243264faa3f702d1a9471090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 25 Apr 2019 19:47:33 +0200 Subject: Rename deno prefetch to deno fetch (#2210) --- tools/fetch_test.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 tools/fetch_test.py (limited to 'tools/fetch_test.py') diff --git a/tools/fetch_test.py b/tools/fetch_test.py new file mode 100755 index 000000000..9ecb6fff4 --- /dev/null +++ b/tools/fetch_test.py @@ -0,0 +1,30 @@ +#!/usr/bin/env python +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +import os +import sys +from util import mkdtemp, tests_path, run_output, green_ok +import shutil + + +def fetch_test(deno_exe): + sys.stdout.write("fetch_test...") + sys.stdout.flush() + + deno_dir = mkdtemp() + try: + t = os.path.join(tests_path, "006_url_imports.ts") + output = run_output([deno_exe, "fetch", t], + merge_env={"DENO_DIR": deno_dir}) + assert output == "" + # 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) + + print green_ok() + + +if __name__ == "__main__": + fetch_test(sys.argv[1]) -- cgit v1.2.3