summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/integration/compile_tests.rs24
-rw-r--r--cli/tests/integration/doc_tests.rs10
-rw-r--r--cli/tests/integration/info_tests.rs6
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.info.out10
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.js14
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/data.json3
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/sub/data2.json3
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/a.js1
-rw-r--r--cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/b.ts1
-rw-r--r--cli/tests/testdata/doc/lint_success_html.out2
-rw-r--r--cli/tests/testdata/jsr/registry/@denotest/deps/1.0.0_meta.json2
-rw-r--r--cli/tests/testdata/jsr/registry/@denotest/module_graph/1.4.0_meta.json1
12 files changed, 72 insertions, 5 deletions
diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs
index df339c369..653b2bc8d 100644
--- a/cli/tests/integration/compile_tests.rs
+++ b/cli/tests/integration/compile_tests.rs
@@ -1061,3 +1061,27 @@ fn compile_node_modules_symlink_outside() {
let output = context.new_command().name(binary_path).run();
output.assert_matches_file("compile/node_modules_symlink_outside/main.out");
}
+
+#[test]
+fn dynamic_imports_tmp_lit() {
+ let context = TestContextBuilder::new().build();
+ let dir = context.temp_dir();
+ let exe = if cfg!(windows) {
+ dir.path().join("app.exe")
+ } else {
+ dir.path().join("app")
+ };
+ let output = context
+ .new_command()
+ .args_vec([
+ "compile",
+ "--output",
+ &exe.to_string_lossy(),
+ "./compile/dynamic_imports_tmp_lit/main.js",
+ ])
+ .run();
+ output.assert_exit_code(0);
+ output.skip_output_check();
+ let output = context.new_command().name(&exe).run();
+ output.assert_matches_text("a\nb\n{ data: 5 }\n{ data: 1 }\n");
+}
diff --git a/cli/tests/integration/doc_tests.rs b/cli/tests/integration/doc_tests.rs
index 7a3f08f48..9accd8304 100644
--- a/cli/tests/integration/doc_tests.rs
+++ b/cli/tests/integration/doc_tests.rs
@@ -138,13 +138,15 @@ fn deno_doc_html() {
.run();
output.assert_exit_code(0);
- assert_contains!(output.stderr(), "Written 8 files to");
+ assert_contains!(output.stderr(), "Written 10 files to");
+ assert!(temp_dir.path().join("all_symbols.html").exists());
assert!(temp_dir.path().join("index.html").exists());
- assert!(temp_dir.path().join("compound_index.html").exists());
assert!(temp_dir.path().join("fuse.js").exists());
+ assert!(temp_dir.path().join("page.css").exists());
assert!(temp_dir.path().join("search.js").exists());
assert!(temp_dir.path().join("search_index.js").exists());
assert!(temp_dir.path().join("styles.css").exists());
- assert!(temp_dir.path().join("MyInterface.html").exists());
- assert!(temp_dir.path().join("MyClass.html").exists());
+ assert!(temp_dir.path().join("~/MyInterface.html").exists());
+ assert!(temp_dir.path().join("~/MyClass.html").exists());
+ assert!(temp_dir.path().join("~/index.html").exists());
}
diff --git a/cli/tests/integration/info_tests.rs b/cli/tests/integration/info_tests.rs
index 47c5cc1d0..f7889f3c3 100644
--- a/cli/tests/integration/info_tests.rs
+++ b/cli/tests/integration/info_tests.rs
@@ -154,3 +154,9 @@ itest!(info_import_map {
cwd: Some("info/with_import_map"),
exit_code: 0,
});
+
+itest!(info_dynamic_imports_tmpl_lit {
+ args: "info compile/dynamic_imports_tmp_lit/main.js",
+ output: "compile/dynamic_imports_tmp_lit/main.info.out",
+ exit_code: 0,
+});
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.info.out b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.info.out
new file mode 100644
index 000000000..57d730a64
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.info.out
@@ -0,0 +1,10 @@
+local: [WILDCARD]main.js
+type: JavaScript
+dependencies: 4 unique
+size: [WILDCARD]
+
+file:///[WILDCARD]/dynamic_imports_tmp_lit/main.js ([WILDCARD])
+├── file:///[WILDCARD]/dynamic_imports_tmp_lit/sub/a.js ([WILDCARD])
+├── file:///[WILDCARD]/dynamic_imports_tmp_lit/sub/b.ts ([WILDCARD])
+├── file:///[WILDCARD]/dynamic_imports_tmp_lit/other/data.json ([WILDCARD])
+└── file:///[WILDCARD]/dynamic_imports_tmp_lit/other/sub/data2.json ([WILDCARD])
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.js b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.js
new file mode 100644
index 000000000..3bda59772
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/main.js
@@ -0,0 +1,14 @@
+const fileNames = [
+ "a.js",
+ "b.ts",
+];
+
+for (const fileName of fileNames) {
+ await import(`./sub/${fileName}`);
+}
+
+const jsonFileNames = ["data.json", "sub/data2.json"];
+for (const fileName of jsonFileNames) {
+ const mod = await import(`./other/${fileName}`, { with: { type: "json" } });
+ console.log(mod.default);
+}
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/data.json b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/data.json
new file mode 100644
index 000000000..0131e01e4
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/data.json
@@ -0,0 +1,3 @@
+{
+ "data": 5
+}
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/sub/data2.json b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/sub/data2.json
new file mode 100644
index 000000000..858a13cdd
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/other/sub/data2.json
@@ -0,0 +1,3 @@
+{
+ "data": 1
+}
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/a.js b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/a.js
new file mode 100644
index 000000000..7b2a34601
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/a.js
@@ -0,0 +1 @@
+console.log("a");
diff --git a/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/b.ts b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/b.ts
new file mode 100644
index 000000000..6d012e7f1
--- /dev/null
+++ b/cli/tests/testdata/compile/dynamic_imports_tmp_lit/sub/b.ts
@@ -0,0 +1 @@
+console.log("b");
diff --git a/cli/tests/testdata/doc/lint_success_html.out b/cli/tests/testdata/doc/lint_success_html.out
index 8c4c2d187..9503a335f 100644
--- a/cli/tests/testdata/doc/lint_success_html.out
+++ b/cli/tests/testdata/doc/lint_success_html.out
@@ -1 +1 @@
-Written 7 files to "./docs/"
+Written 9 files to "./docs/"
diff --git a/cli/tests/testdata/jsr/registry/@denotest/deps/1.0.0_meta.json b/cli/tests/testdata/jsr/registry/@denotest/deps/1.0.0_meta.json
index f60c65026..914e4bd73 100644
--- a/cli/tests/testdata/jsr/registry/@denotest/deps/1.0.0_meta.json
+++ b/cli/tests/testdata/jsr/registry/@denotest/deps/1.0.0_meta.json
@@ -5,11 +5,13 @@
"moduleGraph1": {
"/mod.ts": {
"dependencies": [{
+ "type": "static",
"kind": "import",
"range": [[0, 0], [0, 59]],
"specifier": "jsr:@denotest/module_graph@1/other",
"specifierRange": [[0, 22], [0, 58]]
}, {
+ "type": "static",
"kind": "import",
"range": [[1, 0], [1, 57]],
"specifier": "jsr:@denotest/no_module_graph@^0.1",
diff --git a/cli/tests/testdata/jsr/registry/@denotest/module_graph/1.4.0_meta.json b/cli/tests/testdata/jsr/registry/@denotest/module_graph/1.4.0_meta.json
index 8745d72b9..ff105b58a 100644
--- a/cli/tests/testdata/jsr/registry/@denotest/module_graph/1.4.0_meta.json
+++ b/cli/tests/testdata/jsr/registry/@denotest/module_graph/1.4.0_meta.json
@@ -7,6 +7,7 @@
"/mod.ts": {
"dependencies": [{
"kind": "import",
+ "type": "static",
"range": [[0, 0], [0, 35]],
"specifier": "./other.ts",
"specifierRange": [[0, 22], [0, 34]]