From b092fa00e6f02a08bec7db660e8e0f720efc0931 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sat, 7 Jun 2025 14:29:01 -0400 Subject: [PATCH] More minor changes --- src/main.rs | 140 ---------------------------------------------------- 1 file changed, 140 deletions(-) diff --git a/src/main.rs b/src/main.rs index 35d3d10..dfc9965 100644 --- a/src/main.rs +++ b/src/main.rs @@ -564,49 +564,6 @@ mod tests { } } } - - // pub async - /* - let done = crate::callers::song::status::DONE; - let payload = serde_json::json!({ - "id": &resp.data[0].id, - "status": done, - }); - - match app - .clone() - .oneshot( - axum::http::Request::builder() - .method(axum::http::Method::PATCH) - .uri(crate::callers::endpoints::QUEUESONG) - .header(axum::http::header::CONTENT_TYPE, "application/json") - .body(axum::body::Body::from(payload.to_string())) - .unwrap(), - ) - .await - { - Ok(response) => { - let resp = get_resp_data::< - crate::callers::song::response::update_status::Response, - >(response) - .await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - let changed_status = &resp.data[0]; - - assert_eq!( - *old, changed_status.old_status, - "Old status does not match" - ); - assert_eq!( - done, changed_status.new_status, - "New status does not match" - ); - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } - } - */ } pub async fn resp_to_bytes( @@ -768,35 +725,7 @@ mod tests { Err(err) => { assert!(false, "Error: {:?}", err); } - } - - // Send request - /* - match song_queue_req(&app).await { - Ok(response) => { - let resp = - get_resp_data::(response).await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - assert_eq!(false, resp.data[0].is_nil(), "Should not be empty"); - - match fetch_queue_req(&app).await { - Ok(response) => { - let resp = get_resp_data::< - crate::callers::song::response::fetch_queue_song::Response, - >(response) - .await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } - } - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } }; - */ let _ = db_mgr::drop_database(&tm_pool, &db_name).await; } @@ -1038,75 +967,6 @@ mod tests { } } - // Send request - /* - match song_queue_req(&app).await { - Ok(response) => { - let resp = - get_resp_data::(response).await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - assert_eq!(false, resp.data[0].is_nil(), "Should not be empty"); - - match fetch_queue_req(&app).await { - Ok(response) => { - let resp = get_resp_data::< - crate::callers::song::response::fetch_queue_song::Response, - >(response) - .await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - - let old = &resp.data[0].status; - let done = crate::callers::song::status::DONE; - let payload = serde_json::json!({ - "id": &resp.data[0].id, - "status": done, - }); - - match app - .clone() - .oneshot( - axum::http::Request::builder() - .method(axum::http::Method::PATCH) - .uri(crate::callers::endpoints::QUEUESONG) - .header(axum::http::header::CONTENT_TYPE, "application/json") - .body(axum::body::Body::from(payload.to_string())) - .unwrap(), - ) - .await - { - Ok(response) => { - let resp = get_resp_data::< - crate::callers::song::response::update_status::Response, - >(response) - .await; - assert_eq!(false, resp.data.is_empty(), "Should not be empty"); - let changed_status = &resp.data[0]; - - assert_eq!( - *old, changed_status.old_status, - "Old status does not match" - ); - assert_eq!( - done, changed_status.new_status, - "New status does not match" - ); - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } - } - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } - } - } - Err(err) => { - assert!(false, "Error: {:?}", err); - } - }; - */ - let _ = db_mgr::drop_database(&tm_pool, &db_name).await; } }