test: fix failed tests

This commit is contained in:
Louis 2025-08-07 20:53:09 +07:00
parent 25699995fc
commit b8f5fd510a
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2
3 changed files with 25 additions and 5 deletions

View File

@ -41,6 +41,7 @@ lint: install-and-build
test: lint
yarn download:bin
yarn test
yarn copy:assets:tauri
cargo test
# Builds and publishes the app

View File

@ -1003,9 +1003,18 @@ mod tests {
#[tokio::test]
async fn test_run_mcp_commands() {
let app = mock_app();
// Create a mock mcp_config.json file
let config_path = "mcp_config.json";
let mut file: File = File::create(config_path).expect("Failed to create config file");
// Get the app path where the config should be created
let app_path = get_jan_data_folder_path(app.handle().clone());
let config_path = app_path.join("mcp_config.json");
// Ensure the directory exists
if let Some(parent) = config_path.parent() {
std::fs::create_dir_all(parent).expect("Failed to create parent directory");
}
// Create a mock mcp_config.json file at the correct location
let mut file: File = File::create(&config_path).expect("Failed to create config file");
file.write_all(b"{\"mcpServers\":{}}")
.expect("Failed to write to config file");
@ -1018,6 +1027,6 @@ mod tests {
assert!(result.is_ok());
// Clean up the mock config file
std::fs::remove_file(config_path).expect("Failed to remove config file");
std::fs::remove_file(&config_path).expect("Failed to remove config file");
}
}

View File

@ -691,7 +691,17 @@ mod tests {
config.ignore_ssl = Some(false);
assert!(validate_proxy_config(&config).is_ok());
assert!(create_proxy_from_config(&config).is_ok());
// SOCKS proxies are not supported by reqwest::Proxy::all()
// This test should expect an error for SOCKS proxies
let result = create_proxy_from_config(&config);
assert!(result.is_err());
// Test with HTTP proxy instead which is supported
let mut http_config = create_test_proxy_config("http://proxy.example.com:8080");
http_config.ignore_ssl = Some(false);
assert!(validate_proxy_config(&http_config).is_ok());
assert!(create_proxy_from_config(&http_config).is_ok());
}
#[test]