2019-01-01 19:58:40 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-07-10 18:53:48 -04:00
|
|
|
use crate::fmt_errors::JSError;
|
2019-04-09 13:11:25 -04:00
|
|
|
use crate::state::ThreadSafeState;
|
2019-03-20 11:38:43 -04:00
|
|
|
use crate::tokio_util;
|
2019-03-30 19:30:40 -04:00
|
|
|
use deno;
|
2019-07-10 18:53:48 -04:00
|
|
|
use deno::ErrBox;
|
2019-06-12 19:55:59 -04:00
|
|
|
use deno::ModuleSpecifier;
|
2019-04-08 10:12:43 -04:00
|
|
|
use deno::StartupData;
|
2019-03-14 19:17:52 -04:00
|
|
|
use futures::Async;
|
2018-09-18 14:53:16 -04:00
|
|
|
use futures::Future;
|
2019-06-05 16:35:38 -04:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::sync::Mutex;
|
2018-10-05 13:21:15 -04:00
|
|
|
|
2019-03-30 19:30:40 -04:00
|
|
|
/// Wraps deno::Isolate to provide source maps, ops for the CLI, and
|
2019-03-14 19:17:52 -04:00
|
|
|
/// high-level module loading
|
2019-06-05 16:35:38 -04:00
|
|
|
#[derive(Clone)]
|
2019-04-08 17:10:00 -04:00
|
|
|
pub struct Worker {
|
2019-06-12 13:53:24 -04:00
|
|
|
isolate: Arc<Mutex<deno::Isolate>>,
|
2019-04-16 15:13:42 -04:00
|
|
|
pub state: ThreadSafeState,
|
2018-09-17 20:41:13 -04:00
|
|
|
}
|
|
|
|
|
2019-04-08 17:10:00 -04:00
|
|
|
impl Worker {
|
|
|
|
pub fn new(
|
|
|
|
_name: String,
|
|
|
|
startup_data: StartupData,
|
2019-04-09 13:11:25 -04:00
|
|
|
state: ThreadSafeState,
|
2019-04-08 17:10:00 -04:00
|
|
|
) -> Worker {
|
2019-06-12 13:53:24 -04:00
|
|
|
let isolate = Arc::new(Mutex::new(deno::Isolate::new(startup_data, false)));
|
|
|
|
{
|
|
|
|
let mut i = isolate.lock().unwrap();
|
2019-07-10 18:53:48 -04:00
|
|
|
let state_ = state.clone();
|
2019-06-12 13:53:24 -04:00
|
|
|
i.set_dispatch(move |control_buf, zero_copy_buf| {
|
|
|
|
state_.dispatch(control_buf, zero_copy_buf)
|
|
|
|
});
|
2019-07-10 18:53:48 -04:00
|
|
|
let state_ = state.clone();
|
|
|
|
i.set_js_error_create(move |v8_exception| {
|
2019-07-17 18:15:30 -04:00
|
|
|
JSError::from_v8_exception(v8_exception, &state_.ts_compiler)
|
2019-07-10 18:53:48 -04:00
|
|
|
})
|
2018-12-06 23:05:36 -05:00
|
|
|
}
|
2019-06-12 13:53:24 -04:00
|
|
|
Self { isolate, state }
|
2018-12-06 23:05:36 -05:00
|
|
|
}
|
|
|
|
|
2018-12-11 14:03:58 -05:00
|
|
|
/// Same as execute2() but the filename defaults to "<anonymous>".
|
2019-07-10 18:53:48 -04:00
|
|
|
pub fn execute(&mut self, js_source: &str) -> Result<(), ErrBox> {
|
2018-12-11 14:03:58 -05:00
|
|
|
self.execute2("<anonymous>", js_source)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Executes the provided JavaScript source code. The js_filename argument is
|
|
|
|
/// provided only for debugging purposes.
|
|
|
|
pub fn execute2(
|
2019-03-14 19:17:52 -04:00
|
|
|
&mut self,
|
2018-09-17 20:41:13 -04:00
|
|
|
js_filename: &str,
|
|
|
|
js_source: &str,
|
2019-07-10 18:53:48 -04:00
|
|
|
) -> Result<(), ErrBox> {
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut isolate = self.isolate.lock().unwrap();
|
2019-07-10 18:53:48 -04:00
|
|
|
isolate.execute(js_filename, js_source)
|
2019-01-30 17:21:31 -05:00
|
|
|
}
|
|
|
|
|
2019-06-11 16:09:31 -04:00
|
|
|
/// Executes the provided JavaScript module.
|
2019-04-16 15:13:42 -04:00
|
|
|
pub fn execute_mod_async(
|
2019-06-05 16:35:38 -04:00
|
|
|
&mut self,
|
2019-06-12 15:00:08 -04:00
|
|
|
module_specifier: &ModuleSpecifier,
|
2019-04-16 15:13:42 -04:00
|
|
|
is_prefetch: bool,
|
2019-07-10 18:53:48 -04:00
|
|
|
) -> impl Future<Item = (), Error = ErrBox> {
|
2019-06-05 16:35:38 -04:00
|
|
|
let worker = self.clone();
|
|
|
|
let loader = self.state.clone();
|
2019-06-12 13:53:24 -04:00
|
|
|
let isolate = self.isolate.clone();
|
2019-06-11 14:35:03 -04:00
|
|
|
let modules = self.state.modules.clone();
|
2019-06-12 15:00:08 -04:00
|
|
|
let recursive_load = deno::RecursiveLoad::new(
|
|
|
|
&module_specifier.to_string(),
|
|
|
|
loader,
|
|
|
|
isolate,
|
|
|
|
modules,
|
|
|
|
);
|
2019-07-10 18:53:48 -04:00
|
|
|
recursive_load.and_then(move |id| -> Result<(), ErrBox> {
|
|
|
|
worker.state.progress.done();
|
|
|
|
if is_prefetch {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
let mut isolate = worker.isolate.lock().unwrap();
|
|
|
|
isolate.mod_evaluate(id)
|
|
|
|
}
|
|
|
|
})
|
2019-01-30 17:21:31 -05:00
|
|
|
}
|
|
|
|
|
2019-06-11 16:09:31 -04:00
|
|
|
/// Executes the provided JavaScript module.
|
2019-01-15 12:19:58 -05:00
|
|
|
pub fn execute_mod(
|
2019-06-05 16:35:38 -04:00
|
|
|
&mut self,
|
2019-06-12 15:00:08 -04:00
|
|
|
module_specifier: &ModuleSpecifier,
|
2019-01-15 12:19:58 -05:00
|
|
|
is_prefetch: bool,
|
2019-07-10 18:53:48 -04:00
|
|
|
) -> Result<(), ErrBox> {
|
2019-06-12 15:00:08 -04:00
|
|
|
tokio_util::block_on(self.execute_mod_async(module_specifier, is_prefetch))
|
2019-03-14 19:17:52 -04:00
|
|
|
}
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
2019-04-01 21:46:40 -04:00
|
|
|
|
2019-04-08 17:10:00 -04:00
|
|
|
impl Future for Worker {
|
2019-03-14 19:17:52 -04:00
|
|
|
type Item = ();
|
2019-07-10 18:53:48 -04:00
|
|
|
type Error = ErrBox;
|
2019-03-14 19:17:52 -04:00
|
|
|
|
2019-07-10 18:53:48 -04:00
|
|
|
fn poll(&mut self) -> Result<Async<()>, ErrBox> {
|
2019-06-12 13:53:24 -04:00
|
|
|
let mut isolate = self.isolate.lock().unwrap();
|
2019-07-10 18:53:48 -04:00
|
|
|
isolate.poll()
|
2018-09-17 20:41:13 -04:00
|
|
|
}
|
|
|
|
}
|
2019-03-28 16:05:41 -04:00
|
|
|
|
2018-09-18 14:53:16 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2019-03-14 19:17:52 -04:00
|
|
|
use crate::flags;
|
2019-04-11 10:58:31 -04:00
|
|
|
use crate::ops::op_selector_std;
|
2019-05-11 10:23:19 -04:00
|
|
|
use crate::progress::Progress;
|
2019-04-08 17:10:00 -04:00
|
|
|
use crate::resources;
|
|
|
|
use crate::startup_data;
|
2019-04-09 13:11:25 -04:00
|
|
|
use crate::state::ThreadSafeState;
|
2019-04-08 17:10:00 -04:00
|
|
|
use crate::tokio_util;
|
2019-03-14 19:17:52 -04:00
|
|
|
use futures::future::lazy;
|
|
|
|
use std::sync::atomic::Ordering;
|
2019-01-01 06:24:05 -05:00
|
|
|
|
|
|
|
#[test]
|
2019-04-16 15:13:42 -04:00
|
|
|
fn execute_mod_esm_imports_a() {
|
2019-06-12 15:00:08 -04:00
|
|
|
let module_specifier =
|
core: clearly define when module lookup is path-based vs URL-based
The rules are now as follows:
* In `import` statements, as mandated by the WHATWG specification,
the import specifier is always treated as a URL.
If it is a relative URL, it must start with either / or ./ or ../
* A script name passed to deno as a command line argument may be either
an absolute URL or a local path.
- If the name starts with a valid URI scheme followed by a colon, e.g.
'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a
URL (even if Deno doesn't support the indicated protocol).
- Otherwise, the script name is interpreted as a local path. The local
path may be relative, and operating system semantics determine how
it is resolved. Prefixing a relative path with ./ is not required.
2019-07-08 03:55:24 -04:00
|
|
|
ModuleSpecifier::resolve_url_or_path("tests/esm_imports_a.js").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let argv = vec![String::from("./deno"), module_specifier.to_string()];
|
2019-05-11 10:23:19 -04:00
|
|
|
let state = ThreadSafeState::new(
|
|
|
|
flags::DenoFlags::default(),
|
|
|
|
argv,
|
|
|
|
op_selector_std,
|
|
|
|
Progress::new(),
|
2019-07-31 17:11:37 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-14 19:17:52 -04:00
|
|
|
let state_ = state.clone();
|
|
|
|
tokio_util::run(lazy(move || {
|
2019-06-05 16:35:38 -04:00
|
|
|
let mut worker =
|
|
|
|
Worker::new("TEST".to_string(), StartupData::None, state);
|
2019-06-12 15:00:08 -04:00
|
|
|
let result = worker.execute_mod(&module_specifier, false);
|
2019-06-05 16:35:38 -04:00
|
|
|
if let Err(err) = result {
|
|
|
|
eprintln!("execute_mod err {:?}", err);
|
|
|
|
}
|
2019-04-08 17:10:00 -04:00
|
|
|
tokio_util::panic_on_error(worker)
|
2019-03-14 19:17:52 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
let metrics = &state_.metrics;
|
2019-04-16 15:13:42 -04:00
|
|
|
assert_eq!(metrics.resolve_count.load(Ordering::SeqCst), 2);
|
2019-05-20 12:06:57 -04:00
|
|
|
// Check that we didn't start the compiler.
|
|
|
|
assert_eq!(metrics.compiler_starts.load(Ordering::SeqCst), 0);
|
2019-01-30 17:21:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute_mod_circular() {
|
2019-06-12 15:00:08 -04:00
|
|
|
let module_specifier =
|
core: clearly define when module lookup is path-based vs URL-based
The rules are now as follows:
* In `import` statements, as mandated by the WHATWG specification,
the import specifier is always treated as a URL.
If it is a relative URL, it must start with either / or ./ or ../
* A script name passed to deno as a command line argument may be either
an absolute URL or a local path.
- If the name starts with a valid URI scheme followed by a colon, e.g.
'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a
URL (even if Deno doesn't support the indicated protocol).
- Otherwise, the script name is interpreted as a local path. The local
path may be relative, and operating system semantics determine how
it is resolved. Prefixing a relative path with ./ is not required.
2019-07-08 03:55:24 -04:00
|
|
|
ModuleSpecifier::resolve_url_or_path("tests/circular1.js").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let argv = vec![String::from("./deno"), module_specifier.to_string()];
|
2019-05-11 10:23:19 -04:00
|
|
|
let state = ThreadSafeState::new(
|
|
|
|
flags::DenoFlags::default(),
|
|
|
|
argv,
|
|
|
|
op_selector_std,
|
|
|
|
Progress::new(),
|
2019-07-31 17:11:37 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
2019-03-14 19:17:52 -04:00
|
|
|
let state_ = state.clone();
|
|
|
|
tokio_util::run(lazy(move || {
|
2019-06-05 16:35:38 -04:00
|
|
|
let mut worker =
|
|
|
|
Worker::new("TEST".to_string(), StartupData::None, state);
|
2019-06-12 15:00:08 -04:00
|
|
|
let result = worker.execute_mod(&module_specifier, false);
|
2019-06-05 16:35:38 -04:00
|
|
|
if let Err(err) = result {
|
|
|
|
eprintln!("execute_mod err {:?}", err);
|
|
|
|
}
|
2019-04-08 17:10:00 -04:00
|
|
|
tokio_util::panic_on_error(worker)
|
2019-03-14 19:17:52 -04:00
|
|
|
}));
|
|
|
|
|
|
|
|
let metrics = &state_.metrics;
|
2019-01-30 17:21:31 -05:00
|
|
|
assert_eq!(metrics.resolve_count.load(Ordering::SeqCst), 2);
|
2019-05-20 12:06:57 -04:00
|
|
|
// Check that we didn't start the compiler.
|
|
|
|
assert_eq!(metrics.compiler_starts.load(Ordering::SeqCst), 0);
|
2019-01-01 06:24:05 -05:00
|
|
|
}
|
2019-04-08 17:10:00 -04:00
|
|
|
|
2019-05-11 10:23:19 -04:00
|
|
|
#[test]
|
|
|
|
fn execute_006_url_imports() {
|
2019-06-12 15:00:08 -04:00
|
|
|
let module_specifier =
|
core: clearly define when module lookup is path-based vs URL-based
The rules are now as follows:
* In `import` statements, as mandated by the WHATWG specification,
the import specifier is always treated as a URL.
If it is a relative URL, it must start with either / or ./ or ../
* A script name passed to deno as a command line argument may be either
an absolute URL or a local path.
- If the name starts with a valid URI scheme followed by a colon, e.g.
'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a
URL (even if Deno doesn't support the indicated protocol).
- Otherwise, the script name is interpreted as a local path. The local
path may be relative, and operating system semantics determine how
it is resolved. Prefixing a relative path with ./ is not required.
2019-07-08 03:55:24 -04:00
|
|
|
ModuleSpecifier::resolve_url_or_path("tests/006_url_imports.ts").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let argv = vec![String::from("deno"), module_specifier.to_string()];
|
2019-05-11 10:23:19 -04:00
|
|
|
let mut flags = flags::DenoFlags::default();
|
|
|
|
flags.reload = true;
|
|
|
|
let state =
|
2019-07-31 07:58:41 -04:00
|
|
|
ThreadSafeState::new(flags, argv, op_selector_std, Progress::new())
|
|
|
|
.unwrap();
|
2019-05-11 10:23:19 -04:00
|
|
|
let state_ = state.clone();
|
|
|
|
tokio_util::run(lazy(move || {
|
|
|
|
let mut worker = Worker::new(
|
|
|
|
"TEST".to_string(),
|
|
|
|
startup_data::deno_isolate_init(),
|
|
|
|
state,
|
|
|
|
);
|
2019-07-10 18:53:48 -04:00
|
|
|
worker.execute("denoMain()").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let result = worker.execute_mod(&module_specifier, false);
|
2019-06-05 16:35:38 -04:00
|
|
|
if let Err(err) = result {
|
|
|
|
eprintln!("execute_mod err {:?}", err);
|
|
|
|
}
|
2019-05-11 10:23:19 -04:00
|
|
|
tokio_util::panic_on_error(worker)
|
|
|
|
}));
|
|
|
|
|
|
|
|
let metrics = &state_.metrics;
|
|
|
|
assert_eq!(metrics.resolve_count.load(Ordering::SeqCst), 3);
|
2019-05-20 12:06:57 -04:00
|
|
|
// Check that we've only invoked the compiler once.
|
|
|
|
assert_eq!(metrics.compiler_starts.load(Ordering::SeqCst), 1);
|
2019-05-11 10:23:19 -04:00
|
|
|
}
|
|
|
|
|
2019-04-08 17:10:00 -04:00
|
|
|
fn create_test_worker() -> Worker {
|
2019-06-08 14:42:28 -04:00
|
|
|
let state = ThreadSafeState::mock(vec![
|
|
|
|
String::from("./deno"),
|
|
|
|
String::from("hello.js"),
|
|
|
|
]);
|
2019-04-08 17:10:00 -04:00
|
|
|
let mut worker =
|
2019-04-09 13:11:25 -04:00
|
|
|
Worker::new("TEST".to_string(), startup_data::deno_isolate_init(), state);
|
2019-07-10 18:53:48 -04:00
|
|
|
worker.execute("denoMain()").unwrap();
|
|
|
|
worker.execute("workerMain()").unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
worker
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_worker_messages() {
|
|
|
|
tokio_util::init(|| {
|
|
|
|
let mut worker = create_test_worker();
|
|
|
|
let source = r#"
|
|
|
|
onmessage = function(e) {
|
|
|
|
console.log("msg from main script", e.data);
|
|
|
|
if (e.data == "exit") {
|
2019-04-14 16:07:24 -04:00
|
|
|
delete window.onmessage;
|
2019-04-08 17:10:00 -04:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
console.assert(e.data === "hi");
|
|
|
|
}
|
|
|
|
postMessage([1, 2, 3]);
|
|
|
|
console.log("after postMessage");
|
|
|
|
}
|
|
|
|
"#;
|
2019-07-10 18:53:48 -04:00
|
|
|
worker.execute(source).unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
|
|
|
|
let resource = worker.state.resource.clone();
|
|
|
|
let resource_ = resource.clone();
|
|
|
|
|
|
|
|
tokio::spawn(lazy(move || {
|
|
|
|
worker.then(move |r| -> Result<(), ()> {
|
|
|
|
resource_.close();
|
2019-07-10 18:53:48 -04:00
|
|
|
r.unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
}));
|
|
|
|
|
|
|
|
let msg = json!("hi").to_string().into_boxed_str().into_boxed_bytes();
|
|
|
|
|
|
|
|
let r = resources::post_message_to_worker(resource.rid, msg).wait();
|
|
|
|
assert!(r.is_ok());
|
|
|
|
|
|
|
|
let maybe_msg = resources::get_message_from_worker(resource.rid)
|
|
|
|
.wait()
|
|
|
|
.unwrap();
|
|
|
|
assert!(maybe_msg.is_some());
|
|
|
|
// Check if message received is [1, 2, 3] in json
|
|
|
|
assert_eq!(*maybe_msg.unwrap(), *b"[1,2,3]");
|
|
|
|
|
|
|
|
let msg = json!("exit")
|
|
|
|
.to_string()
|
|
|
|
.into_boxed_str()
|
|
|
|
.into_boxed_bytes();
|
|
|
|
let r = resources::post_message_to_worker(resource.rid, msg).wait();
|
|
|
|
assert!(r.is_ok());
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn removed_from_resource_table_on_close() {
|
|
|
|
tokio_util::init(|| {
|
|
|
|
let mut worker = create_test_worker();
|
2019-07-10 18:53:48 -04:00
|
|
|
worker
|
|
|
|
.execute("onmessage = () => { delete window.onmessage; }")
|
|
|
|
.unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
|
|
|
|
let resource = worker.state.resource.clone();
|
|
|
|
let rid = resource.rid;
|
|
|
|
|
2019-04-12 18:39:31 -04:00
|
|
|
let worker_future = worker
|
|
|
|
.then(move |r| -> Result<(), ()> {
|
2019-04-08 17:10:00 -04:00
|
|
|
resource.close();
|
|
|
|
println!("workers.rs after resource close");
|
2019-07-10 18:53:48 -04:00
|
|
|
r.unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
Ok(())
|
2019-07-31 17:11:37 -04:00
|
|
|
})
|
|
|
|
.shared();
|
2019-04-12 18:39:31 -04:00
|
|
|
|
|
|
|
let worker_future_ = worker_future.clone();
|
|
|
|
tokio::spawn(lazy(move || worker_future_.then(|_| Ok(()))));
|
2019-04-08 17:10:00 -04:00
|
|
|
|
|
|
|
assert_eq!(resources::get_type(rid), Some("worker".to_string()));
|
|
|
|
|
|
|
|
let msg = json!("hi").to_string().into_boxed_str().into_boxed_bytes();
|
|
|
|
let r = resources::post_message_to_worker(rid, msg).wait();
|
|
|
|
assert!(r.is_ok());
|
|
|
|
debug!("rid {:?}", rid);
|
|
|
|
|
2019-04-12 18:39:31 -04:00
|
|
|
worker_future.wait().unwrap();
|
2019-04-08 17:10:00 -04:00
|
|
|
assert_eq!(resources::get_type(rid), None);
|
|
|
|
})
|
|
|
|
}
|
2019-04-16 15:13:42 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute_mod_resolve_error() {
|
2019-05-20 12:06:57 -04:00
|
|
|
tokio_util::init(|| {
|
2019-06-19 22:07:01 -04:00
|
|
|
// "foo" is not a valid module specifier so this should return an error.
|
2019-06-05 16:35:38 -04:00
|
|
|
let mut worker = create_test_worker();
|
2019-06-12 15:00:08 -04:00
|
|
|
let module_specifier =
|
core: clearly define when module lookup is path-based vs URL-based
The rules are now as follows:
* In `import` statements, as mandated by the WHATWG specification,
the import specifier is always treated as a URL.
If it is a relative URL, it must start with either / or ./ or ../
* A script name passed to deno as a command line argument may be either
an absolute URL or a local path.
- If the name starts with a valid URI scheme followed by a colon, e.g.
'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a
URL (even if Deno doesn't support the indicated protocol).
- Otherwise, the script name is interpreted as a local path. The local
path may be relative, and operating system semantics determine how
it is resolved. Prefixing a relative path with ./ is not required.
2019-07-08 03:55:24 -04:00
|
|
|
ModuleSpecifier::resolve_url_or_path("does-not-exist").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let result = worker.execute_mod_async(&module_specifier, false).wait();
|
2019-05-20 12:06:57 -04:00
|
|
|
assert!(result.is_err());
|
|
|
|
})
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn execute_mod_002_hello() {
|
2019-05-20 12:06:57 -04:00
|
|
|
tokio_util::init(|| {
|
|
|
|
// This assumes cwd is project root (an assumption made throughout the
|
|
|
|
// tests).
|
2019-06-05 16:35:38 -04:00
|
|
|
let mut worker = create_test_worker();
|
2019-06-12 15:00:08 -04:00
|
|
|
let module_specifier =
|
core: clearly define when module lookup is path-based vs URL-based
The rules are now as follows:
* In `import` statements, as mandated by the WHATWG specification,
the import specifier is always treated as a URL.
If it is a relative URL, it must start with either / or ./ or ../
* A script name passed to deno as a command line argument may be either
an absolute URL or a local path.
- If the name starts with a valid URI scheme followed by a colon, e.g.
'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a
URL (even if Deno doesn't support the indicated protocol).
- Otherwise, the script name is interpreted as a local path. The local
path may be relative, and operating system semantics determine how
it is resolved. Prefixing a relative path with ./ is not required.
2019-07-08 03:55:24 -04:00
|
|
|
ModuleSpecifier::resolve_url_or_path("./tests/002_hello.ts").unwrap();
|
2019-06-12 15:00:08 -04:00
|
|
|
let result = worker.execute_mod_async(&module_specifier, false).wait();
|
2019-05-20 12:06:57 -04:00
|
|
|
assert!(result.is_ok());
|
|
|
|
})
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
2018-09-17 20:41:13 -04:00
|
|
|
}
|