Clear opcode cache after config change
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
bd6273ee1c
commit
4cf61481e5
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
opcache_reset();
|
|
@ -35,7 +35,7 @@ trait CommandLine {
|
|||
/**
|
||||
* Invokes an OCC command
|
||||
*
|
||||
* @param string OCC command, the part behind "occ". For example: "files:transfer-ownership"
|
||||
* @param []string $args OCC command, the part behind "occ". For example: "files:transfer-ownership"
|
||||
* @return int exit code
|
||||
*/
|
||||
public function runOcc($args = []) {
|
||||
|
@ -54,6 +54,12 @@ trait CommandLine {
|
|||
$this->lastStdOut = stream_get_contents($pipes[1]);
|
||||
$this->lastStdErr = stream_get_contents($pipes[2]);
|
||||
$this->lastCode = proc_close($process);
|
||||
|
||||
// Clean opcode cache
|
||||
$client = new GuzzleHttp\Client();
|
||||
$request = $client->createRequest('GET', 'http://localhost:8080/apps/testing/clean_opcode_cache.php');
|
||||
$client->send($request);
|
||||
|
||||
return $this->lastCode;
|
||||
}
|
||||
|
||||
|
|
|
@ -2,33 +2,40 @@ Feature: maintenance-mode
|
|||
|
||||
Background:
|
||||
Given Maintenance mode is enabled
|
||||
Then the command was successful
|
||||
|
||||
Scenario: Accessing /index.php with maintenance mode enabled
|
||||
When requesting "/index.php" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
||||
Scenario: Accessing /remote.php/webdav with maintenance mode enabled
|
||||
When requesting "/remote.php/webdav" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
||||
Scenario: Accessing /remote.php/dav with maintenance mode enabled
|
||||
When requesting "/remote.php/dav" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
||||
Scenario: Accessing /ocs/v1.php with maintenance mode enabled
|
||||
When requesting "/ocs/v1.php" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
||||
Scenario: Accessing /ocs/v2.php with maintenance mode enabled
|
||||
When requesting "/ocs/v2.php" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
||||
Scenario: Accessing /public.php/webdav with maintenance mode enabled
|
||||
When requesting "/public.php/webdav" with "GET"
|
||||
Then the HTTP status code should be "503"
|
||||
Then Maintenance mode is disabled
|
||||
And the command was successful
|
||||
|
|
Loading…
Reference in New Issue