From 525821f09360cf156ae16712b80147fe358a333c Mon Sep 17 00:00:00 2001 From: iam54r1n4 Date: Sun, 22 Jan 2023 13:56:45 -0800 Subject: [PATCH] Add convert_deep_link_to_url_for_import_profile function, test --- src-tauri/src/utils/help.rs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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