File tree 4 files changed +13
-19
lines changed 4 files changed +13
-19
lines changed Original file line number Diff line number Diff line change 26
26
- name : Run CI tests
27
27
run : |
28
28
cd ci/docker && docker compose exec -T gateway bash -c '
29
+ ls -lah /var/www/html/var/cache && \
30
+ ls -lah /var/www/html/var/cache/smoketest && \
29
31
composer check
30
32
'
33
+
34
+ - name : Output logs on failure
35
+ if : failure()
36
+ run : |
37
+ cd ci/docker
38
+ docker compose logs
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
cp ../../devconf/stepup/gateway/surfnet_yubikey.yaml.dist ../../devconf/stepup/gateway/surfnet_yubikey.yaml
3
3
echo " pulling the images"
4
- docker compose pull gateway selenium haproxy ssp mariadb
4
+ docker compose pull gateway selenium haproxy ssp mariadb chrome
5
5
echo " starting the images"
6
- docker compose up gateway selenium haproxy ssp mariadb -d
6
+ docker compose up gateway selenium haproxy ssp mariadb chrome -d
7
7
echo " intialising the environment"
8
8
docker compose exec -T gateway bash -c '
9
9
cp /var/www/html/devconf/stepup/gateway/surfnet_yubikey.yaml.dist /var/www/html/devconf/stepup/gateway/surfnet_yubikey.yaml && \
@@ -14,5 +14,5 @@ docker compose exec -T gateway bash -c '
14
14
composer frontend-install && \global_view_parameters.yaml.dist
15
15
./bin/console assets:install --env=smoketest --verbose && \
16
16
./bin/console cache:clear --env=smoketest && \
17
- chown -R www-data:www-data /var/www/html/var/
17
+ chown -R www-data /var/www/html/var/
18
18
'
Original file line number Diff line number Diff line change 104
104
" @phpcs" ,
105
105
" @phpmd" ,
106
106
" @test" ,
107
- " @behat"
107
+ " @behat" ,
108
+ " @behat-functional"
108
109
],
109
110
"phplint" : " ./ci/qa/phplint" ,
110
111
"validate-lockfile" : " ./ci/qa/validate" ,
Original file line number Diff line number Diff line change @@ -314,21 +314,6 @@ public function iAuthenticateAtTheIdp($username): void
314
314
}
315
315
}
316
316
317
- /**
318
- * @return IdentityProvider
319
- */
320
- public function getIdentityProvider ()
321
- {
322
- /** @var RequestStack $stack */
323
-
324
- $ stack = $ this ->kernel ->getContainer ()->get ('request_stack ' );
325
- $ stack ->push (Request::create ('https://gateway.dev.openconext.local ' ));
326
- $ ip = $ this ->kernel ->getContainer ()->get ('surfnet_saml.hosted.identity_provider ' );
327
- $ stack ->pop ();
328
-
329
- return $ ip ;
330
- }
331
-
332
317
private static function loadPrivateKey (PrivateKey $ key )
333
318
{
334
319
$ keyLoader = new PrivateKeyLoader ();
You can’t perform that action at this time.
0 commit comments