#[path = "common/mod.rs"]
mod common;
use common::{fixture_path, parse_json, run_fallow, run_fallow_in_root};
#[test]
fn fix_dry_run_exits_0() {
let output = run_fallow(
"fix",
"basic-project",
&["--dry-run", "--format", "json", "--quiet"],
);
assert_eq!(
output.code, 0,
"fix --dry-run should exit 0, stderr: {}",
output.stderr
);
}
#[test]
fn fix_dry_run_json_has_dry_run_flag() {
let output = run_fallow(
"fix",
"basic-project",
&["--dry-run", "--format", "json", "--quiet"],
);
let json = parse_json(&output);
assert_eq!(
json["dry_run"].as_bool(),
Some(true),
"dry_run should be true"
);
}
#[test]
fn fix_dry_run_finds_fixable_items() {
let output = run_fallow(
"fix",
"basic-project",
&["--dry-run", "--format", "json", "--quiet"],
);
let json = parse_json(&output);
let fixes = json["fixes"].as_array().unwrap();
assert!(!fixes.is_empty(), "basic-project should have fixable items");
for fix in fixes {
assert!(fix.get("type").is_some(), "fix should have 'type'");
let has_path = fix.get("path").is_some() || fix.get("package").is_some();
assert!(has_path, "fix should have 'path' or 'package'");
}
}
#[test]
fn fix_dry_run_does_not_have_applied_key() {
let output = run_fallow(
"fix",
"basic-project",
&["--dry-run", "--format", "json", "--quiet"],
);
let json = parse_json(&output);
let fixes = json["fixes"].as_array().unwrap();
for fix in fixes {
assert!(
fix.get("applied").is_none(),
"dry-run fixes should not have 'applied' key"
);
}
}
#[test]
fn fix_removes_unused_exported_enum_declaration() {
let dir = tempfile::tempdir().unwrap();
let root = dir.path();
std::fs::create_dir_all(root.join("src")).unwrap();
std::fs::write(
root.join("package.json"),
r#"{"name":"enum-fix","main":"src/index.ts"}"#,
)
.unwrap();
std::fs::write(root.join("src/index.ts"), "import './enum';\n").unwrap();
std::fs::write(
root.join("src/enum.ts"),
"export enum MyEnum {\n A,\n B,\n}\n",
)
.unwrap();
let output = run_fallow_in_root("fix", root, &["--yes", "--quiet"]);
assert_eq!(
output.code, 0,
"fix should exit 0, stdout: {}, stderr: {}",
output.stdout, output.stderr
);
assert_eq!(
std::fs::read_to_string(root.join("src/enum.ts")).unwrap(),
"\n"
);
let output = run_fallow_in_root("fix", root, &["--dry-run", "--format", "json", "--quiet"]);
let json = parse_json(&output);
assert!(json["fixes"].as_array().unwrap().is_empty());
}
#[test]
fn fix_folds_imported_enum_with_all_members_unused() {
let dir = tempfile::tempdir().unwrap();
let root = dir.path();
std::fs::create_dir_all(root.join("src")).unwrap();
std::fs::write(
root.join("package.json"),
r#"{"name":"enum-fold","main":"src/index.ts"}"#,
)
.unwrap();
std::fs::write(
root.join("src/index.ts"),
"import { MyEnum } from './enum';\nconsole.log(typeof MyEnum);\n",
)
.unwrap();
std::fs::write(
root.join("src/enum.ts"),
"export enum MyEnum {\n A,\n B,\n}\n",
)
.unwrap();
let output = run_fallow_in_root("fix", root, &["--dry-run", "--format", "json", "--quiet"]);
let json = parse_json(&output);
let fixes = json["fixes"].as_array().unwrap();
assert_eq!(
fixes.len(),
1,
"fold should collapse the per-member fixes into a single remove_export entry"
);
assert_eq!(fixes[0]["type"], "remove_export");
assert_eq!(fixes[0]["name"], "MyEnum");
let output = run_fallow_in_root("fix", root, &["--yes", "--quiet"]);
assert_eq!(
output.code, 0,
"fix should exit 0, stdout: {}, stderr: {}",
output.stdout, output.stderr
);
let after = std::fs::read_to_string(root.join("src/enum.ts")).unwrap();
assert_eq!(
after, "\n",
"enum.ts should be empty after the fold (single trailing newline)"
);
let output = run_fallow_in_root("fix", root, &["--dry-run", "--format", "json", "--quiet"]);
let json = parse_json(&output);
assert!(
json["fixes"].as_array().unwrap().is_empty(),
"second pass should find nothing more to fix"
);
}
#[test]
fn fix_without_yes_in_non_tty_exits_2() {
let output = run_fallow("fix", "basic-project", &["--format", "json", "--quiet"]);
assert_eq!(output.code, 2, "fix without --yes in non-TTY should exit 2");
}
#[test]
fn fix_catalog_issue_335_empties_parent_to_empty_map_not_null() {
let temp = tempfile::tempdir().expect("tempdir");
let root = temp.path().to_path_buf();
let fixture = fixture_path("issue-329-pnpm-catalog");
copy_dir_recursive(&fixture, &root).expect("copy fixture");
let output = run_fallow_in_root("fix", &root, &["--yes", "--format", "json", "--quiet"]);
assert_eq!(
output.code, 0,
"fix --yes should exit 0, stderr: {}",
output.stderr
);
let workspace_path = root.join("pnpm-workspace.yaml");
let after = std::fs::read_to_string(&workspace_path).expect("read workspace file");
let parsed: serde_yaml_ng::Value =
serde_yaml_ng::from_str(&after).expect("post-fix YAML must parse");
let react17 = parsed
.get("catalogs")
.and_then(|c| c.get("react17"))
.unwrap_or_else(|| panic!("post-fix YAML missing catalogs.react17:\n{after}"));
assert!(
react17
.as_mapping()
.is_some_and(serde_yaml_ng::Mapping::is_empty),
"catalogs.react17 must be an empty mapping `{{}}`, not null. \
Got value: {react17:?}\nFile content:\n{after}"
);
let legacy = parsed
.get("catalogs")
.and_then(|c| c.get("legacy"))
.and_then(serde_yaml_ng::Value::as_mapping)
.expect("catalogs.legacy must remain a mapping");
assert!(
legacy.contains_key(serde_yaml_ng::Value::String("is-odd".to_string())),
"catalogs.legacy must still declare `is-odd`. Got: {legacy:?}"
);
let default_catalog = parsed
.get("catalog")
.and_then(serde_yaml_ng::Value::as_mapping)
.expect("catalog: must remain a mapping");
assert!(
default_catalog.contains_key(serde_yaml_ng::Value::String("react".to_string())),
"default catalog must still declare `react` (it has consumers). Got: {default_catalog:?}"
);
let json = parse_json(&output);
assert_eq!(
json["skipped"].as_u64(),
Some(1),
"fixture has one hardcoded-pkg skip; envelope must report skipped: 1, got: {}",
json["skipped"]
);
}
fn copy_dir_recursive(src: &std::path::Path, dst: &std::path::Path) -> std::io::Result<()> {
std::fs::create_dir_all(dst)?;
for entry in std::fs::read_dir(src)? {
let entry = entry?;
let ty = entry.file_type()?;
let src_path = entry.path();
let dst_path = dst.join(entry.file_name());
if ty.is_dir() {
copy_dir_recursive(&src_path, &dst_path)?;
} else {
std::fs::copy(&src_path, &dst_path)?;
}
}
Ok(())
}