Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delay Keycloak admin access until testcontainer is fully ready #9

Merged
merged 2 commits into from
Mar 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions tests/test_oauth.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import json
from pathlib import Path
from time import sleep
from typing import Annotated, Generator
from fastapi import Depends, FastAPI, Request, status
import httpx
from starlette.middleware.sessions import SessionMiddleware
from keycloak import KeycloakAdmin
from keycloak import KeycloakAdmin, KeycloakAuthenticationError
import pytest
from keycloak_oauth import KeycloakOAuth2, User
from testcontainers.keycloak import KeycloakContainer
Expand All @@ -30,7 +31,15 @@ def keycloak(self) -> Generator[KeycloakAdmin, None, None]:
container, KeycloakContainer
) # HACK: wrong type annotation in testcontainers `with_command`
container.with_bind_ports(container.port, container.port).start()
keycloak = container.get_client()

while True:
disrupted marked this conversation as resolved.
Show resolved Hide resolved
try:
keycloak = container.get_client()
except KeycloakAuthenticationError:
sleep(0.1)
continue
break

assert keycloak.connection.base_url == container.get_base_api_url() + "/"
keycloak.import_realm(
json.loads(Path(self.RESOURCES_PATH / "realm.json").read_bytes())
Expand Down
Loading