Test payload changes
This commit is contained in:
+4
-2
@@ -327,7 +327,7 @@ mod tests {
|
|||||||
app: &axum::Router,
|
app: &axum::Router,
|
||||||
id: &uuid::Uuid,
|
id: &uuid::Uuid,
|
||||||
) -> Result<axum::response::Response, std::convert::Infallible> {
|
) -> 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()
|
let req = axum::http::Request::builder()
|
||||||
.method(axum::http::Method::POST)
|
.method(axum::http::Method::POST)
|
||||||
@@ -600,10 +600,11 @@ mod tests {
|
|||||||
serde_json::from_slice(&body).unwrap()
|
serde_json::from_slice(&body).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub mod payload_data {
|
||||||
pub async fn queue_metadata_payload_data(id: &uuid::Uuid) -> serde_json::Value {
|
pub async fn queue_metadata_payload_data(id: &uuid::Uuid) -> serde_json::Value {
|
||||||
serde_json::json!(
|
serde_json::json!(
|
||||||
{
|
{
|
||||||
"id": id,
|
"song_queue_id": id,
|
||||||
"album" : "Machine Gun: The FillMore East First Show",
|
"album" : "Machine Gun: The FillMore East First Show",
|
||||||
"album_artist" : "Jimi Hendrix",
|
"album_artist" : "Jimi Hendrix",
|
||||||
"artist" : "Jimi Hendrix",
|
"artist" : "Jimi Hendrix",
|
||||||
@@ -617,6 +618,7 @@ mod tests {
|
|||||||
"year" : 2016
|
"year" : 2016
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn test_song_queue() {
|
async fn test_song_queue() {
|
||||||
|
|||||||
Reference in New Issue
Block a user