summaryrefslogtreecommitdiff
path: root/tools/fetch_test.py
blob: 8bff017d3f7cfcce642bf36790f245bc414992c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# Copyright 2018-2020 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__":
    run_tests()