2021-01-10 21:59:07 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2021-05-26 15:07:12 -04:00
|
|
|
use crate::inspector_server::InspectorServer;
|
2020-09-11 09:18:49 -04:00
|
|
|
use crate::js;
|
2021-04-28 12:41:50 -04:00
|
|
|
use crate::metrics;
|
2019-10-11 14:41:54 -04:00
|
|
|
use crate::ops;
|
2020-09-19 19:17:35 -04:00
|
|
|
use crate::permissions::Permissions;
|
2021-10-05 16:41:14 -04:00
|
|
|
use crate::BootstrapOptions;
|
2021-05-22 12:08:24 -04:00
|
|
|
use deno_broadcast_channel::InMemoryBroadcastChannel;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::AnyError;
|
2021-05-26 11:47:33 -04:00
|
|
|
use deno_core::futures::Future;
|
2021-06-21 19:45:41 -04:00
|
|
|
use deno_core::located_script_name;
|
2021-09-29 04:47:24 -04:00
|
|
|
use deno_core::CompiledWasmModuleStore;
|
2021-04-28 12:41:50 -04:00
|
|
|
use deno_core::Extension;
|
2020-12-13 13:45:53 -05:00
|
|
|
use deno_core::GetErrorClassFn;
|
2020-12-01 17:33:44 -05:00
|
|
|
use deno_core::JsErrorCreateFn;
|
2020-09-06 15:44:29 -04:00
|
|
|
use deno_core::JsRuntime;
|
2021-05-26 15:07:12 -04:00
|
|
|
use deno_core::LocalInspectorSession;
|
2020-02-18 10:08:18 -05:00
|
|
|
use deno_core::ModuleId;
|
2020-11-30 14:35:12 -05:00
|
|
|
use deno_core::ModuleLoader;
|
2020-01-05 11:56:18 -05:00
|
|
|
use deno_core::ModuleSpecifier;
|
2020-09-11 09:18:49 -04:00
|
|
|
use deno_core::RuntimeOptions;
|
2021-07-06 13:42:52 -04:00
|
|
|
use deno_core::SharedArrayBufferStore;
|
2021-08-07 08:49:38 -04:00
|
|
|
use deno_tls::rustls::RootCertStore;
|
2021-07-05 09:34:37 -04:00
|
|
|
use deno_web::BlobStore;
|
2021-03-26 12:34:25 -04:00
|
|
|
use log::debug;
|
2021-05-26 11:47:33 -04:00
|
|
|
use std::pin::Pin;
|
2020-11-30 14:35:12 -05:00
|
|
|
use std::rc::Rc;
|
2019-06-05 16:35:38 -04:00
|
|
|
use std::sync::Arc;
|
2019-11-16 19:17:47 -05:00
|
|
|
use std::task::Context;
|
|
|
|
use std::task::Poll;
|
2018-10-05 13:21:15 -04:00
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
/// This worker is created and used by almost all
|
|
|
|
/// subcommands in Deno executable.
|
2020-01-21 11:50:06 -05:00
|
|
|
///
|
2020-11-26 09:17:45 -05:00
|
|
|
/// It provides ops available in the `Deno` namespace.
|
2020-01-21 11:50:06 -05:00
|
|
|
///
|
2020-11-26 09:17:45 -05:00
|
|
|
/// All `WebWorker`s created during program execution
|
|
|
|
/// are descendants of this worker.
|
|
|
|
pub struct MainWorker {
|
2020-12-11 12:49:26 -05:00
|
|
|
pub js_runtime: JsRuntime,
|
2020-09-19 19:17:35 -04:00
|
|
|
should_break_on_first_statement: bool,
|
2018-09-17 20:41:13 -04:00
|
|
|
}
|
|
|
|
|
2020-12-11 12:49:26 -05:00
|
|
|
pub struct WorkerOptions {
|
2021-10-05 16:41:14 -04:00
|
|
|
pub bootstrap: BootstrapOptions,
|
2021-08-10 07:19:45 -04:00
|
|
|
pub unsafely_ignore_certificate_errors: Option<Vec<String>>,
|
2021-08-07 08:49:38 -04:00
|
|
|
pub root_cert_store: Option<RootCertStore>,
|
2020-12-11 18:36:18 -05:00
|
|
|
pub user_agent: String,
|
2020-12-11 12:49:26 -05:00
|
|
|
pub seed: Option<u64>,
|
|
|
|
pub module_loader: Rc<dyn ModuleLoader>,
|
2021-09-24 16:25:45 -04:00
|
|
|
// Callback invoked when creating new instance of WebWorker
|
2020-12-11 12:49:26 -05:00
|
|
|
pub create_web_worker_cb: Arc<ops::worker_host::CreateWebWorkerCb>,
|
|
|
|
pub js_error_create_fn: Option<Rc<JsErrorCreateFn>>,
|
|
|
|
pub maybe_inspector_server: Option<Arc<InspectorServer>>,
|
|
|
|
pub should_break_on_first_statement: bool,
|
2020-12-13 13:45:53 -05:00
|
|
|
pub get_error_class_fn: Option<GetErrorClassFn>,
|
2021-05-27 01:23:12 -04:00
|
|
|
pub origin_storage_dir: Option<std::path::PathBuf>,
|
2021-07-05 09:34:37 -04:00
|
|
|
pub blob_store: BlobStore,
|
2021-05-22 12:08:24 -04:00
|
|
|
pub broadcast_channel: InMemoryBroadcastChannel,
|
2021-07-06 13:42:52 -04:00
|
|
|
pub shared_array_buffer_store: Option<SharedArrayBufferStore>,
|
2021-09-29 04:47:24 -04:00
|
|
|
pub compiled_wasm_module_store: Option<CompiledWasmModuleStore>,
|
2020-12-11 12:49:26 -05:00
|
|
|
}
|
2020-11-30 14:35:12 -05:00
|
|
|
|
2020-12-11 12:49:26 -05:00
|
|
|
impl MainWorker {
|
2021-10-05 16:41:14 -04:00
|
|
|
pub fn bootstrap_from_options(
|
|
|
|
main_module: ModuleSpecifier,
|
|
|
|
permissions: Permissions,
|
|
|
|
options: WorkerOptions,
|
|
|
|
) -> Self {
|
|
|
|
let bootstrap_options = options.bootstrap.clone();
|
|
|
|
let mut worker = Self::from_options(main_module, permissions, options);
|
|
|
|
worker.bootstrap(&bootstrap_options);
|
|
|
|
worker
|
|
|
|
}
|
|
|
|
|
2020-11-30 14:35:12 -05:00
|
|
|
pub fn from_options(
|
|
|
|
main_module: ModuleSpecifier,
|
|
|
|
permissions: Permissions,
|
2021-10-05 16:41:14 -04:00
|
|
|
options: WorkerOptions,
|
2020-11-30 14:35:12 -05:00
|
|
|
) -> Self {
|
2021-05-02 19:22:57 -04:00
|
|
|
// Permissions: many ops depend on this
|
2021-10-05 16:41:14 -04:00
|
|
|
let unstable = options.bootstrap.unstable;
|
|
|
|
let enable_testing_features = options.bootstrap.enable_testing_features;
|
2021-05-02 19:22:57 -04:00
|
|
|
let perm_ext = Extension::builder()
|
|
|
|
.state(move |state| {
|
|
|
|
state.put::<Permissions>(permissions.clone());
|
|
|
|
state.put(ops::UnstableChecker { unstable });
|
2021-08-16 08:29:54 -04:00
|
|
|
state.put(ops::TestingFeaturesEnabled(enable_testing_features));
|
2021-05-02 19:22:57 -04:00
|
|
|
Ok(())
|
|
|
|
})
|
|
|
|
.build();
|
|
|
|
|
2021-04-28 12:41:50 -04:00
|
|
|
// Internal modules
|
|
|
|
let extensions: Vec<Extension> = vec![
|
|
|
|
// Web APIs
|
|
|
|
deno_webidl::init(),
|
|
|
|
deno_console::init(),
|
|
|
|
deno_url::init(),
|
2021-10-05 16:41:14 -04:00
|
|
|
deno_web::init(
|
|
|
|
options.blob_store.clone(),
|
|
|
|
options.bootstrap.location.clone(),
|
|
|
|
),
|
2021-04-28 12:41:50 -04:00
|
|
|
deno_fetch::init::<Permissions>(
|
|
|
|
options.user_agent.clone(),
|
2021-08-07 08:49:38 -04:00
|
|
|
options.root_cert_store.clone(),
|
2021-06-21 23:21:57 -04:00
|
|
|
None,
|
2021-07-27 19:04:08 -04:00
|
|
|
None,
|
2021-08-10 07:19:45 -04:00
|
|
|
options.unsafely_ignore_certificate_errors.clone(),
|
2021-08-25 08:25:12 -04:00
|
|
|
None,
|
2021-04-28 12:41:50 -04:00
|
|
|
),
|
|
|
|
deno_websocket::init::<Permissions>(
|
|
|
|
options.user_agent.clone(),
|
2021-08-07 08:49:38 -04:00
|
|
|
options.root_cert_store.clone(),
|
2021-08-10 07:19:45 -04:00
|
|
|
options.unsafely_ignore_certificate_errors.clone(),
|
2021-04-28 12:41:50 -04:00
|
|
|
),
|
2021-05-27 01:23:12 -04:00
|
|
|
deno_webstorage::init(options.origin_storage_dir.clone()),
|
2021-04-28 12:41:50 -04:00
|
|
|
deno_crypto::init(options.seed),
|
2021-10-05 16:41:14 -04:00
|
|
|
deno_broadcast_channel::init(options.broadcast_channel.clone(), unstable),
|
|
|
|
deno_webgpu::init(unstable),
|
2021-04-28 12:41:50 -04:00
|
|
|
deno_timers::init::<Permissions>(),
|
2021-08-06 17:28:10 -04:00
|
|
|
// ffi
|
2021-10-05 16:41:14 -04:00
|
|
|
deno_ffi::init::<Permissions>(unstable),
|
2021-04-28 12:41:50 -04:00
|
|
|
// Metrics
|
|
|
|
metrics::init(),
|
2021-05-02 19:22:57 -04:00
|
|
|
// Runtime ops
|
2021-06-30 12:01:11 -04:00
|
|
|
ops::runtime::init(main_module.clone()),
|
2021-05-11 15:09:09 -04:00
|
|
|
ops::worker_host::init(options.create_web_worker_cb.clone()),
|
2021-05-02 19:22:57 -04:00
|
|
|
ops::fs_events::init(),
|
|
|
|
ops::fs::init(),
|
|
|
|
ops::io::init(),
|
|
|
|
ops::io::init_stdio(),
|
2021-08-07 08:49:38 -04:00
|
|
|
deno_tls::init(),
|
|
|
|
deno_net::init::<Permissions>(
|
|
|
|
options.root_cert_store.clone(),
|
2021-10-05 16:41:14 -04:00
|
|
|
unstable,
|
2021-08-10 07:19:45 -04:00
|
|
|
options.unsafely_ignore_certificate_errors.clone(),
|
2021-08-07 08:49:38 -04:00
|
|
|
),
|
2021-05-02 19:22:57 -04:00
|
|
|
ops::os::init(),
|
|
|
|
ops::permissions::init(),
|
|
|
|
ops::process::init(),
|
|
|
|
ops::signal::init(),
|
|
|
|
ops::tty::init(),
|
2021-07-12 06:44:49 -04:00
|
|
|
deno_http::init(),
|
|
|
|
ops::http::init(),
|
2021-05-02 19:22:57 -04:00
|
|
|
// Permissions ext (worker specific state)
|
|
|
|
perm_ext,
|
2021-04-28 12:41:50 -04:00
|
|
|
];
|
|
|
|
|
2020-10-07 11:20:20 -04:00
|
|
|
let mut js_runtime = JsRuntime::new(RuntimeOptions {
|
2020-12-11 12:49:26 -05:00
|
|
|
module_loader: Some(options.module_loader.clone()),
|
2020-11-26 09:17:45 -05:00
|
|
|
startup_snapshot: Some(js::deno_isolate_init()),
|
2020-12-11 12:49:26 -05:00
|
|
|
js_error_create_fn: options.js_error_create_fn.clone(),
|
2020-12-13 13:45:53 -05:00
|
|
|
get_error_class_fn: options.get_error_class_fn,
|
2021-07-06 13:42:52 -04:00
|
|
|
shared_array_buffer_store: options.shared_array_buffer_store.clone(),
|
2021-09-29 04:47:24 -04:00
|
|
|
compiled_wasm_module_store: options.compiled_wasm_module_store.clone(),
|
2021-04-28 12:41:50 -04:00
|
|
|
extensions,
|
2020-09-11 09:18:49 -04:00
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-25 04:24:51 -04:00
|
|
|
|
2021-06-21 13:37:51 -04:00
|
|
|
if let Some(server) = options.maybe_inspector_server.clone() {
|
2021-08-25 07:39:23 -04:00
|
|
|
server.register_inspector(main_module.to_string(), &mut js_runtime);
|
2021-05-26 15:07:12 -04:00
|
|
|
}
|
2020-02-05 02:40:38 -05:00
|
|
|
|
2021-05-02 19:22:57 -04:00
|
|
|
Self {
|
2020-10-11 07:20:40 -04:00
|
|
|
js_runtime,
|
2021-06-21 13:37:51 -04:00
|
|
|
should_break_on_first_statement: options.should_break_on_first_statement,
|
2020-06-01 22:44:17 -04:00
|
|
|
}
|
2020-12-11 12:49:26 -05:00
|
|
|
}
|
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
pub fn bootstrap(&mut self, options: &BootstrapOptions) {
|
|
|
|
let script = format!("bootstrap.mainRuntime({})", options.as_json());
|
2020-12-11 12:49:26 -05:00
|
|
|
self
|
2021-06-21 19:45:41 -04:00
|
|
|
.execute_script(&located_script_name!(), &script)
|
2020-09-26 12:16:33 -04:00
|
|
|
.expect("Failed to execute bootstrap script");
|
2020-01-21 11:50:06 -05:00
|
|
|
}
|
2020-09-28 06:14:11 -04:00
|
|
|
|
2021-06-21 19:45:41 -04:00
|
|
|
/// See [JsRuntime::execute_script](deno_core::JsRuntime::execute_script)
|
|
|
|
pub fn execute_script(
|
|
|
|
&mut self,
|
|
|
|
name: &str,
|
|
|
|
source_code: &str,
|
|
|
|
) -> Result<(), AnyError> {
|
2021-07-08 12:56:53 -04:00
|
|
|
self.js_runtime.execute_script(name, source_code)?;
|
|
|
|
Ok(())
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 21:44:53 -04:00
|
|
|
/// Loads and instantiates specified JavaScript module
|
|
|
|
/// as "main" or "side" module.
|
2020-11-26 09:17:45 -05:00
|
|
|
pub async fn preload_module(
|
|
|
|
&mut self,
|
|
|
|
module_specifier: &ModuleSpecifier,
|
2021-09-17 21:44:53 -04:00
|
|
|
main: bool,
|
2020-11-26 09:17:45 -05:00
|
|
|
) -> Result<ModuleId, AnyError> {
|
2021-09-17 21:44:53 -04:00
|
|
|
if main {
|
|
|
|
self
|
|
|
|
.js_runtime
|
|
|
|
.load_main_module(module_specifier, None)
|
|
|
|
.await
|
|
|
|
} else {
|
|
|
|
self
|
|
|
|
.js_runtime
|
|
|
|
.load_side_module(module_specifier, None)
|
|
|
|
.await
|
|
|
|
}
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 21:44:53 -04:00
|
|
|
async fn evaluate_module(&mut self, id: ModuleId) -> Result<(), AnyError> {
|
2021-03-04 07:19:47 -05:00
|
|
|
let mut receiver = self.js_runtime.mod_evaluate(id);
|
|
|
|
tokio::select! {
|
2021-07-30 07:36:43 -04:00
|
|
|
maybe_result = &mut receiver => {
|
2021-03-04 07:19:47 -05:00
|
|
|
debug!("received module evaluate {:#?}", maybe_result);
|
2021-06-17 15:56:30 -04:00
|
|
|
maybe_result.expect("Module evaluation result not provided.")
|
2021-03-04 07:19:47 -05:00
|
|
|
}
|
|
|
|
|
2021-05-26 15:07:12 -04:00
|
|
|
event_loop_result = self.run_event_loop(false) => {
|
2021-03-04 07:19:47 -05:00
|
|
|
event_loop_result?;
|
2021-07-30 07:36:43 -04:00
|
|
|
let maybe_result = receiver.await;
|
2021-06-17 15:56:30 -04:00
|
|
|
maybe_result.expect("Module evaluation result not provided.")
|
2021-03-04 07:19:47 -05:00
|
|
|
}
|
|
|
|
}
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
|
2021-09-17 21:44:53 -04:00
|
|
|
/// Loads, instantiates and executes specified JavaScript module.
|
|
|
|
pub async fn execute_side_module(
|
|
|
|
&mut self,
|
|
|
|
module_specifier: &ModuleSpecifier,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let id = self.preload_module(module_specifier, false).await?;
|
|
|
|
self.evaluate_module(id).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Loads, instantiates and executes specified JavaScript module.
|
|
|
|
///
|
|
|
|
/// This module will have "import.meta.main" equal to true.
|
|
|
|
pub async fn execute_main_module(
|
|
|
|
&mut self,
|
|
|
|
module_specifier: &ModuleSpecifier,
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
let id = self.preload_module(module_specifier, true).await?;
|
|
|
|
self.wait_for_inspector_session();
|
|
|
|
self.evaluate_module(id).await
|
|
|
|
}
|
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
fn wait_for_inspector_session(&mut self) {
|
|
|
|
if self.should_break_on_first_statement {
|
|
|
|
self
|
2021-05-26 15:07:12 -04:00
|
|
|
.js_runtime
|
|
|
|
.inspector()
|
2020-11-26 09:17:45 -05:00
|
|
|
.wait_for_session_and_break_on_next_statement()
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 09:17:45 -05:00
|
|
|
/// Create new inspector session. This function panics if Worker
|
|
|
|
/// was not configured to create inspector.
|
2021-05-26 11:47:33 -04:00
|
|
|
pub async fn create_inspector_session(&mut self) -> LocalInspectorSession {
|
2021-06-21 13:37:51 -04:00
|
|
|
let inspector = self.js_runtime.inspector();
|
2021-05-26 11:47:33 -04:00
|
|
|
inspector.create_local_session()
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
|
2020-10-11 07:20:40 -04:00
|
|
|
pub fn poll_event_loop(
|
|
|
|
&mut self,
|
|
|
|
cx: &mut Context,
|
2021-05-26 15:07:12 -04:00
|
|
|
wait_for_inspector: bool,
|
2020-10-11 07:20:40 -04:00
|
|
|
) -> Poll<Result<(), AnyError>> {
|
2021-05-26 15:07:12 -04:00
|
|
|
self.js_runtime.poll_event_loop(cx, wait_for_inspector)
|
2020-09-28 06:14:11 -04:00
|
|
|
}
|
|
|
|
|
2021-05-26 15:07:12 -04:00
|
|
|
pub async fn run_event_loop(
|
|
|
|
&mut self,
|
|
|
|
wait_for_inspector: bool,
|
|
|
|
) -> Result<(), AnyError> {
|
2021-06-29 14:39:28 -04:00
|
|
|
self.js_runtime.run_event_loop(wait_for_inspector).await
|
2020-10-11 07:20:40 -04:00
|
|
|
}
|
2021-05-26 11:47:33 -04:00
|
|
|
|
|
|
|
/// A utility function that runs provided future concurrently with the event loop.
|
|
|
|
///
|
|
|
|
/// Useful when using a local inspector session.
|
|
|
|
pub async fn with_event_loop<'a, T>(
|
|
|
|
&mut self,
|
|
|
|
mut fut: Pin<Box<dyn Future<Output = T> + 'a>>,
|
|
|
|
) -> T {
|
|
|
|
loop {
|
|
|
|
tokio::select! {
|
|
|
|
result = &mut fut => {
|
|
|
|
return result;
|
|
|
|
}
|
2021-05-26 15:07:12 -04:00
|
|
|
_ = self.run_event_loop(false) => {}
|
2021-05-26 11:47:33 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2020-10-11 07:20:40 -04:00
|
|
|
}
|
|
|
|
|
2018-09-18 14:53:16 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2021-02-17 13:47:18 -05:00
|
|
|
use deno_core::resolve_url_or_path;
|
2019-01-01 06:24:05 -05:00
|
|
|
|
2020-09-26 12:16:33 -04:00
|
|
|
fn create_test_worker() -> MainWorker {
|
2021-02-17 13:47:18 -05:00
|
|
|
let main_module = resolve_url_or_path("./hello.js").unwrap();
|
2020-12-11 12:49:26 -05:00
|
|
|
let permissions = Permissions::default();
|
|
|
|
|
|
|
|
let options = WorkerOptions {
|
2021-10-05 16:41:14 -04:00
|
|
|
bootstrap: BootstrapOptions {
|
|
|
|
apply_source_maps: false,
|
|
|
|
args: vec![],
|
|
|
|
cpu_count: 1,
|
|
|
|
debug_flag: false,
|
|
|
|
enable_testing_features: false,
|
|
|
|
location: None,
|
|
|
|
no_color: true,
|
|
|
|
runtime_version: "x".to_string(),
|
|
|
|
ts_version: "x".to_string(),
|
|
|
|
unstable: false,
|
|
|
|
},
|
2020-12-11 18:36:18 -05:00
|
|
|
user_agent: "x".to_string(),
|
2021-08-10 07:19:45 -04:00
|
|
|
unsafely_ignore_certificate_errors: None,
|
2021-08-07 08:49:38 -04:00
|
|
|
root_cert_store: None,
|
2020-12-11 12:49:26 -05:00
|
|
|
seed: None,
|
|
|
|
js_error_create_fn: None,
|
|
|
|
create_web_worker_cb: Arc::new(|_| unreachable!()),
|
|
|
|
maybe_inspector_server: None,
|
|
|
|
should_break_on_first_statement: false,
|
|
|
|
module_loader: Rc::new(deno_core::FsModuleLoader),
|
2020-12-13 13:45:53 -05:00
|
|
|
get_error_class_fn: None,
|
2021-05-27 01:23:12 -04:00
|
|
|
origin_storage_dir: None,
|
2021-07-05 09:34:37 -04:00
|
|
|
blob_store: BlobStore::default(),
|
2021-05-22 12:08:24 -04:00
|
|
|
broadcast_channel: InMemoryBroadcastChannel::default(),
|
2021-07-06 13:42:52 -04:00
|
|
|
shared_array_buffer_store: None,
|
2021-09-29 04:47:24 -04:00
|
|
|
compiled_wasm_module_store: None,
|
2020-09-26 12:16:33 -04:00
|
|
|
};
|
2020-12-11 12:49:26 -05:00
|
|
|
|
2021-10-05 16:41:14 -04:00
|
|
|
MainWorker::bootstrap_from_options(main_module, permissions, options)
|
2020-09-26 12:16:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
async fn execute_mod_esm_imports_a() {
|
2021-08-11 10:20:47 -04:00
|
|
|
let p = test_util::testdata_path().join("esm_imports_a.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let module_specifier = resolve_url_or_path(&p.to_string_lossy()).unwrap();
|
2020-09-26 12:16:33 -04:00
|
|
|
let mut worker = create_test_worker();
|
2021-09-17 21:44:53 -04:00
|
|
|
let result = worker.execute_main_module(&module_specifier).await;
|
2020-09-26 12:16:33 -04:00
|
|
|
if let Err(err) = result {
|
|
|
|
eprintln!("execute_mod err {:?}", err);
|
|
|
|
}
|
2021-05-26 15:07:12 -04:00
|
|
|
if let Err(e) = worker.run_event_loop(false).await {
|
2020-09-26 12:16:33 -04:00
|
|
|
panic!("Future got unexpected error: {:?}", e);
|
|
|
|
}
|
2019-01-30 17:21:31 -05:00
|
|
|
}
|
|
|
|
|
2020-09-26 12:16:33 -04:00
|
|
|
#[tokio::test]
|
|
|
|
async fn execute_mod_circular() {
|
2019-09-04 17:16:46 -04:00
|
|
|
let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
|
|
|
.parent()
|
|
|
|
.unwrap()
|
2020-12-11 12:49:26 -05:00
|
|
|
.join("tests/circular1.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let module_specifier = resolve_url_or_path(&p.to_string_lossy()).unwrap();
|
2020-09-26 12:16:33 -04:00
|
|
|
let mut worker = create_test_worker();
|
2021-09-17 21:44:53 -04:00
|
|
|
let result = worker.execute_main_module(&module_specifier).await;
|
2020-02-03 18:08:44 -05:00
|
|
|
if let Err(err) = result {
|
|
|
|
eprintln!("execute_mod err {:?}", err);
|
|
|
|
}
|
2021-05-26 15:07:12 -04:00
|
|
|
if let Err(e) = worker.run_event_loop(false).await {
|
2020-02-03 18:08:44 -05:00
|
|
|
panic!("Future got unexpected error: {:?}", e);
|
|
|
|
}
|
2019-04-08 17:10:00 -04:00
|
|
|
}
|
|
|
|
|
2020-04-16 10:29:28 -04:00
|
|
|
#[tokio::test]
|
|
|
|
async fn execute_mod_resolve_error() {
|
|
|
|
// "foo" is not a valid module specifier so this should return an error.
|
|
|
|
let mut worker = create_test_worker();
|
2021-02-17 13:47:18 -05:00
|
|
|
let module_specifier = resolve_url_or_path("does-not-exist").unwrap();
|
2021-09-17 21:44:53 -04:00
|
|
|
let result = worker.execute_main_module(&module_specifier).await;
|
2020-04-16 10:29:28 -04:00
|
|
|
assert!(result.is_err());
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
|
|
|
|
2020-04-16 10:29:28 -04:00
|
|
|
#[tokio::test]
|
|
|
|
async fn execute_mod_002_hello() {
|
|
|
|
// This assumes cwd is project root (an assumption made throughout the
|
|
|
|
// tests).
|
|
|
|
let mut worker = create_test_worker();
|
2021-08-11 10:20:47 -04:00
|
|
|
let p = test_util::testdata_path().join("001_hello.js");
|
2021-02-17 13:47:18 -05:00
|
|
|
let module_specifier = resolve_url_or_path(&p.to_string_lossy()).unwrap();
|
2021-09-17 21:44:53 -04:00
|
|
|
let result = worker.execute_main_module(&module_specifier).await;
|
2020-04-16 10:29:28 -04:00
|
|
|
assert!(result.is_ok());
|
2019-04-16 15:13:42 -04:00
|
|
|
}
|
2018-09-17 20:41:13 -04:00
|
|
|
}
|