]> source.dussan.org Git - nextcloud-server.git/commit
Move acceptance tests that crash the PHP built-in server to Apache 12121/head
authorDaniel Calviño Sánchez <danxuliu@gmail.com>
Sun, 28 Oct 2018 18:51:13 +0000 (19:51 +0100)
committerDaniel Calviño Sánchez <danxuliu@gmail.com>
Mon, 29 Oct 2018 15:23:38 +0000 (16:23 +0100)
commit021c153886ff3a5a63aaaf36b1c4e30bdcb2a70c
treeb495e8cb24634b9375582350a8fc6ac36b7ada67
parentb321e47e5de6b6564195f5d3b26dfa4c465235f3
Move acceptance tests that crash the PHP built-in server to Apache

The PHP built-in server can crash when certain actions are performed in
Nextcloud (but although the crash is triggered by Nextcloud it does not
seem to be a Nextcloud bug), which can lead to failures in the
acceptance tests that would have otherwise passed.

A crash of the PHP built-in server during an acceptance test can be
identified by the message "sh: 1: kill: No such process" in the
acceptance tests output; as the PHP built-in server crashed its process
does no longer exist when it is tried to be killed when the scenario
ends.

Although the crash has been observed in other tests too it is more
prevalent in the tests for tags and the theming app. In order to
reduce the false positives those tests are now run on Apache instead of
on the PHP built-in sever. However, the rest of tests are still run on
the PHP built-in server due to its lower resource consumption.

In order to run a feature or just a scenario using Apache it has to be
tagged with "@apache"; features or scenarios without that tag (the
default) will run on the PHP built-in server instead.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
tests/acceptance/config/behat.yml
tests/acceptance/features/app-files-tags.feature
tests/acceptance/features/app-theming.feature