-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP
- Loading branch information
Showing
3 changed files
with
156 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: OIDC integration tests | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- qa/** | ||
- stable/** | ||
- dev/oidc-tests | ||
jobs: | ||
integration-tests: | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
browser: [Chrome, Electron, Firefox] | ||
name: ${{ matrix.browser }} | ||
env: | ||
COMPOSE_FILE: ${{ github.workspace }}/docker/docker-compose.dev.yml | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Start containerized services | ||
run: | | ||
sudo sysctl -w vm.max_map_count=262144 | ||
docker compose -p ci up -d percona elasticsearch gearmand | ||
- name: Launch Keycloak service | ||
run: | | ||
docker compose -p ci -f ${{ github.workspace }}/docker/docker-compose.keycloak.yml up -d | ||
- name: Wait for Keycloak to be Ready | ||
run: | | ||
echo "Waiting for Keycloak to be ready..." | ||
for i in {1..30}; do | ||
if nc -z localhost 8080; then | ||
echo "Keycloak is up!" | ||
break | ||
fi | ||
echo "Waiting for Keycloak..." | ||
sleep 5 | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
services: | ||
keycloak: | ||
image: quay.io/keycloak/keycloak:latest | ||
command: ["start-dev", "--import-realm"] | ||
restart: unless-stopped | ||
environment: | ||
KEYCLOAK_ADMIN: admin | ||
KEYCLOAK_ADMIN_PASSWORD: admin | ||
KC_METRICS_ENABLED: true | ||
KC_LOG_LEVEL: INFO | ||
ports: | ||
- 8080:8080 | ||
volumes: | ||
- .etc/keycloak/realm.json:/opt/keycloak/data/import/realm.json:ro |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
[ | ||
{ | ||
"id": "demo", | ||
"realm": "demo", | ||
"sslRequired": "none", | ||
"enabled": true, | ||
"eventsEnabled": true, | ||
"eventsExpiration": 900, | ||
"adminEventsEnabled": true, | ||
"adminEventsDetailsEnabled": true, | ||
"attributes": { | ||
"adminEventsExpiration": "900" | ||
}, | ||
"clients": [ | ||
{ | ||
"id": "atom", | ||
"clientId": "atom", | ||
"name": "atom", | ||
"enabled": true, | ||
"rootUrl": "http://docker-atom:63001", | ||
"adminUrl": "http://docker-atom:63001", | ||
"baseUrl": "http://docker-atom:63001", | ||
"clientAuthenticatorType": "client-secret", | ||
"secret": "example-secret", | ||
"redirectUris": ["http://docker-atom:63001/*"], | ||
"webOrigins": ["http://docker-atom:63001"], | ||
"standardFlowEnabled": true, | ||
"serviceAccountsEnabled": true, | ||
"authorizationServicesEnabled": true, | ||
"publicClient": false | ||
} | ||
], | ||
"users": [ | ||
{ | ||
"id": "demo", | ||
"email": "[email protected]", | ||
"username": "demo", | ||
"enabled": true, | ||
"emailVerified": true, | ||
"credentials": [ | ||
{ | ||
"temporary": false, | ||
"type": "password", | ||
"value": "demo" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "secondary", | ||
"realm": "secondary", | ||
"sslRequired": "none", | ||
"enabled": true, | ||
"eventsEnabled": true, | ||
"eventsExpiration": 900, | ||
"adminEventsEnabled": true, | ||
"adminEventsDetailsEnabled": true, | ||
"attributes": { | ||
"adminEventsExpiration": "900" | ||
}, | ||
"clients": [ | ||
{ | ||
"id": "atom-secondary", | ||
"clientId": "atom-secondary", | ||
"name": "atom-secondary", | ||
"enabled": true, | ||
"rootUrl": "http://docker-atom:63001", | ||
"adminUrl": "http://docker-atom:63001", | ||
"baseUrl": "http://docker-atom:63001", | ||
"clientAuthenticatorType": "client-secret", | ||
"secret": "example-secret", | ||
"redirectUris": ["http://docker-atom:63001/*"], | ||
"webOrigins": ["http://docker-atom:63001"], | ||
"standardFlowEnabled": true, | ||
"serviceAccountsEnabled": true, | ||
"authorizationServicesEnabled": true, | ||
"publicClient": false | ||
} | ||
], | ||
"users": [ | ||
{ | ||
"id": "support", | ||
"email": "[email protected]", | ||
"username": "support", | ||
"enabled": true, | ||
"emailVerified": true, | ||
"credentials": [ | ||
{ | ||
"temporary": false, | ||
"type": "password", | ||
"value": "support" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |