Skip to content

Commit

Permalink
test: Ignore the auths tests on windows
Browse files Browse the repository at this point in the history
Since the auths tests fail sporadically on the windows CI but we can't
reproduce these failures with a real windows machine we are going to
ignore theses one.
But we still ensure they compile.
  • Loading branch information
irevoire committed Dec 22, 2021
1 parent ea0a527 commit d7df4d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions meilisearch-http/tests/auth/authorization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ static INVALID_RESPONSE: Lazy<Value> = Lazy::new(|| {
});

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn error_access_expired_key() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand All @@ -86,6 +87,7 @@ async fn error_access_expired_key() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn error_access_unauthorized_index() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -116,6 +118,7 @@ async fn error_access_unauthorized_index() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn error_access_unauthorized_action() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -152,6 +155,7 @@ async fn error_access_unauthorized_action() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn access_authorized_restricted_index() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -203,6 +207,7 @@ async fn access_authorized_restricted_index() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn access_authorized_no_index_restriction() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -254,6 +259,7 @@ async fn access_authorized_no_index_restriction() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn access_authorized_stats_restricted_index() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -293,6 +299,7 @@ async fn access_authorized_stats_restricted_index() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn access_authorized_stats_no_index_restriction() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -332,6 +339,7 @@ async fn access_authorized_stats_no_index_restriction() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn list_authorized_indexes_restricted_index() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down Expand Up @@ -372,6 +380,7 @@ async fn list_authorized_indexes_restricted_index() {
}

#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn list_authorized_indexes_no_index_restriction() {
let mut server = Server::new_auth().await;
server.use_api_key("MASTER_KEY");
Expand Down
2 changes: 1 addition & 1 deletion meilisearch-http/tests/index/delete_index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ async fn error_delete_unexisting_index() {
assert_eq!(response["error"], expected_response);
}

#[cfg(not(windows))]
#[actix_rt::test]
#[cfg_attr(target_os = "windows", ignore)]
async fn loop_delete_add_documents() {
let server = Server::new().await;
let index = server.index("test");
Expand Down

0 comments on commit d7df4d6

Please sign in to comment.