|
| 1 | +use std::io::Write; |
| 2 | +use std::process::Command; |
| 3 | +use tempfile::NamedTempFile; |
| 4 | + |
| 5 | +// Helper to run dts2extern command |
| 6 | +fn run_dts2extern(args: &[&str]) -> std::process::Output { |
| 7 | + let mut cmd_args = vec!["run", "-q", "--", "dts2-extern"]; |
| 8 | + cmd_args.extend_from_slice(args); |
| 9 | + |
| 10 | + Command::new("cargo") |
| 11 | + .args(&cmd_args) |
| 12 | + .output() |
| 13 | + .expect("Failed to execute command") |
| 14 | +} |
| 15 | + |
| 16 | +fn create_temp_file(content: &str, suffix: &str) -> NamedTempFile { |
| 17 | + let mut file = NamedTempFile::with_suffix(suffix).unwrap(); |
| 18 | + file.write_all(content.as_bytes()).unwrap(); |
| 19 | + file.flush().unwrap(); |
| 20 | + file |
| 21 | +} |
| 22 | + |
| 23 | +#[test] |
| 24 | +fn test_non_existent_file() { |
| 25 | + let output = run_dts2extern(&["/path/that/does/not/exist.d.ts"]); |
| 26 | + |
| 27 | + if output.status.success() { |
| 28 | + eprintln!("Expected failure for non-existent file, but got success"); |
| 29 | + eprintln!("stdout: {}", String::from_utf8_lossy(&output.stdout)); |
| 30 | + eprintln!("stderr: {}", String::from_utf8_lossy(&output.stderr)); |
| 31 | + } |
| 32 | + |
| 33 | + assert!(!output.status.success()); |
| 34 | + let stderr = String::from_utf8_lossy(&output.stderr); |
| 35 | + // More generic check for file not found errors |
| 36 | + assert!( |
| 37 | + stderr.to_lowercase().contains("no such file") |
| 38 | + || stderr.to_lowercase().contains("cannot find") |
| 39 | + || stderr.to_lowercase().contains("failed to read") |
| 40 | + || stderr.to_lowercase().contains("not found") |
| 41 | + || stderr.to_lowercase().contains("error") |
| 42 | + ); |
| 43 | +} |
| 44 | + |
| 45 | +#[test] |
| 46 | +fn test_non_dts_extension() { |
| 47 | + let file = create_temp_file("export function test(): void;", ".ts"); |
| 48 | + |
| 49 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 50 | + |
| 51 | + assert!(!output.status.success()); |
| 52 | + let stderr = String::from_utf8_lossy(&output.stderr); |
| 53 | + // The actual error message may vary |
| 54 | + assert!(stderr.contains(".d.ts") || stderr.contains("extension")); |
| 55 | +} |
| 56 | + |
| 57 | +#[test] |
| 58 | +fn test_empty_file() { |
| 59 | + let file = create_temp_file("", ".d.ts"); |
| 60 | + |
| 61 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 62 | + |
| 63 | + // Empty file should succeed |
| 64 | + assert!(output.status.success()); |
| 65 | +} |
| 66 | + |
| 67 | +#[test] |
| 68 | +fn test_invalid_typescript_syntax() { |
| 69 | + let file = create_temp_file( |
| 70 | + "export function test( { invalid syntax here } ): void;", |
| 71 | + ".d.ts", |
| 72 | + ); |
| 73 | + |
| 74 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 75 | + |
| 76 | + assert!(!output.status.success()); |
| 77 | + let stderr = String::from_utf8_lossy(&output.stderr); |
| 78 | + assert!( |
| 79 | + stderr.contains("Failed to parse") |
| 80 | + || stderr.contains("Syntax error") |
| 81 | + || stderr.contains("Expected") |
| 82 | + ); |
| 83 | +} |
| 84 | + |
| 85 | +#[test] |
| 86 | +fn test_malformed_type_declarations() { |
| 87 | + let file = create_temp_file( |
| 88 | + r#" |
| 89 | + export declare function test(): UnknownType<>; |
| 90 | + export interface Broken extends { |
| 91 | + "#, |
| 92 | + ".d.ts", |
| 93 | + ); |
| 94 | + |
| 95 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 96 | + |
| 97 | + assert!(!output.status.success()); |
| 98 | +} |
| 99 | + |
| 100 | +#[test] |
| 101 | +fn test_circular_type_reference() { |
| 102 | + let file = create_temp_file( |
| 103 | + r#" |
| 104 | + export type A = B; |
| 105 | + export type B = A; |
| 106 | + export declare function test(param: A): B; |
| 107 | + "#, |
| 108 | + ".d.ts", |
| 109 | + ); |
| 110 | + |
| 111 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 112 | + |
| 113 | + // Should handle circular references gracefully |
| 114 | + assert!(output.status.success()); |
| 115 | +} |
| 116 | + |
| 117 | +#[test] |
| 118 | +fn test_reserved_keyword_parameter_names() { |
| 119 | + let file = create_temp_file( |
| 120 | + r#" |
| 121 | + export declare function test( |
| 122 | + type: string, |
| 123 | + struct: number, |
| 124 | + impl: boolean, |
| 125 | + fn: string |
| 126 | + ): void; |
| 127 | + "#, |
| 128 | + ".d.ts", |
| 129 | + ); |
| 130 | + |
| 131 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 132 | + |
| 133 | + // Should handle reserved keywords |
| 134 | + assert!(output.status.success()); |
| 135 | + let stdout = String::from_utf8_lossy(&output.stdout); |
| 136 | + // Check that parameters are escaped with underscores |
| 137 | + assert!(stdout.contains("_type") || stdout.contains("type_")); |
| 138 | +} |
| 139 | + |
| 140 | +#[test] |
| 141 | +fn test_output_to_readonly_directory() { |
| 142 | + let file = create_temp_file("export function test(): void;", ".d.ts"); |
| 143 | + |
| 144 | + let output = run_dts2extern(&[ |
| 145 | + file.path().to_str().unwrap(), |
| 146 | + "-o", |
| 147 | + "/root/readonly_output.husk", |
| 148 | + ]); |
| 149 | + |
| 150 | + assert!(!output.status.success()); |
| 151 | + let stderr = String::from_utf8_lossy(&output.stderr); |
| 152 | + // More generic check for permission errors |
| 153 | + assert!( |
| 154 | + stderr.to_lowercase().contains("permission") |
| 155 | + || stderr.to_lowercase().contains("denied") |
| 156 | + || stderr.to_lowercase().contains("cannot create") |
| 157 | + || stderr.to_lowercase().contains("failed to write") |
| 158 | + ); |
| 159 | +} |
| 160 | + |
| 161 | +#[test] |
| 162 | +fn test_filter_with_no_matches() { |
| 163 | + let file = create_temp_file( |
| 164 | + r#" |
| 165 | + export declare function foo(): void; |
| 166 | + export declare function bar(): void; |
| 167 | + "#, |
| 168 | + ".d.ts", |
| 169 | + ); |
| 170 | + |
| 171 | + let output = run_dts2extern(&[file.path().to_str().unwrap(), "--filter", "nonexistent.*"]); |
| 172 | + |
| 173 | + // Should succeed but produce module with no exports |
| 174 | + assert!(output.status.success()); |
| 175 | +} |
| 176 | + |
| 177 | +#[test] |
| 178 | +fn test_invalid_regex_filter() { |
| 179 | + let file = create_temp_file("export function test(): void;", ".d.ts"); |
| 180 | + |
| 181 | + let output = run_dts2extern(&[file.path().to_str().unwrap(), "--filter", "[invalid(regex"]); |
| 182 | + |
| 183 | + // TODO: Filter validation is not yet implemented |
| 184 | + // For now, the command succeeds even with invalid regex |
| 185 | + // This test should be updated when regex validation is added |
| 186 | + |
| 187 | + // Currently the command succeeds (filter is ignored) |
| 188 | + assert!(output.status.success()); |
| 189 | +} |
| 190 | + |
| 191 | +#[test] |
| 192 | +fn test_no_exports_in_file() { |
| 193 | + let file = create_temp_file( |
| 194 | + r#" |
| 195 | + // Just comments and internal declarations |
| 196 | + interface InternalInterface { |
| 197 | + prop: string; |
| 198 | + } |
| 199 | + |
| 200 | + type InternalType = string; |
| 201 | + "#, |
| 202 | + ".d.ts", |
| 203 | + ); |
| 204 | + |
| 205 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 206 | + |
| 207 | + // Should succeed |
| 208 | + assert!(output.status.success()); |
| 209 | +} |
| 210 | + |
| 211 | +#[test] |
| 212 | +fn test_namespace_only_declarations() { |
| 213 | + let file = create_temp_file( |
| 214 | + r#" |
| 215 | + export namespace MyNamespace { |
| 216 | + export function test(): void; |
| 217 | + export const value: string; |
| 218 | + } |
| 219 | + "#, |
| 220 | + ".d.ts", |
| 221 | + ); |
| 222 | + |
| 223 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 224 | + |
| 225 | + // Should handle namespace-only files |
| 226 | + assert!(output.status.success()); |
| 227 | +} |
| 228 | + |
| 229 | +#[test] |
| 230 | +fn test_complex_generic_types_with_simplify() { |
| 231 | + let file = create_temp_file( |
| 232 | + r#" |
| 233 | + export declare function test<T extends Record<string, unknown>>( |
| 234 | + param: T & { extra: boolean } |
| 235 | + ): Promise<Partial<T>>; |
| 236 | + "#, |
| 237 | + ".d.ts", |
| 238 | + ); |
| 239 | + |
| 240 | + let output = run_dts2extern(&[file.path().to_str().unwrap(), "--simplify"]); |
| 241 | + |
| 242 | + // With simplify, should succeed |
| 243 | + assert!(output.status.success()); |
| 244 | + let stdout = String::from_utf8_lossy(&output.stdout); |
| 245 | + // Should contain 'any' types |
| 246 | + assert!(stdout.contains("any")); |
| 247 | +} |
| 248 | + |
| 249 | +#[test] |
| 250 | +fn test_module_name_with_special_chars() { |
| 251 | + let file = create_temp_file("export function test(): void;", ".d.ts"); |
| 252 | + |
| 253 | + let output = run_dts2extern(&[file .path().to_str().unwrap(), "-m", "[email protected]"]); |
| 254 | + |
| 255 | + // Module names with special characters should be handled |
| 256 | + assert!(output.status.success()); |
| 257 | +} |
| 258 | + |
| 259 | +#[test] |
| 260 | +fn test_very_long_module_name() { |
| 261 | + let file = create_temp_file("export function test(): void;", ".d.ts"); |
| 262 | + |
| 263 | + let very_long_name = "a".repeat(1000); |
| 264 | + let output = run_dts2extern(&[file.path().to_str().unwrap(), "-m", &very_long_name]); |
| 265 | + |
| 266 | + // Should handle very long module names |
| 267 | + assert!(output.status.success()); |
| 268 | +} |
| 269 | + |
| 270 | +#[test] |
| 271 | +fn test_binary_file_input() { |
| 272 | + let mut file = NamedTempFile::with_suffix(".d.ts").unwrap(); |
| 273 | + // Write some binary data |
| 274 | + file.write_all(&[0xFF, 0xFE, 0x00, 0x01, 0x02, 0x03]) |
| 275 | + .unwrap(); |
| 276 | + file.flush().unwrap(); |
| 277 | + |
| 278 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 279 | + |
| 280 | + assert!(!output.status.success()); |
| 281 | +} |
| 282 | + |
| 283 | +#[test] |
| 284 | +fn test_file_with_bom() { |
| 285 | + let mut file = NamedTempFile::with_suffix(".d.ts").unwrap(); |
| 286 | + // UTF-8 BOM followed by valid content |
| 287 | + file.write_all(&[0xEF, 0xBB, 0xBF]).unwrap(); |
| 288 | + file.write_all(b"export function test(): void;").unwrap(); |
| 289 | + file.flush().unwrap(); |
| 290 | + |
| 291 | + let output = run_dts2extern(&[file.path().to_str().unwrap()]); |
| 292 | + |
| 293 | + // Should handle BOM correctly |
| 294 | + assert!(output.status.success()); |
| 295 | +} |
0 commit comments