From 5cf6fc7e8dbe0d2b142953f5671ae8f7c762fccb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 20 Mar 2017 10:44:40 +0100 Subject: [PATCH] Add integration tests Signed-off-by: Joas Schilling --- build/integration/features/provisioning-v1.feature | 12 ++++++++++++ build/integration/features/provisioning-v2.feature | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature index a8501ee887..ad9d901d05 100644 --- a/build/integration/features/provisioning-v1.feature +++ b/build/integration/features/provisioning-v1.feature @@ -306,6 +306,12 @@ Feature: provisioning Then the OCS status code should be "100" And the HTTP status code should be "200" + Scenario: get app info from app that does not exist + Given As an "admin" + When sending "GET" to "/cloud/apps/this_app_should_never_exist" + Then the OCS status code should be "998" + And the HTTP status code should be "200" + Scenario: enable an app Given As an "admin" And app "testing" is disabled @@ -314,6 +320,12 @@ Feature: provisioning And the HTTP status code should be "200" And app "testing" is enabled + Scenario: enable an app that does not exist + Given As an "admin" + When sending "POST" to "/cloud/apps/this_app_should_never_exist" + Then the OCS status code should be "998" + And the HTTP status code should be "200" + Scenario: disable an app Given As an "admin" And app "testing" is enabled diff --git a/build/integration/features/provisioning-v2.feature b/build/integration/features/provisioning-v2.feature index 6140128684..def9b376d2 100644 --- a/build/integration/features/provisioning-v2.feature +++ b/build/integration/features/provisioning-v2.feature @@ -7,3 +7,15 @@ Feature: provisioning When sending "GET" to "/cloud/users/test" Then the HTTP status code should be "404" + Scenario: get app info from app that does not exist + Given As an "admin" + When sending "GET" to "/cloud/apps/this_app_should_never_exist" + Then the OCS status code should be "998" + And the HTTP status code should be "404" + + Scenario: enable an app that does not exist + Given As an "admin" + When sending "POST" to "/cloud/apps/this_app_should_never_exist" + Then the OCS status code should be "998" + And the HTTP status code should be "404" +