[test] check calendar equalitys after sync

This commit is contained in:
daladim 2021-03-04 23:09:00 +01:00
parent 57489ee04a
commit 02a0eece63
2 changed files with 46 additions and 5 deletions

View file

@ -14,7 +14,7 @@ use my_tasks::Provider;
#[tokio::test]
/// This test simulates a synchronisation between a local cache and a server
/// To "mock" a server, let's use a second cache
async fn test_sync() {
async fn test_regular_sync() {
let _ = env_logger::builder().is_test(true).try_init();
let mut provider = populate_test_provider().await;
@ -24,11 +24,8 @@ async fn test_sync() {
let cals_local = provider.local().get_calendars().await.unwrap();
my_tasks::utils::print_calendar_list(cals_local);
my_tasks::utils::print_calendar_list(cals_server);
panic!();
//assert_eq!(cal_server, cal_local, "{:#?}\n{:#?}", cal_server, cal_local);
panic!("TODO: also check that the contents are expected!");
assert!(provider.server().has_same_contents_than(provider.local()).await.unwrap());
}