diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-04-11 01:30:32 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-04-11 01:39:54 +0200 |
commit | b882f65fbb408aaf820bdd37420efb1dcbbfaba3 (patch) | |
tree | 7a1d60fbf1624e96739291aab06863333bc0b720 /build/integration/features/maintenance-mode.feature | |
parent | aacbb560ae5bbae3541e901915937cc3384353ef (diff) | |
download | nextcloud-server-b882f65fbb408aaf820bdd37420efb1dcbbfaba3.tar.gz nextcloud-server-b882f65fbb408aaf820bdd37420efb1dcbbfaba3.zip |
Add integration tests
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'build/integration/features/maintenance-mode.feature')
-rw-r--r-- | build/integration/features/maintenance-mode.feature | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/build/integration/features/maintenance-mode.feature b/build/integration/features/maintenance-mode.feature new file mode 100644 index 00000000000..a2e61a7e605 --- /dev/null +++ b/build/integration/features/maintenance-mode.feature @@ -0,0 +1,34 @@ +Feature: maintenance-mode + + Background: + Given Maintenance mode is enabled + + 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 + + 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 + + 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 + + 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 + + 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 + + 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 |