您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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"