mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 05:14:27 +01:00
test invalid query params
This commit is contained in:
parent
6df56c4ec5
commit
cf6c6eb117
@ -1414,3 +1414,14 @@ async fn highlight_cropped_text() {
|
||||
.unwrap()
|
||||
, &Value::String(expected_response.to_owned()));
|
||||
}
|
||||
|
||||
#[actix_rt::test]
|
||||
async fn well_formated_error_with_bad_request_params() {
|
||||
let mut server = common::Server::with_uid("test");
|
||||
let query = "foo=bar";
|
||||
let (response, _status_code) = server.search(query).await;
|
||||
assert!(response.get("message").is_some());
|
||||
assert!(response.get("errorCode").is_some());
|
||||
assert!(response.get("errorType").is_some());
|
||||
assert!(response.get("errorLink").is_some());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user