tests/e2e: use vanity urls

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-10-12 12:38:23 +02:00
parent ddb70a283e
commit 15d7004e25
4 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@ class TestProviderOAuth2OIDC(SeleniumTestCase):
sleep(1)
client: DockerClient = from_env()
container = client.containers.run(
image="ghcr.io/beryju/oidc-test-client:latest",
image="beryju.org/oidc-test-client:latest",
detach=True,
network_mode="host",
auto_remove=True,

View File

@ -43,7 +43,7 @@ class TestProviderOAuth2OIDCImplicit(SeleniumTestCase):
sleep(1)
client: DockerClient = from_env()
container = client.containers.run(
image="ghcr.io/beryju/oidc-test-client:latest",
image="beryju.org/oidc-test-client:latest",
detach=True,
network_mode="host",
auto_remove=True,

View File

@ -32,7 +32,7 @@ class TestProviderSAML(SeleniumTestCase):
"""Setup client saml-sp container which we test SAML against"""
client: DockerClient = from_env()
container = client.containers.run(
image="ghcr.io/beryju/saml-test-sp:latest",
image="beryju.org/saml-test-sp:latest",
detach=True,
network_mode="host",
auto_remove=True,

View File

@ -271,7 +271,7 @@ class TestSourceOAuth1(SeleniumTestCase):
def get_container_specs(self) -> Optional[dict[str, Any]]:
return {
"image": "ghcr.io/beryju/oauth1-test-server:latest",
"image": "beryju.org/oauth1-test-server:latest",
"detach": True,
"network_mode": "host",
"auto_remove": True,