diff --git a/src-tauri/src/utils/help.rs b/src-tauri/src/utils/help.rs index 7d7366c..798e072 100644 --- a/src-tauri/src/utils/help.rs +++ b/src-tauri/src/utils/help.rs @@ -219,4 +219,14 @@ fn test_parse_value() { // let (url,prof_name) = extract_url_and_profile_name_from_deep_link(&s.to_string()).unwrap(); // assert_eq!(url,"https://mysite.com/all.yml"); // assert_eq!(prof_name,"profilename"); -// } \ No newline at end of file +// } +#[test] +fn test_convert_deeplink_to_url_for_import_profile(){ + let s = "clashy://install-config?url=https://antyfilter.aeycia.cl/80467cf865c2ef1af111716ddf30dd29/80467cf865c2ef1af111716ddf30dd29/clash/all.yml&name=all_antyfilter.aeycia.cl"; + let res = convert_deeplink_to_url_for_import_profile(&s.to_string()); + if res.is_err(){ + println!("Test failed: {:?}",res.err().unwrap()) + }else{ + panic!("Test successfully completed") + } +} \ No newline at end of file