Add convert_deep_link_to_url_for_import_profile function, test
This commit is contained in:
parent
8e82cad725
commit
525821f093
1 changed files with 11 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue