Fix concurrency bug while testing

This commit is contained in:
2022-01-17 17:09:54 +01:00
parent c43dc135ac
commit 5c6471aea9
9 changed files with 67 additions and 44 deletions

View File

@@ -3,15 +3,19 @@ pub mod test_helper;
use contextswitch_api::taskwarrior;
use contextswitch_types::Task;
use contextswitch_types::TaskDefinition;
use rstest::*;
use test_helper::app_address;
#[rstest]
#[tokio::test]
async fn list_tasks() {
let address = test_helper::spawn_app();
let task_id =
taskwarrior::add(vec!["test", "list_tasks", "contextswitch:'{\"test\": 1}'"]).unwrap();
async fn list_tasks(app_address: &str) {
let task_id = taskwarrior::add(vec!["test", "list_tasks", "contextswitch:'{\"test\": 1}'"])
.await
.unwrap();
println!("LIST TASKS ID: {}", task_id);
let tasks: Vec<Task> = reqwest::Client::new()
.get(&format!("{}/tasks?filter={}", &address, task_id))
.get(&format!("{}/tasks?filter={}", &app_address, task_id))
.send()
.await
.expect("Failed to execute request")
@@ -25,13 +29,11 @@ async fn list_tasks() {
assert_eq!(cs_metadata.test, 1);
}
#[rstest]
#[tokio::test]
async fn add_task() {
let address = test_helper::spawn_app();
println!("add_task address: {}", address);
async fn add_task(app_address: &str) {
let response: serde_json::Value = reqwest::Client::new()
.post(&format!("{}/tasks", &address))
.post(&format!("{}/tasks", &app_address))
.json(&TaskDefinition {
definition: "test add_task contextswitch:{\"test\":1}".to_string(),
})
@@ -41,8 +43,10 @@ async fn add_task() {
.json()
.await
.expect("Cannot parse JSON result");
println!("ADD RESPONSE: {:?}", response);
let new_task_id = response["id"].as_u64().unwrap();
let tasks = taskwarrior::export(vec![&new_task_id.to_string()]).unwrap();
println!("TASKS={:?}", tasks);
assert_eq!(tasks.len(), 1);
assert_eq!(tasks[0].id, new_task_id);