mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08:00
40 lines
1.3 KiB
Rust
40 lines
1.3 KiB
Rust
|
use actix_web::{http::StatusCode, test};
|
||
|
use serde_json::Value;
|
||
|
|
||
|
use meilisearch_http::data::Data;
|
||
|
use meilisearch_http::helpers::NormalizePath;
|
||
|
|
||
|
pub struct Service(pub Data);
|
||
|
|
||
|
impl Service {
|
||
|
pub async fn post(&self, url: impl AsRef<str>, body: Value) -> (Value, StatusCode) {
|
||
|
let mut app =
|
||
|
test::init_service(meilisearch_http::create_app(&self.0, true).wrap(NormalizePath)).await;
|
||
|
|
||
|
let req = test::TestRequest::post()
|
||
|
.uri(url.as_ref())
|
||
|
.set_json(&body)
|
||
|
.to_request();
|
||
|
let res = test::call_service(&mut app, req).await;
|
||
|
let status_code = res.status();
|
||
|
|
||
|
let body = test::read_body(res).await;
|
||
|
let response = serde_json::from_slice(&body).unwrap_or_default();
|
||
|
(response, status_code)
|
||
|
}
|
||
|
|
||
|
pub async fn get(&self, url: impl AsRef<str>) -> (Value, StatusCode) {
|
||
|
let mut app =
|
||
|
test::init_service(meilisearch_http::create_app(&self.0, true).wrap(NormalizePath)).await;
|
||
|
|
||
|
let req = test::TestRequest::get().uri(url.as_ref()).to_request();
|
||
|
let res = test::call_service(&mut app, req).await;
|
||
|
let status_code = res.status();
|
||
|
|
||
|
let body = test::read_body(res).await;
|
||
|
let response = serde_json::from_slice(&body).unwrap_or_default();
|
||
|
(response, status_code)
|
||
|
}
|
||
|
}
|
||
|
|