You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

provisioning-v2.feature 694B

123456789101112131415161718192021
  1. Feature: provisioning
  2. Background:
  3. Given using api version "2"
  4. Scenario: Getting an not existing user
  5. Given As an "admin"
  6. When sending "GET" to "/cloud/users/test"
  7. Then the HTTP status code should be "404"
  8. Scenario: get app info from app that does not exist
  9. Given As an "admin"
  10. When sending "GET" to "/cloud/apps/this_app_should_never_exist"
  11. Then the OCS status code should be "998"
  12. And the HTTP status code should be "404"
  13. Scenario: enable an app that does not exist
  14. Given As an "admin"
  15. When sending "POST" to "/cloud/apps/this_app_should_never_exist"
  16. Then the OCS status code should be "998"
  17. And the HTTP status code should be "404"