Moved some tests

This commit is contained in:
daladim 2021-02-21 23:30:09 +01:00
parent a9f69c1160
commit 65a7670a1b
3 changed files with 100 additions and 30 deletions

View file

@ -62,6 +62,7 @@ static TASKS_BODY: &str = r#"
</C:calendar-query> </C:calendar-query>
"#; "#;
pub struct Client { pub struct Client {
url: Url, url: Url,
username: String, username: String,
@ -215,7 +216,7 @@ impl Client {
Ok(calendars) Ok(calendars)
} }
async fn get_tasks(&mut self, calendar: &Url) -> Result<(), Box<dyn Error>> { pub async fn get_tasks(&mut self, calendar: &Url) -> Result<(), Box<dyn Error>> {
let method = Method::from_bytes(b"REPORT") let method = Method::from_bytes(b"REPORT")
.expect("cannot create REPORT method."); .expect("cannot create REPORT method.");
@ -240,31 +241,3 @@ impl Client {
} }
} }
#[cfg(test)]
mod test {
use super::*;
use crate::settings::URL;
use crate::settings::USERNAME;
use crate::settings::PASSWORD;
#[tokio::test]
async fn test_client() {
let _ = env_logger::builder().is_test(true).try_init();
let mut client = Client::new(URL, USERNAME, PASSWORD).unwrap();
let calendars = client.get_calendars().await.unwrap();
println!("Calendars:");
calendars.iter()
.map(|cal| println!(" {}", cal.name()))
.collect::<()>();
client.get_tasks(&calendars[3].url()).await;
}
}

View file

@ -7,7 +7,7 @@ use std::error::Error;
pub mod calendar; pub mod calendar;
mod task; mod task;
mod client; pub mod client;
pub use calendar::Calendar; pub use calendar::Calendar;
pub use task::Task; pub use task::Task;

97
tests/caldav_client.rs Normal file
View file

@ -0,0 +1,97 @@
//! Some tests of a CalDAV client.
//! Most of them are not really integration tests, but just development tests that should be cleaned up one day.
use std::error::Error;
use std::convert::TryFrom;
use reqwest::Method;
use reqwest::header::CONTENT_TYPE;
use minidom::Element;
use url::Url;
use my_tasks::data::client::Client;
use my_tasks::settings::URL;
use my_tasks::settings::USERNAME;
use my_tasks::settings::PASSWORD;
use my_tasks::settings::EXAMPLE_TASK_URL;
use my_tasks::settings::EXAMPLE_CALENDAR_URL;
static EXAMPLE_TASKS_BODY_LAST_MODIFIED: &str = r#"
<C:calendar-query xmlns:D="DAV:"
xmlns:C="urn:ietf:params:xml:ns:caldav">
<D:prop>
<D:getetag/>
<C:calendar-data />
</D:prop>
<C:filter>
<C:comp-filter name="VCALENDAR">
<C:comp-filter name="VTODO">
<C:prop-filter name="LAST-MODIFIED">
<C:time-range start="20210220T000000Z"
end="20260105T000000Z"/>
</C:prop-filter>
</C:comp-filter>
</C:comp-filter>
</C:filter>
</C:calendar-query>
"#;
#[tokio::test]
async fn test_client() {
let _ = env_logger::builder().is_test(true).try_init();
let mut client = Client::new(URL, USERNAME, PASSWORD).unwrap();
let calendars = client.get_calendars().await.unwrap();
println!("Calendars:");
calendars.iter()
.map(|cal| println!(" {}\t{}", cal.name(), cal.url().as_str()))
.collect::<()>();
client.get_tasks(&calendars[3].url()).await;
}
#[tokio::test]
async fn profind() {
let _ = env_logger::builder().is_test(true).try_init();
let url: Url = EXAMPLE_TASK_URL.parse().unwrap();
let method = Method::from_bytes(b"PROPFIND")
.expect("cannot create PROPFIND method.");
let res = reqwest::Client::new()
.request(method, url.as_str())
.header("Depth", 0)
.header(CONTENT_TYPE, "application/xml")
.basic_auth(USERNAME, Some(PASSWORD))
//.body(body)
.send()
.await
.unwrap();
println!("{:?}", res.text().await);
}
#[tokio::test]
async fn last_modified() {
let _ = env_logger::builder().is_test(true).try_init();
let url: Url = EXAMPLE_CALENDAR_URL.parse().unwrap();
let method = Method::from_bytes(b"REPORT")
.expect("cannot create REPORT method.");
let res = reqwest::Client::new()
.request(method, url.as_str())
.header("Depth", 1)
.header(CONTENT_TYPE, "application/xml")
.basic_auth(USERNAME, Some(PASSWORD))
.body(EXAMPLE_TASKS_BODY_LAST_MODIFIED)
.send()
.await
.unwrap();
let el: Element = res.text().await.unwrap().parse().unwrap();
my_tasks::utils::print_xml(&el);
}