2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-09-05 20:34:02 -04:00
|
|
|
|
2021-11-16 09:02:28 -05:00
|
|
|
use deno_core::anyhow::Context;
|
2021-11-23 10:38:11 -05:00
|
|
|
use deno_core::error::{uri_error, AnyError};
|
2020-08-12 16:34:17 -04:00
|
|
|
pub use deno_core::normalize_path;
|
2021-08-13 06:06:49 -04:00
|
|
|
use deno_core::ModuleSpecifier;
|
2020-12-18 13:30:49 -05:00
|
|
|
use deno_runtime::deno_crypto::rand;
|
2022-06-14 10:05:37 -04:00
|
|
|
use std::borrow::Cow;
|
2020-03-20 09:46:26 -04:00
|
|
|
use std::env::current_dir;
|
|
|
|
use std::fs::OpenOptions;
|
2020-10-29 22:19:03 -04:00
|
|
|
use std::io::{Error, Write};
|
2020-08-12 16:34:17 -04:00
|
|
|
use std::path::{Path, PathBuf};
|
2020-02-17 13:11:45 -05:00
|
|
|
use walkdir::WalkDir;
|
2018-07-26 17:54:22 -04:00
|
|
|
|
2020-12-18 13:30:49 -05:00
|
|
|
pub fn atomic_write_file<T: AsRef<[u8]>>(
|
|
|
|
filename: &Path,
|
|
|
|
data: T,
|
|
|
|
mode: u32,
|
|
|
|
) -> std::io::Result<()> {
|
|
|
|
let rand: String = (0..4)
|
|
|
|
.map(|_| format!("{:02x}", rand::random::<u8>()))
|
|
|
|
.collect();
|
|
|
|
let extension = format!("{}.tmp", rand);
|
|
|
|
let tmp_file = filename.with_extension(extension);
|
|
|
|
write_file(&tmp_file, data, mode)?;
|
|
|
|
std::fs::rename(tmp_file, filename)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-12-11 08:36:34 -05:00
|
|
|
pub fn write_file<T: AsRef<[u8]>>(
|
2018-09-11 12:00:57 -04:00
|
|
|
filename: &Path,
|
2018-12-11 08:36:34 -05:00
|
|
|
data: T,
|
2020-03-07 22:29:12 -05:00
|
|
|
mode: u32,
|
2018-09-11 12:00:57 -04:00
|
|
|
) -> std::io::Result<()> {
|
2020-03-07 22:29:12 -05:00
|
|
|
write_file_2(filename, data, true, mode, true, false)
|
2019-02-02 14:26:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn write_file_2<T: AsRef<[u8]>>(
|
|
|
|
filename: &Path,
|
|
|
|
data: T,
|
2020-03-07 22:29:12 -05:00
|
|
|
update_mode: bool,
|
|
|
|
mode: u32,
|
2019-02-02 14:26:18 -05:00
|
|
|
is_create: bool,
|
|
|
|
is_append: bool,
|
|
|
|
) -> std::io::Result<()> {
|
2018-09-11 12:00:57 -04:00
|
|
|
let mut file = OpenOptions::new()
|
|
|
|
.read(false)
|
|
|
|
.write(true)
|
|
|
|
.append(is_append)
|
|
|
|
.truncate(!is_append)
|
2019-02-02 14:26:18 -05:00
|
|
|
.create(is_create)
|
2018-09-11 12:00:57 -04:00
|
|
|
.open(filename)?;
|
|
|
|
|
2020-03-07 22:29:12 -05:00
|
|
|
if update_mode {
|
2020-03-20 09:46:26 -04:00
|
|
|
#[cfg(unix)]
|
|
|
|
{
|
|
|
|
use std::os::unix::fs::PermissionsExt;
|
|
|
|
let mode = mode & 0o777;
|
|
|
|
let permissions = PermissionsExt::from_mode(mode);
|
|
|
|
file.set_permissions(permissions)?;
|
2018-08-23 18:36:45 -04:00
|
|
|
}
|
2020-03-20 09:46:26 -04:00
|
|
|
#[cfg(not(unix))]
|
|
|
|
let _ = mode;
|
2018-08-23 18:36:45 -04:00
|
|
|
}
|
2018-09-14 15:30:43 -04:00
|
|
|
|
2020-03-20 09:46:26 -04:00
|
|
|
file.write_all(data.as_ref())
|
2019-05-07 21:58:58 -04:00
|
|
|
}
|
2019-07-17 18:15:30 -04:00
|
|
|
|
2020-10-29 22:19:03 -04:00
|
|
|
/// Similar to `std::fs::canonicalize()` but strips UNC prefixes on Windows.
|
|
|
|
pub fn canonicalize_path(path: &Path) -> Result<PathBuf, Error> {
|
2021-10-25 11:54:36 -04:00
|
|
|
let path = path.canonicalize()?;
|
|
|
|
#[cfg(windows)]
|
|
|
|
return Ok(strip_unc_prefix(path));
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
return Ok(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
fn strip_unc_prefix(path: PathBuf) -> PathBuf {
|
|
|
|
use std::path::Component;
|
|
|
|
use std::path::Prefix;
|
|
|
|
|
|
|
|
let mut components = path.components();
|
|
|
|
match components.next() {
|
|
|
|
Some(Component::Prefix(prefix)) => {
|
|
|
|
match prefix.kind() {
|
|
|
|
// \\?\device
|
|
|
|
Prefix::Verbatim(device) => {
|
|
|
|
let mut path = PathBuf::new();
|
|
|
|
path.push(format!(r"\\{}\", device.to_string_lossy()));
|
|
|
|
path.extend(components.filter(|c| !matches!(c, Component::RootDir)));
|
|
|
|
path
|
|
|
|
}
|
|
|
|
// \\?\c:\path
|
|
|
|
Prefix::VerbatimDisk(_) => {
|
|
|
|
let mut path = PathBuf::new();
|
|
|
|
path.push(prefix.as_os_str().to_string_lossy().replace(r"\\?\", ""));
|
|
|
|
path.extend(components);
|
|
|
|
path
|
|
|
|
}
|
|
|
|
// \\?\UNC\hostname\share_name\path
|
|
|
|
Prefix::VerbatimUNC(hostname, share_name) => {
|
|
|
|
let mut path = PathBuf::new();
|
|
|
|
path.push(format!(
|
|
|
|
r"\\{}\{}\",
|
|
|
|
hostname.to_string_lossy(),
|
|
|
|
share_name.to_string_lossy()
|
|
|
|
));
|
|
|
|
path.extend(components.filter(|c| !matches!(c, Component::RootDir)));
|
|
|
|
path
|
|
|
|
}
|
|
|
|
_ => path,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => path,
|
2020-10-29 22:19:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
pub fn resolve_from_cwd(path: &Path) -> Result<PathBuf, AnyError> {
|
2020-01-20 09:45:44 -05:00
|
|
|
let resolved_path = if path.is_absolute() {
|
|
|
|
path.to_owned()
|
2019-07-17 18:15:30 -04:00
|
|
|
} else {
|
2021-04-21 11:52:00 -04:00
|
|
|
let cwd =
|
|
|
|
current_dir().context("Failed to get current working directory")?;
|
2019-07-17 18:15:30 -04:00
|
|
|
cwd.join(path)
|
|
|
|
};
|
|
|
|
|
2020-02-26 16:11:52 -05:00
|
|
|
Ok(normalize_path(&resolved_path))
|
2019-07-17 18:15:30 -04:00
|
|
|
}
|
2019-09-07 14:13:09 -04:00
|
|
|
|
2020-11-14 07:05:26 -05:00
|
|
|
/// Checks if the path has extension Deno supports.
|
|
|
|
pub fn is_supported_ext(path: &Path) -> bool {
|
2021-01-19 12:39:35 -05:00
|
|
|
if let Some(ext) = get_extension(path) {
|
2022-01-04 18:46:34 -05:00
|
|
|
matches!(
|
|
|
|
ext.as_str(),
|
|
|
|
"ts" | "tsx" | "js" | "jsx" | "mjs" | "mts" | "cjs" | "cts"
|
|
|
|
)
|
2021-01-19 12:39:35 -05:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-14 04:17:21 -04:00
|
|
|
/// Checks if the path has a basename and extension Deno supports for tests.
|
|
|
|
pub fn is_supported_test_path(path: &Path) -> bool {
|
2022-01-04 18:46:34 -05:00
|
|
|
if let Some(name) = path.file_stem() {
|
|
|
|
let basename = name.to_string_lossy();
|
|
|
|
(basename.ends_with("_test")
|
|
|
|
|| basename.ends_with(".test")
|
|
|
|
|| basename == "test")
|
|
|
|
&& is_supported_ext(path)
|
2021-08-14 04:17:21 -04:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-11 17:07:02 -05:00
|
|
|
/// Checks if the path has a basename and extension Deno supports for benches.
|
|
|
|
pub fn is_supported_bench_path(path: &Path) -> bool {
|
|
|
|
if let Some(name) = path.file_stem() {
|
|
|
|
let basename = name.to_string_lossy();
|
|
|
|
(basename.ends_with("_bench")
|
|
|
|
|| basename.ends_with(".bench")
|
|
|
|
|| basename == "bench")
|
|
|
|
&& is_supported_ext(path)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-14 04:17:21 -04:00
|
|
|
/// Checks if the path has an extension Deno supports for tests.
|
|
|
|
pub fn is_supported_test_ext(path: &Path) -> bool {
|
2021-07-29 15:03:06 -04:00
|
|
|
if let Some(ext) = get_extension(path) {
|
2021-09-23 12:19:25 -04:00
|
|
|
matches!(
|
|
|
|
ext.as_str(),
|
|
|
|
"ts"
|
|
|
|
| "tsx"
|
|
|
|
| "js"
|
|
|
|
| "jsx"
|
|
|
|
| "mjs"
|
2022-01-04 18:46:34 -05:00
|
|
|
| "mts"
|
|
|
|
| "cjs"
|
|
|
|
| "cts"
|
2021-09-23 12:19:25 -04:00
|
|
|
| "md"
|
|
|
|
| "mkd"
|
|
|
|
| "mkdn"
|
|
|
|
| "mdwn"
|
|
|
|
| "mdown"
|
|
|
|
| "markdown"
|
|
|
|
)
|
2021-07-29 15:03:06 -04:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
2020-11-14 07:05:26 -05:00
|
|
|
|
2021-01-19 12:39:35 -05:00
|
|
|
/// Get the extension of a file in lowercase.
|
|
|
|
pub fn get_extension(file_path: &Path) -> Option<String> {
|
|
|
|
return file_path
|
|
|
|
.extension()
|
|
|
|
.and_then(|e| e.to_str())
|
|
|
|
.map(|e| e.to_lowercase());
|
|
|
|
}
|
|
|
|
|
2020-11-14 07:05:26 -05:00
|
|
|
/// Collects file paths that satisfy the given predicate, by recursively walking `files`.
|
|
|
|
/// If the walker visits a path that is listed in `ignore`, it skips descending into the directory.
|
|
|
|
pub fn collect_files<P>(
|
2020-11-22 15:45:44 -05:00
|
|
|
files: &[PathBuf],
|
|
|
|
ignore: &[PathBuf],
|
2020-11-14 07:05:26 -05:00
|
|
|
predicate: P,
|
|
|
|
) -> Result<Vec<PathBuf>, AnyError>
|
|
|
|
where
|
|
|
|
P: Fn(&Path) -> bool,
|
|
|
|
{
|
|
|
|
let mut target_files = Vec::new();
|
|
|
|
|
|
|
|
// retain only the paths which exist and ignore the rest
|
|
|
|
let canonicalized_ignore: Vec<PathBuf> = ignore
|
2020-11-22 15:45:44 -05:00
|
|
|
.iter()
|
2021-11-01 16:22:08 -04:00
|
|
|
.filter_map(|i| canonicalize_path(i).ok())
|
2020-11-14 07:05:26 -05:00
|
|
|
.collect();
|
|
|
|
|
|
|
|
for file in files {
|
|
|
|
for entry in WalkDir::new(file)
|
|
|
|
.into_iter()
|
|
|
|
.filter_entry(|e| {
|
2021-11-01 16:22:08 -04:00
|
|
|
canonicalize_path(e.path()).map_or(false, |c| {
|
2020-11-14 07:05:26 -05:00
|
|
|
!canonicalized_ignore.iter().any(|i| c.starts_with(i))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.filter_map(|e| match e {
|
|
|
|
Ok(e) if !e.file_type().is_dir() && predicate(e.path()) => Some(e),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
{
|
2021-11-01 16:22:08 -04:00
|
|
|
target_files.push(canonicalize_path(entry.path())?)
|
2020-11-14 07:05:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(target_files)
|
|
|
|
}
|
|
|
|
|
2021-08-13 06:06:49 -04:00
|
|
|
/// Collects module specifiers that satisfy the given predicate as a file path, by recursively walking `include`.
|
|
|
|
/// Specifiers that start with http and https are left intact.
|
|
|
|
pub fn collect_specifiers<P>(
|
|
|
|
include: Vec<String>,
|
2021-08-24 11:23:29 -04:00
|
|
|
ignore: &[PathBuf],
|
2021-08-13 06:06:49 -04:00
|
|
|
predicate: P,
|
|
|
|
) -> Result<Vec<ModuleSpecifier>, AnyError>
|
|
|
|
where
|
|
|
|
P: Fn(&Path) -> bool,
|
|
|
|
{
|
|
|
|
let mut prepared = vec![];
|
|
|
|
|
2022-07-14 17:52:44 -04:00
|
|
|
let root_path = current_dir()?;
|
2021-08-14 04:16:24 -04:00
|
|
|
for path in include {
|
|
|
|
let lowercase_path = path.to_lowercase();
|
|
|
|
if lowercase_path.starts_with("http://")
|
|
|
|
|| lowercase_path.starts_with("https://")
|
|
|
|
{
|
|
|
|
let url = ModuleSpecifier::parse(&path)?;
|
|
|
|
prepared.push(url);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-07-04 10:46:10 -04:00
|
|
|
let p = if lowercase_path.starts_with("file://") {
|
|
|
|
specifier_to_file_path(&ModuleSpecifier::parse(&path)?)?
|
|
|
|
} else {
|
|
|
|
root_path.join(path)
|
|
|
|
};
|
|
|
|
let p = normalize_path(&p);
|
2021-08-13 06:06:49 -04:00
|
|
|
if p.is_dir() {
|
2021-08-24 11:23:29 -04:00
|
|
|
let test_files = collect_files(&[p], ignore, &predicate).unwrap();
|
2021-08-13 06:06:49 -04:00
|
|
|
let mut test_files_as_urls = test_files
|
|
|
|
.iter()
|
|
|
|
.map(|f| ModuleSpecifier::from_file_path(f).unwrap())
|
|
|
|
.collect::<Vec<ModuleSpecifier>>();
|
|
|
|
|
|
|
|
test_files_as_urls.sort();
|
|
|
|
prepared.extend(test_files_as_urls);
|
|
|
|
} else {
|
|
|
|
let url = ModuleSpecifier::from_file_path(p).unwrap();
|
|
|
|
prepared.push(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(prepared)
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:38:11 -05:00
|
|
|
/// Asynchronously removes a directory and all its descendants, but does not error
|
|
|
|
/// when the directory does not exist.
|
2021-06-25 21:44:27 -04:00
|
|
|
pub async fn remove_dir_all_if_exists(path: &Path) -> std::io::Result<()> {
|
|
|
|
let result = tokio::fs::remove_dir_all(path).await;
|
|
|
|
match result {
|
|
|
|
Err(err) if err.kind() == std::io::ErrorKind::NotFound => Ok(()),
|
|
|
|
_ => result,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:38:11 -05:00
|
|
|
/// Attempts to convert a specifier to a file path. By default, uses the Url
|
|
|
|
/// crate's `to_file_path()` method, but falls back to try and resolve unix-style
|
|
|
|
/// paths on Windows.
|
|
|
|
pub fn specifier_to_file_path(
|
|
|
|
specifier: &ModuleSpecifier,
|
|
|
|
) -> Result<PathBuf, AnyError> {
|
|
|
|
let result = if cfg!(windows) {
|
|
|
|
match specifier.to_file_path() {
|
|
|
|
Ok(path) => Ok(path),
|
|
|
|
Err(()) => {
|
|
|
|
// This might be a unix-style path which is used in the tests even on Windows.
|
|
|
|
// Attempt to see if we can convert it to a `PathBuf`. This code should be removed
|
|
|
|
// once/if https://github.com/servo/rust-url/issues/730 is implemented.
|
|
|
|
if specifier.scheme() == "file"
|
|
|
|
&& specifier.host().is_none()
|
|
|
|
&& specifier.port().is_none()
|
|
|
|
&& specifier.path_segments().is_some()
|
|
|
|
{
|
|
|
|
let path_str = specifier.path();
|
|
|
|
match String::from_utf8(
|
|
|
|
percent_encoding::percent_decode(path_str.as_bytes()).collect(),
|
|
|
|
) {
|
|
|
|
Ok(path_str) => Ok(PathBuf::from(path_str)),
|
|
|
|
Err(_) => Err(()),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
specifier.to_file_path()
|
|
|
|
};
|
|
|
|
match result {
|
|
|
|
Ok(path) => Ok(path),
|
|
|
|
Err(()) => Err(uri_error(format!(
|
|
|
|
"Invalid file path.\n Specifier: {}",
|
|
|
|
specifier
|
|
|
|
))),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 15:14:19 -05:00
|
|
|
/// Ensures a specifier that will definitely be a directory has a trailing slash.
|
|
|
|
pub fn ensure_directory_specifier(
|
|
|
|
mut specifier: ModuleSpecifier,
|
|
|
|
) -> ModuleSpecifier {
|
|
|
|
let path = specifier.path();
|
|
|
|
if !path.ends_with('/') {
|
|
|
|
let new_path = format!("{}/", path);
|
|
|
|
specifier.set_path(&new_path);
|
|
|
|
}
|
|
|
|
specifier
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets the parent of this module specifier.
|
|
|
|
pub fn specifier_parent(specifier: &ModuleSpecifier) -> ModuleSpecifier {
|
|
|
|
let mut specifier = specifier.clone();
|
|
|
|
// don't use specifier.segments() because it will strip the leading slash
|
|
|
|
let mut segments = specifier.path().split('/').collect::<Vec<_>>();
|
|
|
|
if segments.iter().all(|s| s.is_empty()) {
|
|
|
|
return specifier;
|
|
|
|
}
|
|
|
|
if let Some(last) = segments.last() {
|
|
|
|
if last.is_empty() {
|
|
|
|
segments.pop();
|
|
|
|
}
|
|
|
|
segments.pop();
|
|
|
|
let new_path = format!("{}/", segments.join("/"));
|
|
|
|
specifier.set_path(&new_path);
|
|
|
|
}
|
|
|
|
specifier
|
|
|
|
}
|
|
|
|
|
2022-06-14 10:05:37 -04:00
|
|
|
/// `from.make_relative(to)` but with fixes.
|
|
|
|
pub fn relative_specifier(
|
|
|
|
from: &ModuleSpecifier,
|
|
|
|
to: &ModuleSpecifier,
|
|
|
|
) -> Option<String> {
|
|
|
|
let is_dir = to.path().ends_with('/');
|
|
|
|
|
|
|
|
if is_dir && from == to {
|
|
|
|
return Some("./".to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
// workaround using parent directory until https://github.com/servo/rust-url/pull/754 is merged
|
|
|
|
let from = if !from.path().ends_with('/') {
|
|
|
|
if let Some(end_slash) = from.path().rfind('/') {
|
|
|
|
let mut new_from = from.clone();
|
|
|
|
new_from.set_path(&from.path()[..end_slash + 1]);
|
|
|
|
Cow::Owned(new_from)
|
|
|
|
} else {
|
|
|
|
Cow::Borrowed(from)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Cow::Borrowed(from)
|
|
|
|
};
|
|
|
|
|
|
|
|
// workaround for url crate not adding a trailing slash for a directory
|
|
|
|
// it seems to be fixed once a version greater than 2.2.2 is released
|
|
|
|
let mut text = from.make_relative(to)?;
|
|
|
|
if is_dir && !text.ends_with('/') && to.query().is_none() {
|
|
|
|
text.push('/');
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(if text.starts_with("../") || text.starts_with("./") {
|
|
|
|
text
|
|
|
|
} else {
|
|
|
|
format!("./{}", text)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-01-10 23:24:39 -05:00
|
|
|
/// This function checks if input path has trailing slash or not. If input path
|
|
|
|
/// has trailing slash it will return true else it will return false.
|
|
|
|
pub fn path_has_trailing_slash(path: &Path) -> bool {
|
|
|
|
if let Some(path_str) = path.to_str() {
|
|
|
|
if cfg!(windows) {
|
|
|
|
path_str.ends_with('\\')
|
|
|
|
} else {
|
|
|
|
path_str.ends_with('/')
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-16 13:14:19 -05:00
|
|
|
/// Gets a path with the specified file stem suffix.
|
|
|
|
///
|
|
|
|
/// Ex. `file.ts` with suffix `_2` returns `file_2.ts`
|
|
|
|
pub fn path_with_stem_suffix(path: &Path, suffix: &str) -> PathBuf {
|
|
|
|
if let Some(file_name) = path.file_name().map(|f| f.to_string_lossy()) {
|
|
|
|
if let Some(file_stem) = path.file_stem().map(|f| f.to_string_lossy()) {
|
|
|
|
if let Some(ext) = path.extension().map(|f| f.to_string_lossy()) {
|
|
|
|
return if file_stem.to_lowercase().ends_with(".d") {
|
|
|
|
path.with_file_name(format!(
|
|
|
|
"{}{}.{}.{}",
|
|
|
|
&file_stem[..file_stem.len() - ".d".len()],
|
|
|
|
suffix,
|
|
|
|
// maintain casing
|
|
|
|
&file_stem[file_stem.len() - "d".len()..],
|
|
|
|
ext
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
path.with_file_name(format!("{}{}.{}", file_stem, suffix, ext))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
path.with_file_name(format!("{}{}", file_name, suffix))
|
|
|
|
} else {
|
|
|
|
path.with_file_name(suffix)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 14:13:09 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2022-04-01 11:15:37 -04:00
|
|
|
use test_util::TempDir;
|
2019-09-07 14:13:09 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resolve_from_cwd_child() {
|
2020-03-20 09:46:26 -04:00
|
|
|
let cwd = current_dir().unwrap();
|
2020-01-20 09:45:44 -05:00
|
|
|
assert_eq!(resolve_from_cwd(Path::new("a")).unwrap(), cwd.join("a"));
|
2019-09-07 14:13:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resolve_from_cwd_dot() {
|
2020-03-20 09:46:26 -04:00
|
|
|
let cwd = current_dir().unwrap();
|
2020-01-20 09:45:44 -05:00
|
|
|
assert_eq!(resolve_from_cwd(Path::new(".")).unwrap(), cwd);
|
2019-09-07 14:13:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resolve_from_cwd_parent() {
|
2020-03-20 09:46:26 -04:00
|
|
|
let cwd = current_dir().unwrap();
|
2020-01-20 09:45:44 -05:00
|
|
|
assert_eq!(resolve_from_cwd(Path::new("a/..")).unwrap(), cwd);
|
2019-09-07 14:13:09 -04:00
|
|
|
}
|
|
|
|
|
2020-02-26 16:11:52 -05:00
|
|
|
#[test]
|
|
|
|
fn test_normalize_path() {
|
|
|
|
assert_eq!(normalize_path(Path::new("a/../b")), PathBuf::from("b"));
|
|
|
|
assert_eq!(normalize_path(Path::new("a/./b/")), PathBuf::from("a/b/"));
|
|
|
|
assert_eq!(
|
|
|
|
normalize_path(Path::new("a/./b/../c")),
|
|
|
|
PathBuf::from("a/c")
|
|
|
|
);
|
|
|
|
|
|
|
|
if cfg!(windows) {
|
|
|
|
assert_eq!(
|
|
|
|
normalize_path(Path::new("C:\\a\\.\\b\\..\\c")),
|
|
|
|
PathBuf::from("C:\\a\\c")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-10 23:16:30 -04:00
|
|
|
// TODO: Get a good expected value here for Windows.
|
|
|
|
#[cfg(not(windows))]
|
2019-09-07 14:13:09 -04:00
|
|
|
#[test]
|
|
|
|
fn resolve_from_cwd_absolute() {
|
2019-09-10 23:16:30 -04:00
|
|
|
let expected = Path::new("/a");
|
2020-01-20 09:45:44 -05:00
|
|
|
assert_eq!(resolve_from_cwd(expected).unwrap(), expected);
|
2019-09-07 14:13:09 -04:00
|
|
|
}
|
2020-02-17 13:11:45 -05:00
|
|
|
|
2020-11-14 07:05:26 -05:00
|
|
|
#[test]
|
|
|
|
fn test_is_supported_ext() {
|
|
|
|
assert!(!is_supported_ext(Path::new("tests/subdir/redirects")));
|
|
|
|
assert!(!is_supported_ext(Path::new("README.md")));
|
|
|
|
assert!(is_supported_ext(Path::new("lib/typescript.d.ts")));
|
2021-08-11 10:20:47 -04:00
|
|
|
assert!(is_supported_ext(Path::new("testdata/001_hello.js")));
|
|
|
|
assert!(is_supported_ext(Path::new("testdata/002_hello.ts")));
|
2020-11-14 07:05:26 -05:00
|
|
|
assert!(is_supported_ext(Path::new("foo.jsx")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.tsx")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.TS")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.TSX")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.JS")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.JSX")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.mjs")));
|
2022-01-04 18:46:34 -05:00
|
|
|
assert!(is_supported_ext(Path::new("foo.mts")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.cjs")));
|
|
|
|
assert!(is_supported_ext(Path::new("foo.cts")));
|
2020-11-14 07:05:26 -05:00
|
|
|
assert!(!is_supported_ext(Path::new("foo.mjsx")));
|
|
|
|
}
|
2020-02-17 13:11:45 -05:00
|
|
|
|
2021-08-14 04:17:21 -04:00
|
|
|
#[test]
|
|
|
|
fn test_is_supported_test_ext() {
|
|
|
|
assert!(!is_supported_test_ext(Path::new("tests/subdir/redirects")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("README.md")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("readme.MD")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("lib/typescript.d.ts")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("testdata/001_hello.js")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("testdata/002_hello.ts")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.jsx")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.tsx")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.TS")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.TSX")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.JS")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.JSX")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.mjs")));
|
2022-01-04 18:46:34 -05:00
|
|
|
assert!(is_supported_test_ext(Path::new("foo.mts")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.cjs")));
|
|
|
|
assert!(is_supported_test_ext(Path::new("foo.cts")));
|
2021-08-14 04:17:21 -04:00
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.mjsx")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.jsonc")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.JSONC")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.json")));
|
|
|
|
assert!(!is_supported_test_ext(Path::new("foo.JsON")));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_is_supported_test_path() {
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.ts"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.tsx"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.js"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new(
|
|
|
|
"tests/subdir/foo_test.jsx"
|
|
|
|
)));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.ts")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.tsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.js")));
|
|
|
|
assert!(is_supported_test_path(Path::new("bar/foo.test.jsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.js")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.jsx")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.ts")));
|
|
|
|
assert!(is_supported_test_path(Path::new("foo/bar/test.tsx")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("README.md")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("lib/typescript.d.ts")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("notatest.js")));
|
|
|
|
assert!(!is_supported_test_path(Path::new("NotAtest.ts")));
|
2021-01-19 12:39:35 -05:00
|
|
|
}
|
|
|
|
|
2020-11-14 07:05:26 -05:00
|
|
|
#[test]
|
|
|
|
fn test_collect_files() {
|
2021-03-25 14:17:37 -04:00
|
|
|
fn create_files(dir_path: &Path, files: &[&str]) {
|
2020-11-14 07:05:26 -05:00
|
|
|
std::fs::create_dir(dir_path).expect("Failed to create directory");
|
|
|
|
for f in files {
|
|
|
|
let path = dir_path.join(f);
|
|
|
|
std::fs::write(path, "").expect("Failed to create file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dir.ts
|
|
|
|
// ├── a.ts
|
|
|
|
// ├── b.js
|
|
|
|
// ├── child
|
|
|
|
// │ ├── e.mjs
|
|
|
|
// │ ├── f.mjsx
|
|
|
|
// │ ├── .foo.TS
|
|
|
|
// │ └── README.md
|
|
|
|
// ├── c.tsx
|
|
|
|
// ├── d.jsx
|
|
|
|
// └── ignore
|
|
|
|
// ├── g.d.ts
|
|
|
|
// └── .gitignore
|
|
|
|
|
2022-04-01 11:15:37 -04:00
|
|
|
let t = TempDir::new();
|
2020-11-14 07:05:26 -05:00
|
|
|
|
|
|
|
let root_dir_path = t.path().join("dir.ts");
|
|
|
|
let root_dir_files = ["a.ts", "b.js", "c.tsx", "d.jsx"];
|
|
|
|
create_files(&root_dir_path, &root_dir_files);
|
|
|
|
|
|
|
|
let child_dir_path = root_dir_path.join("child");
|
|
|
|
let child_dir_files = ["e.mjs", "f.mjsx", ".foo.TS", "README.md"];
|
|
|
|
create_files(&child_dir_path, &child_dir_files);
|
|
|
|
|
|
|
|
let ignore_dir_path = root_dir_path.join("ignore");
|
|
|
|
let ignore_dir_files = ["g.d.ts", ".gitignore"];
|
|
|
|
create_files(&ignore_dir_path, &ignore_dir_files);
|
|
|
|
|
2020-11-22 15:45:44 -05:00
|
|
|
let result = collect_files(&[root_dir_path], &[ignore_dir_path], |path| {
|
|
|
|
// exclude dotfiles
|
|
|
|
path
|
|
|
|
.file_name()
|
|
|
|
.and_then(|f| f.to_str())
|
|
|
|
.map_or(false, |f| !f.starts_with('.'))
|
|
|
|
})
|
|
|
|
.unwrap();
|
2020-11-14 07:05:26 -05:00
|
|
|
let expected = [
|
|
|
|
"a.ts",
|
|
|
|
"b.js",
|
|
|
|
"e.mjs",
|
|
|
|
"f.mjsx",
|
|
|
|
"README.md",
|
|
|
|
"c.tsx",
|
|
|
|
"d.jsx",
|
|
|
|
];
|
|
|
|
for e in expected.iter() {
|
|
|
|
assert!(result.iter().any(|r| r.ends_with(e)));
|
|
|
|
}
|
|
|
|
assert_eq!(result.len(), expected.len());
|
|
|
|
}
|
2021-08-13 06:06:49 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_collect_specifiers() {
|
|
|
|
fn create_files(dir_path: &Path, files: &[&str]) {
|
|
|
|
std::fs::create_dir(dir_path).expect("Failed to create directory");
|
|
|
|
for f in files {
|
|
|
|
let path = dir_path.join(f);
|
|
|
|
std::fs::write(path, "").expect("Failed to create file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// dir.ts
|
|
|
|
// ├── a.ts
|
|
|
|
// ├── b.js
|
|
|
|
// ├── child
|
|
|
|
// │ ├── e.mjs
|
|
|
|
// │ ├── f.mjsx
|
|
|
|
// │ ├── .foo.TS
|
|
|
|
// │ └── README.md
|
|
|
|
// ├── c.tsx
|
|
|
|
// ├── d.jsx
|
|
|
|
// └── ignore
|
|
|
|
// ├── g.d.ts
|
|
|
|
// └── .gitignore
|
|
|
|
|
2022-04-01 11:15:37 -04:00
|
|
|
let t = TempDir::new();
|
2021-08-13 06:06:49 -04:00
|
|
|
|
|
|
|
let root_dir_path = t.path().join("dir.ts");
|
|
|
|
let root_dir_files = ["a.ts", "b.js", "c.tsx", "d.jsx"];
|
|
|
|
create_files(&root_dir_path, &root_dir_files);
|
|
|
|
|
|
|
|
let child_dir_path = root_dir_path.join("child");
|
|
|
|
let child_dir_files = ["e.mjs", "f.mjsx", ".foo.TS", "README.md"];
|
|
|
|
create_files(&child_dir_path, &child_dir_files);
|
|
|
|
|
|
|
|
let ignore_dir_path = root_dir_path.join("ignore");
|
|
|
|
let ignore_dir_files = ["g.d.ts", ".gitignore"];
|
|
|
|
create_files(&ignore_dir_path, &ignore_dir_files);
|
|
|
|
|
2022-07-04 10:46:10 -04:00
|
|
|
let predicate = |path: &Path| {
|
|
|
|
// exclude dotfiles
|
|
|
|
path
|
|
|
|
.file_name()
|
|
|
|
.and_then(|f| f.to_str())
|
|
|
|
.map_or(false, |f| !f.starts_with('.'))
|
|
|
|
};
|
|
|
|
|
2021-08-13 06:06:49 -04:00
|
|
|
let result = collect_specifiers(
|
|
|
|
vec![
|
|
|
|
"http://localhost:8080".to_string(),
|
|
|
|
root_dir_path.to_str().unwrap().to_string(),
|
|
|
|
"https://localhost:8080".to_string(),
|
|
|
|
],
|
2021-08-24 11:23:29 -04:00
|
|
|
&[ignore_dir_path],
|
2022-07-04 10:46:10 -04:00
|
|
|
predicate,
|
2021-08-13 06:06:49 -04:00
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let root_dir_url = ModuleSpecifier::from_file_path(
|
|
|
|
canonicalize_path(&root_dir_path).unwrap(),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.to_string();
|
|
|
|
let expected: Vec<ModuleSpecifier> = [
|
2021-08-14 04:16:24 -04:00
|
|
|
"http://localhost:8080",
|
2021-08-13 06:06:49 -04:00
|
|
|
&format!("{}/a.ts", root_dir_url),
|
|
|
|
&format!("{}/b.js", root_dir_url),
|
|
|
|
&format!("{}/c.tsx", root_dir_url),
|
|
|
|
&format!("{}/child/README.md", root_dir_url),
|
|
|
|
&format!("{}/child/e.mjs", root_dir_url),
|
|
|
|
&format!("{}/child/f.mjsx", root_dir_url),
|
|
|
|
&format!("{}/d.jsx", root_dir_url),
|
|
|
|
"https://localhost:8080",
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.map(|f| ModuleSpecifier::parse(f).unwrap())
|
2022-07-04 10:46:10 -04:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
assert_eq!(result, expected);
|
|
|
|
|
|
|
|
let scheme = if cfg!(target_os = "windows") {
|
|
|
|
"file:///"
|
|
|
|
} else {
|
|
|
|
"file://"
|
|
|
|
};
|
|
|
|
let result = collect_specifiers(
|
|
|
|
vec![format!(
|
|
|
|
"{}{}",
|
|
|
|
scheme,
|
|
|
|
root_dir_path
|
|
|
|
.join("child")
|
|
|
|
.to_str()
|
|
|
|
.unwrap()
|
2022-07-04 14:28:41 -04:00
|
|
|
.replace('\\', "/")
|
2022-07-04 10:46:10 -04:00
|
|
|
)],
|
|
|
|
&[],
|
|
|
|
predicate,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let expected: Vec<ModuleSpecifier> = [
|
|
|
|
&format!("{}/child/README.md", root_dir_url),
|
|
|
|
&format!("{}/child/e.mjs", root_dir_url),
|
|
|
|
&format!("{}/child/f.mjsx", root_dir_url),
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.map(|f| ModuleSpecifier::parse(f).unwrap())
|
|
|
|
.collect::<Vec<_>>();
|
2021-08-13 06:06:49 -04:00
|
|
|
|
|
|
|
assert_eq!(result, expected);
|
|
|
|
}
|
2021-10-25 11:54:36 -04:00
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
#[test]
|
|
|
|
fn test_strip_unc_prefix() {
|
|
|
|
run_test(r"C:\", r"C:\");
|
|
|
|
run_test(r"C:\test\file.txt", r"C:\test\file.txt");
|
|
|
|
|
|
|
|
run_test(r"\\?\C:\", r"C:\");
|
|
|
|
run_test(r"\\?\C:\test\file.txt", r"C:\test\file.txt");
|
|
|
|
|
|
|
|
run_test(r"\\.\C:\", r"\\.\C:\");
|
|
|
|
run_test(r"\\.\C:\Test\file.txt", r"\\.\C:\Test\file.txt");
|
|
|
|
|
|
|
|
run_test(r"\\?\UNC\localhost\", r"\\localhost");
|
|
|
|
run_test(r"\\?\UNC\localhost\c$\", r"\\localhost\c$");
|
|
|
|
run_test(
|
|
|
|
r"\\?\UNC\localhost\c$\Windows\file.txt",
|
|
|
|
r"\\localhost\c$\Windows\file.txt",
|
|
|
|
);
|
|
|
|
run_test(r"\\?\UNC\wsl$\deno.json", r"\\wsl$\deno.json");
|
|
|
|
|
|
|
|
run_test(r"\\?\server1", r"\\server1");
|
|
|
|
run_test(r"\\?\server1\e$\", r"\\server1\e$\");
|
|
|
|
run_test(
|
|
|
|
r"\\?\server1\e$\test\file.txt",
|
|
|
|
r"\\server1\e$\test\file.txt",
|
|
|
|
);
|
|
|
|
|
|
|
|
fn run_test(input: &str, expected: &str) {
|
|
|
|
assert_eq!(
|
|
|
|
strip_unc_prefix(PathBuf::from(input)),
|
|
|
|
PathBuf::from(expected)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2021-11-23 10:38:11 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_specifier_to_file_path() {
|
|
|
|
run_success_test("file:///", "/");
|
|
|
|
run_success_test("file:///test", "/test");
|
|
|
|
run_success_test("file:///dir/test/test.txt", "/dir/test/test.txt");
|
|
|
|
run_success_test(
|
|
|
|
"file:///dir/test%20test/test.txt",
|
|
|
|
"/dir/test test/test.txt",
|
|
|
|
);
|
|
|
|
|
|
|
|
fn run_success_test(specifier: &str, expected_path: &str) {
|
|
|
|
let result =
|
|
|
|
specifier_to_file_path(&ModuleSpecifier::parse(specifier).unwrap())
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(result, PathBuf::from(expected_path));
|
|
|
|
}
|
|
|
|
}
|
2021-11-24 15:14:19 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ensure_directory_specifier() {
|
|
|
|
run_test("file:///", "file:///");
|
|
|
|
run_test("file:///test", "file:///test/");
|
|
|
|
run_test("file:///test/", "file:///test/");
|
|
|
|
run_test("file:///test/other", "file:///test/other/");
|
|
|
|
run_test("file:///test/other/", "file:///test/other/");
|
|
|
|
|
|
|
|
fn run_test(specifier: &str, expected: &str) {
|
|
|
|
let result =
|
|
|
|
ensure_directory_specifier(ModuleSpecifier::parse(specifier).unwrap());
|
|
|
|
assert_eq!(result.to_string(), expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_specifier_parent() {
|
|
|
|
run_test("file:///", "file:///");
|
|
|
|
run_test("file:///test", "file:///");
|
|
|
|
run_test("file:///test/", "file:///");
|
|
|
|
run_test("file:///test/other", "file:///test/");
|
|
|
|
run_test("file:///test/other.txt", "file:///test/");
|
|
|
|
run_test("file:///test/other/", "file:///test/");
|
|
|
|
|
|
|
|
fn run_test(specifier: &str, expected: &str) {
|
|
|
|
let result =
|
|
|
|
specifier_parent(&ModuleSpecifier::parse(specifier).unwrap());
|
|
|
|
assert_eq!(result.to_string(), expected);
|
|
|
|
}
|
|
|
|
}
|
2022-01-10 23:24:39 -05:00
|
|
|
|
2022-06-14 10:05:37 -04:00
|
|
|
#[test]
|
|
|
|
fn test_relative_specifier() {
|
|
|
|
run_test("file:///from", "file:///to", Some("./to"));
|
|
|
|
run_test("file:///from", "file:///from/other", Some("./from/other"));
|
|
|
|
run_test("file:///from", "file:///from/other/", Some("./from/other/"));
|
|
|
|
run_test("file:///from", "file:///other/from", Some("./other/from"));
|
|
|
|
run_test("file:///from/", "file:///other/from", Some("../other/from"));
|
|
|
|
run_test("file:///from", "file:///other/from/", Some("./other/from/"));
|
|
|
|
run_test(
|
|
|
|
"file:///from",
|
|
|
|
"file:///to/other.txt",
|
|
|
|
Some("./to/other.txt"),
|
|
|
|
);
|
|
|
|
run_test(
|
|
|
|
"file:///from/test",
|
|
|
|
"file:///to/other.txt",
|
|
|
|
Some("../to/other.txt"),
|
|
|
|
);
|
|
|
|
run_test(
|
|
|
|
"file:///from/other.txt",
|
|
|
|
"file:///to/other.txt",
|
|
|
|
Some("../to/other.txt"),
|
|
|
|
);
|
|
|
|
|
|
|
|
fn run_test(from: &str, to: &str, expected: Option<&str>) {
|
|
|
|
let result = relative_specifier(
|
|
|
|
&ModuleSpecifier::parse(from).unwrap(),
|
|
|
|
&ModuleSpecifier::parse(to).unwrap(),
|
|
|
|
);
|
|
|
|
assert_eq!(result.as_deref(), expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-10 23:24:39 -05:00
|
|
|
#[test]
|
|
|
|
fn test_path_has_trailing_slash() {
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
{
|
|
|
|
run_test("/Users/johndoe/Desktop/deno-project/target/", true);
|
|
|
|
run_test(r"/Users/johndoe/deno-project/target//", true);
|
|
|
|
run_test("/Users/johndoe/Desktop/deno-project", false);
|
|
|
|
run_test(r"/Users/johndoe/deno-project\", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
{
|
|
|
|
run_test(r"C:\test\deno-project\", true);
|
|
|
|
run_test(r"C:\test\deno-project\\", true);
|
|
|
|
run_test(r"C:\test\file.txt", false);
|
|
|
|
run_test(r"C:\test\file.txt/", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_test(path_str: &str, expected: bool) {
|
|
|
|
let path = Path::new(path_str);
|
|
|
|
let result = path_has_trailing_slash(path);
|
|
|
|
assert_eq!(result, expected);
|
|
|
|
}
|
|
|
|
}
|
2022-02-16 13:14:19 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_path_with_stem_suffix() {
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/"), "_2"),
|
|
|
|
PathBuf::from("/_2")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test"), "_2"),
|
|
|
|
PathBuf::from("/test_2")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test.txt"), "_2"),
|
|
|
|
PathBuf::from("/test_2.txt")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test/subdir"), "_2"),
|
|
|
|
PathBuf::from("/test/subdir_2")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test/subdir.other.txt"), "_2"),
|
|
|
|
PathBuf::from("/test/subdir.other_2.txt")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test.d.ts"), "_2"),
|
|
|
|
PathBuf::from("/test_2.d.ts")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test.D.TS"), "_2"),
|
|
|
|
PathBuf::from("/test_2.D.TS")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test.d.mts"), "_2"),
|
|
|
|
PathBuf::from("/test_2.d.mts")
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
path_with_stem_suffix(&PathBuf::from("/test.d.cts"), "_2"),
|
|
|
|
PathBuf::from("/test_2.d.cts")
|
|
|
|
);
|
|
|
|
}
|
2020-02-17 13:11:45 -05:00
|
|
|
}
|