Test payload changes

This commit is contained in:
kdeng00
2025-06-18 19:38:35 -04:00
parent 7ff3502cc1
commit 01e045495b
+19 -17
View File
@@ -327,7 +327,7 @@ mod tests {
app: &axum::Router,
id: &uuid::Uuid,
) -> Result<axum::response::Response, std::convert::Infallible> {
let payload = queue_metadata_payload_data(&id).await;
let payload = payload_data::queue_metadata_payload_data(&id).await;
let req = axum::http::Request::builder()
.method(axum::http::Method::POST)
@@ -600,22 +600,24 @@ mod tests {
serde_json::from_slice(&body).unwrap()
}
pub async fn queue_metadata_payload_data(id: &uuid::Uuid) -> serde_json::Value {
serde_json::json!(
{
"id": id,
"album" : "Machine Gun: The FillMore East First Show",
"album_artist" : "Jimi Hendrix",
"artist" : "Jimi Hendrix",
"disc" : 1,
"disc_count" : 1,
"duration" : 330,
"genre" : "Psychadelic Rock",
"title" : "Power of Soul",
"track" : 1,
"track_count" : 11,
"year" : 2016
})
pub mod payload_data {
pub async fn queue_metadata_payload_data(id: &uuid::Uuid) -> serde_json::Value {
serde_json::json!(
{
"song_queue_id": id,
"album" : "Machine Gun: The FillMore East First Show",
"album_artist" : "Jimi Hendrix",
"artist" : "Jimi Hendrix",
"disc" : 1,
"disc_count" : 1,
"duration" : 330,
"genre" : "Psychadelic Rock",
"title" : "Power of Soul",
"track" : 1,
"track_count" : 11,
"year" : 2016
})
}
}
#[tokio::test]