Skip to content

Commit

Permalink
Disable openid connect tests due to missing fixture (#89478) (#89479)
Browse files Browse the repository at this point in the history
Relates to #89477. For
now just disable these tests since they are guaranteed to fail.
  • Loading branch information
mark-vieira committed Aug 18, 2022
1 parent 0ef2054 commit e22e64e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
3 changes: 3 additions & 0 deletions x-pack/qa/oidc-op-tests/build.gradle
Expand Up @@ -21,4 +21,7 @@ tasks.named("processJavaRestTestResources").configure {
tasks.named("javaRestTest").configure {
// OpenID Connect fixture does not support aarm64
onlyIf { Architecture.current() == Architecture.X64 }

// AwaitsFix: https://github.com/elastic/elasticsearch/issues/89477
enabled = false
}
21 changes: 11 additions & 10 deletions x-pack/test/idp-fixture/docker-compose.yml
Expand Up @@ -154,16 +154,17 @@ services:
- ./idp/shibboleth-idp/metadata:/opt/shibboleth-idp/metadata
- ./idp/shib-jetty-base/start.d/ssl.ini:/opt/shib-jetty-base/start.d/ssl.ini

oidc-provider:
image: "c2id/c2id-server:9.5"
depends_on:
- http-proxy
ports:
- "8080"
expose:
- "8080"
volumes:
- ./oidc/override.properties:/etc/c2id/override.properties
# c2id/c2id-server image is no longer available
# oidc-provider:
# image: "c2id/c2id-server:9.5"
# depends_on:
# - http-proxy
# ports:
# - "8080"
# expose:
# - "8080"
# volumes:
# - ./oidc/override.properties:/etc/c2id/override.properties

http-proxy:
image: "nginx:latest"
Expand Down

0 comments on commit e22e64e

Please sign in to comment.