mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Don't crash when .mime file not exist in cache (#1291)
This commit is contained in:
parent
c113df1bb8
commit
0d3584cf46
1 changed files with 56 additions and 2 deletions
|
@ -152,8 +152,12 @@ impl DenoDir {
|
|||
(source, map_content_type(&p, Some(&content_type)))
|
||||
} else {
|
||||
let source = fs::read_to_string(&p)?;
|
||||
let content_type = fs::read_to_string(&mt)?;
|
||||
(source, map_content_type(&p, Some(&content_type)))
|
||||
// .mime file might not exists with bundled deps
|
||||
let maybe_content_type_string = fs::read_to_string(&mt).ok();
|
||||
// Option<String> -> Option<&str>
|
||||
let maybe_content_type_str =
|
||||
maybe_content_type_string.as_ref().map(String::as_str);
|
||||
(source, map_content_type(&p, maybe_content_type_str))
|
||||
};
|
||||
Ok(src)
|
||||
}
|
||||
|
@ -498,6 +502,56 @@ macro_rules! add_root {
|
|||
};
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_fetch_remote_source_1() {
|
||||
use tokio_util;
|
||||
// http_util::fetch_sync_string requires tokio
|
||||
tokio_util::init(|| {
|
||||
let (_temp_dir, deno_dir) = test_setup();
|
||||
let module_name = "http://localhost:4545/tests/subdir/mt_video_mp2t.t3.ts";
|
||||
let filename = deno_fs::normalize_path(
|
||||
deno_dir
|
||||
.deps_http
|
||||
.join("localhost_PORT4545/tests/subdir/mt_video_mp2t.t3.ts")
|
||||
.as_ref(),
|
||||
);
|
||||
let mime_file_name = format!("{}.mime", &filename);
|
||||
|
||||
let result = deno_dir.fetch_remote_source(module_name, &filename);
|
||||
assert!(result.is_ok());
|
||||
let r = result.unwrap();
|
||||
assert_eq!(&(r.0), "export const loaded = true;\n");
|
||||
assert_eq!(&(r.1), &msg::MediaType::TypeScript);
|
||||
assert_eq!(fs::read_to_string(&mime_file_name).unwrap(), "video/mp2t");
|
||||
|
||||
// Modify .mime, make sure still read from local
|
||||
let _ = fs::write(&mime_file_name, "text/javascript");
|
||||
let result2 = deno_dir.fetch_remote_source(module_name, &filename);
|
||||
assert!(result2.is_ok());
|
||||
let r2 = result2.unwrap();
|
||||
assert_eq!(&(r2.0), "export const loaded = true;\n");
|
||||
// Not MediaType::TypeScript due to .mime modification
|
||||
assert_eq!(&(r2.1), &msg::MediaType::JavaScript);
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_fetch_remote_source_2() {
|
||||
// only local, no http_util::fetch_sync_string called
|
||||
let (_temp_dir, deno_dir) = test_setup();
|
||||
let cwd = std::env::current_dir().unwrap();
|
||||
let cwd_string = cwd.to_str().unwrap();
|
||||
let module_name = "http://example.com/mt_text_typescript.t1.ts"; // not used
|
||||
let filename =
|
||||
format!("{}/tests/subdir/mt_text_typescript.t1.ts", &cwd_string);
|
||||
|
||||
let result = deno_dir.fetch_remote_source(module_name, &filename);
|
||||
assert!(result.is_ok());
|
||||
let r = result.unwrap();
|
||||
assert_eq!(&(r.0), "export const loaded = true;\n");
|
||||
assert_eq!(&(r.1), &msg::MediaType::TypeScript);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_code_fetch() {
|
||||
let (_temp_dir, deno_dir) = test_setup();
|
||||
|
|
Loading…
Reference in a new issue