Add convert_deep_link_to_url_for_import_profile function, test

This commit is contained in:
iam54r1n4 2023-01-22 13:56:45 -08:00
parent 8e82cad725
commit 525821f093

View file

@ -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");
// }
// }
#[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")
}
}