2023-11-28 15:55:48 +01:00
|
|
|
//! To test the webhook, we need to spawn a new server with a URL listening for
|
|
|
|
//! post requests. The webhook handle starts a server and forwards all the
|
|
|
|
//! received requests into a channel for you to handle.
|
|
|
|
|
2023-11-28 11:39:42 +01:00
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use actix_http::body::MessageBody;
|
|
|
|
use actix_web::dev::{ServiceFactory, ServiceResponse};
|
|
|
|
use actix_web::web::{Bytes, Data};
|
|
|
|
use actix_web::{post, App, HttpResponse, HttpServer};
|
2023-11-28 15:55:48 +01:00
|
|
|
use meili_snap::{json_string, snapshot};
|
2023-11-28 11:39:42 +01:00
|
|
|
use meilisearch::Opt;
|
|
|
|
use tokio::sync::mpsc;
|
2023-11-29 13:09:04 +01:00
|
|
|
use url::Url;
|
2023-11-28 11:39:42 +01:00
|
|
|
|
|
|
|
use crate::common::{default_settings, Server};
|
|
|
|
use crate::json;
|
|
|
|
|
|
|
|
#[post("/")]
|
2023-11-28 14:47:07 +01:00
|
|
|
async fn forward_body(sender: Data<mpsc::UnboundedSender<Vec<u8>>>, body: Bytes) -> HttpResponse {
|
2023-11-28 11:39:42 +01:00
|
|
|
let body = body.to_vec();
|
2023-11-28 14:47:07 +01:00
|
|
|
sender.send(body).unwrap();
|
2023-11-28 11:39:42 +01:00
|
|
|
HttpResponse::Ok().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_app(
|
|
|
|
sender: Arc<mpsc::UnboundedSender<Vec<u8>>>,
|
|
|
|
) -> actix_web::App<
|
|
|
|
impl ServiceFactory<
|
|
|
|
actix_web::dev::ServiceRequest,
|
|
|
|
Config = (),
|
|
|
|
Response = ServiceResponse<impl MessageBody>,
|
|
|
|
Error = actix_web::Error,
|
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
> {
|
|
|
|
App::new().service(forward_body).app_data(Data::from(sender))
|
|
|
|
}
|
|
|
|
|
|
|
|
struct WebhookHandle {
|
|
|
|
pub server_handle: tokio::task::JoinHandle<Result<(), std::io::Error>>,
|
|
|
|
pub url: String,
|
|
|
|
pub receiver: mpsc::UnboundedReceiver<Vec<u8>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn create_webhook_server() -> WebhookHandle {
|
2023-11-28 14:47:07 +01:00
|
|
|
let mut log_builder = env_logger::Builder::new();
|
2023-11-29 14:27:50 +01:00
|
|
|
log_builder.parse_filters("info");
|
2023-11-28 14:47:07 +01:00
|
|
|
log_builder.init();
|
|
|
|
|
2023-11-28 11:39:42 +01:00
|
|
|
let (sender, receiver) = mpsc::unbounded_channel();
|
|
|
|
let sender = Arc::new(sender);
|
|
|
|
|
2023-11-28 15:55:48 +01:00
|
|
|
// By listening on the port 0, the system will give us any available port.
|
2023-11-28 11:39:42 +01:00
|
|
|
let server =
|
2023-11-28 14:47:07 +01:00
|
|
|
HttpServer::new(move || create_app(sender.clone())).bind(("127.0.0.1", 0)).unwrap();
|
2023-11-28 11:39:42 +01:00
|
|
|
let (ip, scheme) = server.addrs_with_scheme()[0];
|
|
|
|
let url = format!("{scheme}://{ip}/");
|
|
|
|
|
|
|
|
let server_handle = tokio::spawn(server.run());
|
|
|
|
WebhookHandle { server_handle, url, receiver }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_web::test]
|
|
|
|
async fn test_basic_webhook() {
|
2023-11-28 15:55:48 +01:00
|
|
|
let WebhookHandle { server_handle, url, mut receiver } = create_webhook_server().await;
|
2023-11-28 11:39:42 +01:00
|
|
|
|
|
|
|
let db_path = tempfile::tempdir().unwrap();
|
|
|
|
let server = Server::new_with_options(Opt {
|
2023-11-29 13:09:04 +01:00
|
|
|
task_webhook_url: Some(Url::parse(&url).unwrap()),
|
2023-11-28 11:39:42 +01:00
|
|
|
..default_settings(db_path.path())
|
|
|
|
})
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
2023-11-28 14:47:07 +01:00
|
|
|
let index = server.index("tamo");
|
2023-11-28 15:55:48 +01:00
|
|
|
// May be flaky: we're relying on the fact that while the first document addition is processed, the other
|
|
|
|
// operations will be received and will be batched together. If it doesn't happen it's not a problem
|
|
|
|
// the rest of the test won't assume anything about the number of tasks per batch.
|
|
|
|
for i in 0..5 {
|
2023-11-28 14:47:07 +01:00
|
|
|
let (_, _status) = index.add_documents(json!({ "id": i, "doggo": "bone" }), None).await;
|
|
|
|
}
|
2023-11-28 11:39:42 +01:00
|
|
|
|
2023-11-28 15:55:48 +01:00
|
|
|
let mut nb_tasks = 0;
|
|
|
|
while let Some(payload) = receiver.recv().await {
|
|
|
|
let payload = String::from_utf8(payload).unwrap();
|
|
|
|
let jsonl = payload.split('\n');
|
|
|
|
for json in jsonl {
|
|
|
|
if json.is_empty() {
|
|
|
|
break; // we reached EOF
|
|
|
|
}
|
|
|
|
nb_tasks += 1;
|
|
|
|
let json: serde_json::Value = serde_json::from_str(json).unwrap();
|
|
|
|
snapshot!(
|
|
|
|
json_string!(json, { ".uid" => "[uid]", ".duration" => "[duration]", ".enqueuedAt" => "[date]", ".startedAt" => "[date]", ".finishedAt" => "[date]" }),
|
|
|
|
@r###"
|
|
|
|
{
|
|
|
|
"uid": "[uid]",
|
|
|
|
"indexUid": "tamo",
|
|
|
|
"status": "succeeded",
|
|
|
|
"type": "documentAdditionOrUpdate",
|
|
|
|
"canceledBy": null,
|
|
|
|
"details": {
|
|
|
|
"receivedDocuments": 1,
|
|
|
|
"indexedDocuments": 1
|
|
|
|
},
|
|
|
|
"error": null,
|
|
|
|
"duration": "[duration]",
|
|
|
|
"enqueuedAt": "[date]",
|
|
|
|
"startedAt": "[date]",
|
|
|
|
"finishedAt": "[date]"
|
|
|
|
}
|
|
|
|
"###);
|
|
|
|
}
|
|
|
|
if nb_tasks == 5 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2023-11-28 14:47:07 +01:00
|
|
|
|
2023-11-28 15:55:48 +01:00
|
|
|
assert!(nb_tasks == 5, "We should have received the 5 tasks but only received {nb_tasks}");
|
2023-11-28 11:39:42 +01:00
|
|
|
|
2023-11-28 15:55:48 +01:00
|
|
|
server_handle.abort();
|
2023-11-28 11:39:42 +01:00
|
|
|
}
|