mirror of
https://github.com/swc-project/swc.git
synced 2024-11-25 22:34:04 +03:00
85cc2bd79c
Some checks failed
CI / Cargo fmt (push) Has been cancelled
CI / Cargo clippy (push) Has been cancelled
CI / Check license of dependencies (push) Has been cancelled
CI / Check (macos-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / Test wasm (binding_core_wasm) (push) Has been cancelled
CI / Test wasm (binding_minifier_wasm) (push) Has been cancelled
CI / Test wasm (binding_typescript_wasm) (push) Has been cancelled
CI / List crates (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (macos-latest) (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (windows-latest) (push) Has been cancelled
CI / Test with @swc/cli (push) Has been cancelled
CI / Miri (better_scoped_tls) (push) Has been cancelled
CI / Miri (string_enum) (push) Has been cancelled
CI / Miri (swc) (push) Has been cancelled
CI / Miri (swc_bundler) (push) Has been cancelled
CI / Miri (swc_ecma_codegen) (push) Has been cancelled
CI / Miri (swc_ecma_minifier) (push) Has been cancelled
Benchmark / Bench everything (push) Has been cancelled
CI / Test - ${{ matrix.settings.crate }} - ${{ matrix.settings.os }} (push) Has been cancelled
CI / Done (push) Has been cancelled
**Description:** `get_files_list` does not check if a path with the `extensions` is really a file. **Related issue:** - Closes https://github.com/swc-project/swc/issues/9559
179 lines
4.6 KiB
Rust
179 lines
4.6 KiB
Rust
use std::{
|
|
fs::{self, create_dir_all, hard_link},
|
|
path::Path,
|
|
process::{Command, Stdio},
|
|
};
|
|
|
|
use anyhow::{Context, Result};
|
|
use assert_cmd::prelude::*;
|
|
use assert_fs::TempDir;
|
|
|
|
fn cli() -> Result<Command> {
|
|
let mut cmd = Command::cargo_bin("swc").context("Failed to get swc binary")?;
|
|
cmd.stderr(Stdio::inherit());
|
|
Ok(cmd)
|
|
}
|
|
|
|
#[test]
|
|
fn issue_8265_1() -> Result<()> {
|
|
let pwd = Path::new("tests/fixture-manual/8265").canonicalize()?;
|
|
let tmp = TempDir::new()?;
|
|
|
|
create_dir_all(tmp.path().join("src/modules/moduleA"))?;
|
|
create_dir_all(tmp.path().join("src/modules/moduleB"))?;
|
|
|
|
symlink(&pwd.join(".swcrc"), &tmp.path().join(".swcrc"));
|
|
symlink(&pwd.join("src/index.ts"), &tmp.path().join("src/index.ts"));
|
|
symlink(
|
|
&pwd.join("src/modules/moduleA/index.ts"),
|
|
&tmp.path().join("src/modules/moduleA/index.ts"),
|
|
);
|
|
symlink(
|
|
&pwd.join("src/modules/moduleB/index.ts"),
|
|
&tmp.path().join("src/modules/moduleB/index.ts"),
|
|
);
|
|
|
|
print_ls_alr(&tmp);
|
|
|
|
let mut cmd = cli()?;
|
|
cmd.current_dir(&tmp)
|
|
.arg("compile")
|
|
.arg("--source-maps")
|
|
.arg("false")
|
|
.arg("--config-file")
|
|
.arg(".swcrc")
|
|
.arg("--out-file")
|
|
.arg("src/index.js")
|
|
.arg("src/index.ts");
|
|
|
|
cmd.assert().success();
|
|
|
|
let content = fs::read_to_string(tmp.join("src/index.js"))?;
|
|
assert!(
|
|
content.contains("require(\"./modules/moduleA\")"),
|
|
"{}",
|
|
content
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn issue_8495_1() -> Result<()> {
|
|
let pwd = Path::new("tests/fixture-manual/8495").canonicalize()?;
|
|
|
|
let mut cmd = cli()?;
|
|
cmd.current_dir(&pwd)
|
|
.arg("compile")
|
|
.arg("--source-maps")
|
|
.arg("true")
|
|
.arg("--source-file-name")
|
|
.arg("input.ts")
|
|
.arg("--config-file")
|
|
.arg(".swcrc")
|
|
.arg("--out-file")
|
|
.arg("dist/input.js")
|
|
.arg("src/input.ts");
|
|
|
|
cmd.assert().success();
|
|
|
|
fs::read_to_string(pwd.join("dist/input.js"))?;
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn issue_8667_1() -> Result<()> {
|
|
let output_base = TempDir::new()?;
|
|
let bin_dir = output_base.path().join("bazel-out/arch/bin");
|
|
let sandbox = output_base.path().join("sandbox/123");
|
|
|
|
let pwd = Path::new("tests/fixture-manual/8265").canonicalize()?;
|
|
|
|
create_dir_all(bin_dir.join("src/modules/moduleA"))?;
|
|
create_dir_all(bin_dir.join("src/modules/moduleB"))?;
|
|
create_dir_all(sandbox.join("src/modules/moduleA"))?;
|
|
create_dir_all(sandbox.join("src/modules/moduleB"))?;
|
|
|
|
// hard links from BINDIR into src
|
|
hard_link(pwd.join(".swcrc"), bin_dir.join(".swcrc"))?;
|
|
hard_link(pwd.join("src/index.ts"), bin_dir.join("src/index.ts"))?;
|
|
hard_link(
|
|
pwd.join("src/modules/moduleA/index.ts"),
|
|
bin_dir.join("src/modules/moduleA/index.ts"),
|
|
)?;
|
|
hard_link(
|
|
pwd.join("src/modules/moduleB/index.ts"),
|
|
bin_dir.join("src/modules/moduleB/index.ts"),
|
|
)?;
|
|
|
|
// soft links from sandbox into bazel-bin
|
|
symlink(&bin_dir.join(".swcrc"), &sandbox.join(".swcrc"));
|
|
symlink(&bin_dir.join("src/index.ts"), &sandbox.join("src/index.ts"));
|
|
symlink(
|
|
&bin_dir.join("src/modules/moduleA/index.ts"),
|
|
&sandbox.join("src/modules/moduleA/index.ts"),
|
|
);
|
|
symlink(
|
|
&bin_dir.join("src/modules/moduleB/index.ts"),
|
|
&sandbox.join("src/modules/moduleB/index.ts"),
|
|
);
|
|
|
|
//
|
|
print_ls_alr(&sandbox);
|
|
|
|
let mut cmd = cli()?;
|
|
cmd.current_dir(&sandbox)
|
|
.arg("compile")
|
|
.arg("--source-maps")
|
|
.arg("false")
|
|
.arg("--config-file")
|
|
.arg(".swcrc")
|
|
.arg("--out-file")
|
|
.arg(bin_dir.join("src/index.js"))
|
|
.arg("src/index.ts");
|
|
|
|
cmd.assert().success();
|
|
|
|
let content = fs::read_to_string(bin_dir.join("src/index.js"))?;
|
|
assert!(
|
|
content.contains("require(\"./modules/moduleA\")"),
|
|
"{}",
|
|
content
|
|
);
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn issue_9559() -> Result<()> {
|
|
let sandbox = TempDir::new()?;
|
|
fs::write(sandbox.path().join("index.ts"), r"console.log('Hello')")?;
|
|
fs::create_dir(sandbox.path().join("chart.js"))?;
|
|
|
|
let mut cmd = cli()?;
|
|
cmd.current_dir(&sandbox).arg("compile").arg(sandbox.path());
|
|
|
|
cmd.assert().success();
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// ln -s $a $b
|
|
fn symlink(a: &Path, b: &Path) {
|
|
#[cfg(unix)]
|
|
{
|
|
std::os::unix::fs::symlink(a, b).unwrap();
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
{
|
|
std::os::windows::fs::symlink_file(a, b).unwrap();
|
|
}
|
|
}
|
|
|
|
fn print_ls_alr(path: &Path) {
|
|
let mut cmd = Command::new("ls");
|
|
cmd.arg("-alR").arg(path);
|
|
cmd.status().unwrap();
|
|
}
|