ts.rs 21.7 KB
Newer Older
R
Ry Dahl 已提交
1
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
2 3
use crate::compilers::CompiledModule;
use crate::compilers::CompiledModuleFuture;
4
use crate::diagnostics::Diagnostic;
B
Bartek Iwańczuk 已提交
5
use crate::disk_cache::DiskCache;
6 7
use crate::file_fetcher::SourceFile;
use crate::file_fetcher::SourceFileFetcher;
8
use crate::global_state::ThreadSafeGlobalState;
A
Andy Hayden 已提交
9
use crate::msg;
B
Bartek Iwańczuk 已提交
10
use crate::source_maps::SourceMapGetter;
11
use crate::startup_data;
12
use crate::state::*;
B
Bartek Iwańczuk 已提交
13
use crate::version;
14
use crate::worker::Worker;
15
use deno::Buf;
16
use deno::ErrBox;
17
use deno::ModuleSpecifier;
B
Bartek Iwańczuk 已提交
18
use futures::future::FutureExt;
R
Ryan Dahl 已提交
19
use futures::Future;
20
use regex::Regex;
B
Bartek Iwańczuk 已提交
21 22
use std::collections::HashSet;
use std::fs;
23
use std::io;
24
use std::path::PathBuf;
B
Bartek Iwańczuk 已提交
25
use std::pin::Pin;
K
Kitson Kelly 已提交
26
use std::str;
27
use std::sync::atomic::Ordering;
B
Bartek Iwańczuk 已提交
28 29
use std::sync::Mutex;
use url::Url;
R
Ryan Dahl 已提交
30

31 32 33 34 35
lazy_static! {
  static ref CHECK_JS_RE: Regex =
    Regex::new(r#""checkJs"\s*?:\s*?true"#).unwrap();
}

36 37 38 39 40 41 42 43 44
/// Struct which represents the state of the compiler
/// configuration where the first is canonical name for the configuration file,
/// second is a vector of the bytes of the contents of the configuration file,
/// third is bytes of the hash of contents.
#[derive(Clone)]
pub struct CompilerConfig {
  pub path: Option<PathBuf>,
  pub content: Option<Vec<u8>>,
  pub hash: Vec<u8>,
45
  pub compile_js: bool,
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
}

impl CompilerConfig {
  /// Take the passed flag and resolve the file name relative to the cwd.
  pub fn load(config_path: Option<String>) -> Result<Self, ErrBox> {
    let config_file = match &config_path {
      Some(config_file_name) => {
        debug!("Compiler config file: {}", config_file_name);
        let cwd = std::env::current_dir().unwrap();
        Some(cwd.join(config_file_name))
      }
      _ => None,
    };

    // Convert the PathBuf to a canonicalized string.  This is needed by the
    // compiler to properly deal with the configuration.
    let config_path = match &config_file {
A
Axetroy 已提交
63 64 65 66 67 68 69 70 71
      Some(config_file) => Some(config_file.canonicalize().map_err(|_| {
        io::Error::new(
          io::ErrorKind::InvalidInput,
          format!(
            "Could not find the config file: {}",
            config_file.to_string_lossy()
          ),
        )
      })),
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
      _ => None,
    };

    // Load the contents of the configuration file
    let config = match &config_file {
      Some(config_file) => {
        debug!("Attempt to load config: {}", config_file.to_str().unwrap());
        let config = fs::read(&config_file)?;
        Some(config)
      }
      _ => None,
    };

    let config_hash = match &config {
      Some(bytes) => bytes.clone(),
      _ => b"".to_vec(),
    };

90 91 92 93 94 95 96 97 98
    // If `checkJs` is set to true in `compilerOptions` then we're gonna be compiling
    // JavaScript files as well
    let compile_js = if let Some(config_content) = config.clone() {
      let config_str = std::str::from_utf8(&config_content)?;
      CHECK_JS_RE.is_match(config_str)
    } else {
      false
    };

99
    let ts_config = Self {
A
Axetroy 已提交
100
      path: config_path.unwrap_or_else(|| Ok(PathBuf::new())).ok(),
101 102
      content: config,
      hash: config_hash,
103
      compile_js,
104 105 106 107 108
    };

    Ok(ts_config)
  }
}
B
Bartek Iwańczuk 已提交
109 110 111 112 113 114 115 116

/// Information associated with compiled file in cache.
/// Includes source code path and state hash.
/// version_hash is used to validate versions of the file
/// and could be used to remove stale file in cache.
pub struct CompiledFileMetadata {
  pub source_path: PathBuf,
  pub version_hash: String,
R
Ryan Dahl 已提交
117 118
}

R
Ryan Dahl 已提交
119 120
static SOURCE_PATH: &str = "source_path";
static VERSION_HASH: &str = "version_hash";
121

B
Bartek Iwańczuk 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
impl CompiledFileMetadata {
  pub fn from_json_string(metadata_string: String) -> Option<Self> {
    // TODO: use serde for deserialization
    let maybe_metadata_json: serde_json::Result<serde_json::Value> =
      serde_json::from_str(&metadata_string);

    if let Ok(metadata_json) = maybe_metadata_json {
      let source_path = metadata_json[SOURCE_PATH].as_str().map(PathBuf::from);
      let version_hash = metadata_json[VERSION_HASH].as_str().map(String::from);

      if source_path.is_none() || version_hash.is_none() {
        return None;
      }

      return Some(CompiledFileMetadata {
        source_path: source_path.unwrap(),
        version_hash: version_hash.unwrap(),
      });
R
Ryan Dahl 已提交
140
    }
B
Bartek Iwańczuk 已提交
141 142

    None
R
Ryan Dahl 已提交
143 144
  }

145
  pub fn to_json_string(&self) -> Result<String, serde_json::Error> {
B
Bartek Iwańczuk 已提交
146
    let mut value_map = serde_json::map::Map::new();
147

B
Bartek Iwańczuk 已提交
148 149 150 151 152
    value_map.insert(SOURCE_PATH.to_owned(), json!(&self.source_path));
    value_map.insert(VERSION_HASH.to_string(), json!(&self.version_hash));
    serde_json::to_string(&value_map)
  }
}
R
Ryan Dahl 已提交
153
/// Creates the JSON message send to compiler.ts's onmessage.
K
Kitson Kelly 已提交
154
fn req(
155
  request_type: msg::CompilerRequestType,
K
Kitson Kelly 已提交
156 157
  root_names: Vec<String>,
  compiler_config: CompilerConfig,
158
  out_file: Option<String>,
K
Kitson Kelly 已提交
159
) -> Buf {
160 161
  let j = match (compiler_config.path, compiler_config.content) {
    (Some(config_path), Some(config_data)) => json!({
162
      "type": request_type as i32,
163
      "rootNames": root_names,
164
      "outFile": out_file,
165 166 167
      "configPath": config_path,
      "config": str::from_utf8(&config_data).unwrap(),
    }),
168
    _ => json!({
169
      "type": request_type as i32,
170
      "rootNames": root_names,
171
      "outFile": out_file,
172
    }),
R
Ryan Dahl 已提交
173
  };
174

R
Ryan Dahl 已提交
175
  j.to_string().into_boxed_str().into_boxed_bytes()
R
Ryan Dahl 已提交
176 177
}

178
/// Emit a SHA256 hash based on source code, deno version and TS config.
B
Bartek Iwańczuk 已提交
179 180 181 182 183 184
/// Used to check if a recompilation for source code is needed.
pub fn source_code_version_hash(
  source_code: &[u8],
  version: &str,
  config_hash: &[u8],
) -> String {
R
Ry Dahl 已提交
185
  crate::checksum::gen(vec![source_code, version.as_bytes(), config_hash])
B
Bartek Iwańczuk 已提交
186 187 188
}

pub struct TsCompiler {
189
  pub file_fetcher: SourceFileFetcher,
B
Bartek Iwańczuk 已提交
190 191 192 193 194 195 196 197
  pub config: CompilerConfig,
  pub disk_cache: DiskCache,
  /// Set of all URLs that have been compiled. This prevents double
  /// compilation of module.
  pub compiled: Mutex<HashSet<Url>>,
  /// This setting is controlled by `--reload` flag. Unless the flag
  /// is provided disk cache is used.
  pub use_disk_cache: bool,
198 199
  /// This setting is controlled by `compilerOptions.checkJs`
  pub compile_js: bool,
B
Bartek Iwańczuk 已提交
200 201 202 203
}

impl TsCompiler {
  pub fn new(
204 205
    file_fetcher: SourceFileFetcher,
    disk_cache: DiskCache,
B
Bartek Iwańczuk 已提交
206 207
    use_disk_cache: bool,
    config_path: Option<String>,
208 209 210 211
  ) -> Result<Self, ErrBox> {
    let config = CompilerConfig::load(config_path)?;

    let compiler = Self {
212 213
      file_fetcher,
      disk_cache,
214
      compile_js: config.compile_js,
215
      config,
B
Bartek Iwańczuk 已提交
216 217
      compiled: Mutex::new(HashSet::new()),
      use_disk_cache,
218 219 220
    };

    Ok(compiler)
B
Bartek Iwańczuk 已提交
221 222 223
  }

  /// Create a new V8 worker with snapshot of TS compiler and setup compiler's runtime.
224
  fn setup_worker(global_state: ThreadSafeGlobalState) -> Worker {
225 226
    let (int, ext) = ThreadSafeState::create_channels();
    let worker_state =
227
      ThreadSafeState::new(global_state.clone(), None, None, true, int)
228
        .expect("Unable to create worker state");
229

B
Bartek Iwańczuk 已提交
230
    // Count how many times we start the compiler worker.
231 232 233 234
    global_state
      .metrics
      .compiler_starts
      .fetch_add(1, Ordering::SeqCst);
B
Bartek Iwańczuk 已提交
235 236 237 238

    let mut worker = Worker::new(
      "TS".to_string(),
      startup_data::compiler_isolate_init(),
239
      worker_state,
240
      ext,
B
Bartek Iwańczuk 已提交
241 242 243 244 245 246 247 248
    );
    worker.execute("denoMain()").unwrap();
    worker.execute("workerMain()").unwrap();
    worker.execute("compilerMain()").unwrap();
    worker
  }

  pub fn bundle_async(
249
    &self,
250
    global_state: ThreadSafeGlobalState,
B
Bartek Iwańczuk 已提交
251
    module_name: String,
252
    out_file: Option<String>,
B
Bartek Iwańczuk 已提交
253
  ) -> impl Future<Output = Result<(), ErrBox>> {
B
Bartek Iwańczuk 已提交
254 255 256 257 258
    debug!(
      "Invoking the compiler to bundle. module_name: {}",
      module_name
    );

A
Axetroy 已提交
259
    let root_names = vec![module_name];
260 261 262 263 264 265
    let req_msg = req(
      msg::CompilerRequestType::Bundle,
      root_names,
      self.config.clone(),
      out_file,
    );
B
Bartek Iwańczuk 已提交
266

A
Axetroy 已提交
267
    let worker = TsCompiler::setup_worker(global_state);
268
    let worker_ = worker.clone();
B
Bartek Iwańczuk 已提交
269

270 271 272 273 274 275 276 277 278 279 280
    async move {
      worker.post_message(req_msg).await?;
      worker.await?;
      debug!("Sent message to worker");
      let maybe_msg = worker_.get_message().await?;
      debug!("Received message from worker");
      if let Some(msg) = maybe_msg {
        let json_str = std::str::from_utf8(&msg).unwrap();
        debug!("Message: {}", json_str);
        if let Some(diagnostics) = Diagnostic::from_emit_result(json_str) {
          return Err(ErrBox::from(diagnostics));
B
Bartek Iwańczuk 已提交
281
        }
282 283 284
      }
      Ok(())
    }
B
Bartek Iwańczuk 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
  }

  /// Mark given module URL as compiled to avoid multiple compilations of same module
  /// in single run.
  fn mark_compiled(&self, url: &Url) {
    let mut c = self.compiled.lock().unwrap();
    c.insert(url.clone());
  }

  /// Check if given module URL has already been compiled and can be fetched directly from disk.
  fn has_compiled(&self, url: &Url) -> bool {
    let c = self.compiled.lock().unwrap();
    c.contains(url)
  }

  /// Asynchronously compile module and all it's dependencies.
  ///
  /// This method compiled every module at most once.
  ///
  /// If `--reload` flag was provided then compiler will not on-disk cache and force recompilation.
  ///
  /// If compilation is required then new V8 worker is spawned with fresh TS compiler.
  pub fn compile_async(
308
    &self,
309
    global_state: ThreadSafeGlobalState,
B
Bartek Iwańczuk 已提交
310
    source_file: &SourceFile,
B
Bartek Iwańczuk 已提交
311
  ) -> Pin<Box<CompiledModuleFuture>> {
B
Bartek Iwańczuk 已提交
312
    if self.has_compiled(&source_file.url) {
313
      return match self.get_compiled_module(&source_file.url) {
B
Bartek Iwańczuk 已提交
314 315
        Ok(compiled) => futures::future::ok(compiled).boxed(),
        Err(err) => futures::future::err(err).boxed(),
316
      };
B
Bartek Iwańczuk 已提交
317 318 319 320 321 322 323 324 325 326 327
    }

    if self.use_disk_cache {
      // Try to load cached version:
      // 1. check if there's 'meta' file
      if let Some(metadata) = self.get_metadata(&source_file.url) {
        // 2. compare version hashes
        // TODO: it would probably be good idea to make it method implemented on SourceFile
        let version_hash_to_validate = source_code_version_hash(
          &source_file.source_code,
          version::DENO,
328
          &self.config.hash,
B
Bartek Iwańczuk 已提交
329 330 331 332 333
        );

        if metadata.version_hash == version_hash_to_validate {
          debug!("load_cache metadata version hash match");
          if let Ok(compiled_module) =
334
            self.get_compiled_module(&source_file.url)
B
Bartek Iwańczuk 已提交
335
          {
336
            self.mark_compiled(&source_file.url);
B
Bartek Iwańczuk 已提交
337
            return futures::future::ok(compiled_module).boxed();
B
Bartek Iwańczuk 已提交
338
          }
K
Kitson Kelly 已提交
339 340
        }
      }
B
Bartek Iwańczuk 已提交
341
    }
K
Kitson Kelly 已提交
342

B
Bartek Iwańczuk 已提交
343 344 345 346 347 348 349 350 351 352 353
    let source_file_ = source_file.clone();

    debug!(">>>>> compile_sync START");
    let module_url = source_file.url.clone();

    debug!(
      "Running rust part of compile_sync, module specifier: {}",
      &source_file.url
    );

    let root_names = vec![module_url.to_string()];
354 355 356 357 358 359
    let req_msg = req(
      msg::CompilerRequestType::Compile,
      root_names,
      self.config.clone(),
      None,
    );
B
Bartek Iwańczuk 已提交
360

361 362 363 364 365
    let worker = TsCompiler::setup_worker(global_state.clone());
    let worker_ = worker.clone();
    let compiling_job = global_state
      .progress
      .add("Compile", &module_url.to_string());
A
Axetroy 已提交
366
    let global_state_ = global_state;
367

368 369 370
    async move {
      worker.post_message(req_msg).await?;
      worker.await?;
B
Bartek Iwańczuk 已提交
371
      debug!("Sent message to worker");
372 373 374 375 376 377
      let maybe_msg = worker_.get_message().await?;
      if let Some(msg) = maybe_msg {
        let json_str = std::str::from_utf8(&msg).unwrap();
        debug!("Message: {}", json_str);
        if let Some(diagnostics) = Diagnostic::from_emit_result(json_str) {
          return Err(ErrBox::from(diagnostics));
B
Bartek Iwańczuk 已提交
378
        }
379 380 381 382 383 384 385 386 387
      }
      let compiled_module = global_state_
        .ts_compiler
        .get_compiled_module(&source_file_.url)
        .expect("Expected to find compiled file");
      drop(compiling_job);
      debug!(">>>>> compile_sync END");
      Ok(compiled_module)
    }
A
Axetroy 已提交
388
    .boxed()
B
Bartek Iwańczuk 已提交
389 390 391
  }

  /// Get associated `CompiledFileMetadata` for given module if it exists.
392
  pub fn get_metadata(&self, url: &Url) -> Option<CompiledFileMetadata> {
B
Bartek Iwańczuk 已提交
393 394 395 396 397 398 399 400 401 402 403
    // Try to load cached version:
    // 1. check if there's 'meta' file
    let cache_key = self
      .disk_cache
      .get_cache_filename_with_extension(url, "meta");
    if let Ok(metadata_bytes) = self.disk_cache.get(&cache_key) {
      if let Ok(metadata) = std::str::from_utf8(&metadata_bytes) {
        if let Some(read_metadata) =
          CompiledFileMetadata::from_json_string(metadata.to_string())
        {
          return Some(read_metadata);
404 405
        }
      }
B
Bartek Iwańczuk 已提交
406 407 408 409
    }

    None
  }
R
Ryan Dahl 已提交
410

411
  pub fn get_compiled_module(
412
    &self,
413 414 415 416 417 418 419 420 421 422 423 424 425 426
    module_url: &Url,
  ) -> Result<CompiledModule, ErrBox> {
    let compiled_source_file = self.get_compiled_source_file(module_url)?;

    let compiled_module = CompiledModule {
      code: str::from_utf8(&compiled_source_file.source_code)
        .unwrap()
        .to_string(),
      name: module_url.to_string(),
    };

    Ok(compiled_module)
  }

B
Bartek Iwańczuk 已提交
427 428 429 430
  /// Return compiled JS file for given TS module.
  // TODO: ideally we shouldn't construct SourceFile by hand, but it should be delegated to
  // SourceFileFetcher
  pub fn get_compiled_source_file(
431
    &self,
432
    module_url: &Url,
B
Bartek Iwańczuk 已提交
433 434 435
  ) -> Result<SourceFile, ErrBox> {
    let cache_key = self
      .disk_cache
436
      .get_cache_filename_with_extension(&module_url, "js");
B
Bartek Iwańczuk 已提交
437 438 439 440 441
    let compiled_code = self.disk_cache.get(&cache_key)?;
    let compiled_code_filename = self.disk_cache.location.join(cache_key);
    debug!("compiled filename: {:?}", compiled_code_filename);

    let compiled_module = SourceFile {
442
      url: module_url.clone(),
B
Bartek Iwańczuk 已提交
443 444 445 446 447 448 449 450 451 452 453 454 455
      filename: compiled_code_filename,
      media_type: msg::MediaType::JavaScript,
      source_code: compiled_code,
    };

    Ok(compiled_module)
  }

  /// Save compiled JS file for given TS module to on-disk cache.
  ///
  /// Along compiled file a special metadata file is saved as well containing
  /// hash that can be validated to avoid unnecessary recompilation.
  fn cache_compiled_file(
456
    &self,
B
Bartek Iwańczuk 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469
    module_specifier: &ModuleSpecifier,
    contents: &str,
  ) -> std::io::Result<()> {
    let js_key = self
      .disk_cache
      .get_cache_filename_with_extension(module_specifier.as_url(), "js");
    self
      .disk_cache
      .set(&js_key, contents.as_bytes())
      .and_then(|_| {
        self.mark_compiled(module_specifier.as_url());

        let source_file = self
470
          .file_fetcher
471
          .fetch_cached_source_file(&module_specifier)
B
Bartek Iwańczuk 已提交
472 473 474 475 476
          .expect("Source file not found");

        let version_hash = source_code_version_hash(
          &source_file.source_code,
          version::DENO,
477
          &self.config.hash,
B
Bartek Iwańczuk 已提交
478 479 480
        );

        let compiled_file_metadata = CompiledFileMetadata {
A
Axetroy 已提交
481
          source_path: source_file.filename,
B
Bartek Iwańczuk 已提交
482 483 484 485 486 487 488 489 490
          version_hash,
        };
        let meta_key = self
          .disk_cache
          .get_cache_filename_with_extension(module_specifier.as_url(), "meta");
        self.disk_cache.set(
          &meta_key,
          compiled_file_metadata.to_json_string()?.as_bytes(),
        )
491
      })
B
Bartek Iwańczuk 已提交
492 493 494 495 496 497
  }

  /// Return associated source map file for given TS module.
  // TODO: ideally we shouldn't construct SourceFile by hand, but it should be delegated to
  // SourceFileFetcher
  pub fn get_source_map_file(
498
    &self,
B
Bartek Iwańczuk 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
    module_specifier: &ModuleSpecifier,
  ) -> Result<SourceFile, ErrBox> {
    let cache_key = self
      .disk_cache
      .get_cache_filename_with_extension(module_specifier.as_url(), "js.map");
    let source_code = self.disk_cache.get(&cache_key)?;
    let source_map_filename = self.disk_cache.location.join(cache_key);
    debug!("source map filename: {:?}", source_map_filename);

    let source_map_file = SourceFile {
      url: module_specifier.as_url().to_owned(),
      filename: source_map_filename,
      media_type: msg::MediaType::JavaScript,
      source_code,
    };

    Ok(source_map_file)
  }

  /// Save source map file for given TS module to on-disk cache.
  fn cache_source_map(
520
    &self,
B
Bartek Iwańczuk 已提交
521 522 523 524 525 526 527 528 529 530 531
    module_specifier: &ModuleSpecifier,
    contents: &str,
  ) -> std::io::Result<()> {
    let source_map_key = self
      .disk_cache
      .get_cache_filename_with_extension(module_specifier.as_url(), "js.map");
    self.disk_cache.set(&source_map_key, contents.as_bytes())
  }

  /// This method is called by TS compiler via an "op".
  pub fn cache_compiler_output(
532
    &self,
B
Bartek Iwańczuk 已提交
533 534 535 536 537 538 539 540 541 542
    module_specifier: &ModuleSpecifier,
    extension: &str,
    contents: &str,
  ) -> std::io::Result<()> {
    match extension {
      ".map" => self.cache_source_map(module_specifier, contents),
      ".js" => self.cache_compiled_file(module_specifier, contents),
      _ => unreachable!(),
    }
  }
A
andy finch 已提交
543 544
}

B
Bartek Iwańczuk 已提交
545 546 547 548
impl SourceMapGetter for TsCompiler {
  fn get_source_map(&self, script_name: &str) -> Option<Vec<u8>> {
    self
      .try_to_resolve_and_get_source_map(script_name)
R
Ry Dahl 已提交
549
      .map(|out| out.source_code)
B
Bartek Iwańczuk 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
  }

  fn get_source_line(&self, script_name: &str, line: usize) -> Option<String> {
    self
      .try_resolve_and_get_source_file(script_name)
      .and_then(|out| {
        str::from_utf8(&out.source_code).ok().and_then(|v| {
          let lines: Vec<&str> = v.lines().collect();
          assert!(lines.len() > line);
          Some(lines[line].to_string())
        })
      })
  }
}

// `SourceMapGetter` related methods
impl TsCompiler {
567
  fn try_to_resolve(&self, script_name: &str) -> Option<ModuleSpecifier> {
B
Bartek Iwańczuk 已提交
568 569 570 571 572 573 574 575 576 577 578
    // if `script_name` can't be resolved to ModuleSpecifier it's probably internal
    // script (like `gen/cli/bundle/compiler.js`) so we won't be
    // able to get source for it anyway
    ModuleSpecifier::resolve_url(script_name).ok()
  }

  fn try_resolve_and_get_source_file(
    &self,
    script_name: &str,
  ) -> Option<SourceFile> {
    if let Some(module_specifier) = self.try_to_resolve(script_name) {
579 580 581
      return self
        .file_fetcher
        .fetch_cached_source_file(&module_specifier);
B
Bartek Iwańczuk 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
    }

    None
  }

  fn try_to_resolve_and_get_source_map(
    &self,
    script_name: &str,
  ) -> Option<SourceFile> {
    if let Some(module_specifier) = self.try_to_resolve(script_name) {
      return match self.get_source_map_file(&module_specifier) {
        Ok(out) => Some(out),
        Err(_) => None,
      };
    }

    None
  }
R
Ryan Dahl 已提交
600 601 602 603 604
}

#[cfg(test)]
mod tests {
  use super::*;
605
  use crate::fs as deno_fs;
B
Bartek Iwańczuk 已提交
606 607 608
  use crate::tokio_util;
  use deno::ModuleSpecifier;
  use std::path::PathBuf;
609
  use tempfile::TempDir;
B
Bartek Iwańczuk 已提交
610

R
Ryan Dahl 已提交
611
  #[test]
612 613 614 615
  fn test_compile_async() {
    let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
      .parent()
      .unwrap()
A
Axetroy 已提交
616
      .join("tests/002_hello.ts");
617 618 619 620 621 622 623 624 625
    let specifier =
      ModuleSpecifier::resolve_url_or_path(p.to_str().unwrap()).unwrap();

    let out = SourceFile {
      url: specifier.as_url().clone(),
      filename: PathBuf::from(p.to_str().unwrap().to_string()),
      media_type: msg::MediaType::TypeScript,
      source_code: include_bytes!("../tests/002_hello.ts").to_vec(),
    };
A
andy finch 已提交
626

627
    let mock_state = ThreadSafeGlobalState::mock(vec![
628 629 630 631
      String::from("deno"),
      String::from("hello.js"),
    ]);

632 633
    let fut = async move {
      let result = mock_state
B
Bartek Iwańczuk 已提交
634
        .ts_compiler
635
        .compile_async(mock_state.clone(), &out)
636 637 638 639 640 641 642 643 644 645 646
        .await;

      assert!(result.is_ok());
      assert!(result
        .unwrap()
        .code
        .as_bytes()
        .starts_with("console.log(\"Hello World\");".as_bytes()));
    };

    tokio_util::run(fut.boxed())
647 648
  }

K
Kitson Kelly 已提交
649 650
  #[test]
  fn test_bundle_async() {
651 652 653
    let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
      .parent()
      .unwrap()
A
Axetroy 已提交
654
      .join("tests/002_hello.ts");
655
    use deno::ModuleSpecifier;
656
    let module_name = ModuleSpecifier::resolve_url_or_path(p.to_str().unwrap())
K
Kitson Kelly 已提交
657 658 659
      .unwrap()
      .to_string();

660
    let state = ThreadSafeGlobalState::mock(vec![
661 662
      String::from("deno"),
      p.to_string_lossy().into(),
K
Kitson Kelly 已提交
663 664
      String::from("$deno$/bundle.js"),
    ]);
665

666 667
    let fut = async move {
      let result = state
668 669 670 671
        .ts_compiler
        .bundle_async(
          state.clone(),
          module_name,
672
          Some(String::from("$deno$/bundle.js")),
673
        )
674 675 676 677 678
        .await;

      assert!(result.is_ok());
    };
    tokio_util::run(fut.boxed())
K
Kitson Kelly 已提交
679
  }
B
Bartek Iwańczuk 已提交
680 681 682 683

  #[test]
  fn test_source_code_version_hash() {
    assert_eq!(
684
      "0185b42de0686b4c93c314daaa8dee159f768a9e9a336c2a5e3d5b8ca6c4208c",
B
Bartek Iwańczuk 已提交
685 686 687 688
      source_code_version_hash(b"1+2", "0.4.0", b"{}")
    );
    // Different source_code should result in different hash.
    assert_eq!(
689
      "e58631f1b6b6ce2b300b133ec2ad16a8a5ba6b7ecf812a8c06e59056638571ac",
B
Bartek Iwańczuk 已提交
690 691 692 693
      source_code_version_hash(b"1", "0.4.0", b"{}")
    );
    // Different version should result in different hash.
    assert_eq!(
694
      "307e6200347a88dbbada453102deb91c12939c65494e987d2d8978f6609b5633",
B
Bartek Iwańczuk 已提交
695 696 697 698
      source_code_version_hash(b"1", "0.1.0", b"{}")
    );
    // Different config should result in different hash.
    assert_eq!(
699
      "195eaf104a591d1d7f69fc169c60a41959c2b7a21373cd23a8f675f877ec385f",
B
Bartek Iwańczuk 已提交
700 701 702
      source_code_version_hash(b"1", "0.4.0", b"{\"compilerOptions\": {}}")
    );
  }
703 704 705 706 707 708 709 710

  #[test]
  fn test_compile_js() {
    let temp_dir = TempDir::new().expect("tempdir fail");
    let temp_dir_path = temp_dir.path();

    let test_cases = vec![
      // valid JSON
A
Axetroy 已提交
711
      (r#"{ "compilerOptions": { "checkJs": true } } "#, true),
712 713 714 715 716 717
      // JSON with comment
      (
        r#"{ "compilerOptions": { // force .js file compilation by Deno "checkJs": true } } "#,
        true,
      ),
      // invalid JSON
A
Axetroy 已提交
718
      (r#"{ "compilerOptions": { "checkJs": true },{ } "#, true),
719
      // without content
A
Axetroy 已提交
720
      ("", false),
721 722 723 724 725 726 727 728 729 730 731
    ];

    let path = temp_dir_path.join("tsconfig.json");
    let path_str = path.to_str().unwrap().to_string();

    for (json_str, expected) in test_cases {
      deno_fs::write_file(&path, json_str.as_bytes(), 0o666).unwrap();
      let config = CompilerConfig::load(Some(path_str.clone())).unwrap();
      assert_eq!(config.compile_js, expected);
    }
  }
732 733 734 735 736 737 738

  #[test]
  fn test_compiler_config_load() {
    let temp_dir = TempDir::new().expect("tempdir fail");
    let temp_dir_path = temp_dir.path();
    let path = temp_dir_path.join("doesnotexist.json");
    let path_str = path.to_str().unwrap().to_string();
A
Axetroy 已提交
739
    let res = CompilerConfig::load(Some(path_str));
740 741
    assert!(res.is_err());
  }
R
Ryan Dahl 已提交
742
}