e2e: use docker proxy for test images
This commit is contained in:
		| @ -23,7 +23,7 @@ class TestFlowsEnroll(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "mailhog/mailhog:v1.0.1", |             "image": "docker.beryju.org/proxy/mailhog/mailhog:v1.0.1", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -33,7 +33,7 @@ class TestProviderOAuth2Github(SeleniumTestCase): | |||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         """Setup client grafana container which we test OAuth against""" |         """Setup client grafana container which we test OAuth against""" | ||||||
|         return { |         return { | ||||||
|             "image": "grafana/grafana:7.1.0", |             "image": "docker.beryju.org/proxy/grafana/grafana:7.1.0", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -47,7 +47,7 @@ class TestProviderOAuth2OAuth(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "grafana/grafana:7.1.0", |             "image": "docker.beryju.org/proxy/grafana/grafana:7.1.0", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -53,7 +53,7 @@ class TestProviderOAuth2OIDC(SeleniumTestCase): | |||||||
|         client: DockerClient = from_env() |         client: DockerClient = from_env() | ||||||
|         client.images.pull("beryju/oidc-test-client") |         client.images.pull("beryju/oidc-test-client") | ||||||
|         container = client.containers.run( |         container = client.containers.run( | ||||||
|             image="beryju/oidc-test-client", |             image="docker.beryju.org/proxy/beryju/oidc-test-client", | ||||||
|             detach=True, |             detach=True, | ||||||
|             network_mode="host", |             network_mode="host", | ||||||
|             auto_remove=True, |             auto_remove=True, | ||||||
|  | |||||||
| @ -36,7 +36,7 @@ class TestProviderProxy(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "traefik/whoami:latest", |             "image": "docker.beryju.org/proxy/traefik/whoami:latest", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -38,7 +38,7 @@ class TestProviderSAML(SeleniumTestCase): | |||||||
|         client: DockerClient = from_env() |         client: DockerClient = from_env() | ||||||
|         client.images.pull("beryju/oidc-test-client") |         client.images.pull("beryju/oidc-test-client") | ||||||
|         container = client.containers.run( |         container = client.containers.run( | ||||||
|             image="beryju/saml-test-sp", |             image="docker.beryju.org/proxy/beryju/saml-test-sp", | ||||||
|             detach=True, |             detach=True, | ||||||
|             network_mode="host", |             network_mode="host", | ||||||
|             auto_remove=True, |             auto_remove=True, | ||||||
|  | |||||||
| @ -74,7 +74,7 @@ class TestSourceOAuth2(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "quay.io/dexidp/dex:v2.24.0", |             "image": "docker.beryju.org/proxy/quay.io/dexidp/dex:v2.24.0", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
| @ -258,7 +258,7 @@ class TestSourceOAuth1(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "beryju/oauth1-test-server", |             "image": "docker.beryju.org/proxy/beryju/oauth1-test-server", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -75,7 +75,7 @@ class TestSourceSAML(SeleniumTestCase): | |||||||
|  |  | ||||||
|     def get_container_specs(self) -> Optional[Dict[str, Any]]: |     def get_container_specs(self) -> Optional[Dict[str, Any]]: | ||||||
|         return { |         return { | ||||||
|             "image": "kristophjunge/test-saml-idp:1.15", |             "image": "docker.beryju.org/proxy/kristophjunge/test-saml-idp:1.15", | ||||||
|             "detach": True, |             "detach": True, | ||||||
|             "network_mode": "host", |             "network_mode": "host", | ||||||
|             "auto_remove": True, |             "auto_remove": True, | ||||||
|  | |||||||
| @ -7948,7 +7948,7 @@ definitions: | |||||||
|         minLength: 1 |         minLength: 1 | ||||||
|       session_duration: |       session_duration: | ||||||
|         title: Session duration |         title: Session duration | ||||||
|         description: 'Determines how long a session lasts. Default of -1 means that |         description: 'Determines how long a session lasts. Default of 0 means that | ||||||
|           the sessions lasts until the browser is closed. (Format: hours=-1;minutes=-2;seconds=-3)' |           the sessions lasts until the browser is closed. (Format: hours=-1;minutes=-2;seconds=-3)' | ||||||
|         type: string |         type: string | ||||||
|         minLength: 1 |         minLength: 1 | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 Jens Langhammer
					Jens Langhammer