aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration/features/ocs-v1.feature
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-09-07 14:21:52 +0200
committerGitHub <noreply@github.com>2016-09-07 14:21:52 +0200
commitc8ec237cbe4dca8c5e8dbc0f21256c230f0135ca (patch)
treea3e21810af220b050cd466c226cdff5007972352 /build/integration/features/ocs-v1.feature
parent0027304b5fc0a92106dca948b72b6fad04b91299 (diff)
parent19ecacd57e9f99736657fb0296a589ed5681da6a (diff)
downloadnextcloud-server-c8ec237cbe4dca8c5e8dbc0f21256c230f0135ca.tar.gz
nextcloud-server-c8ec237cbe4dca8c5e8dbc0f21256c230f0135ca.zip
Merge pull request #1300 from nextcloud/fix_ocs_content_type
Set proper content type on OCS responses
Diffstat (limited to 'build/integration/features/ocs-v1.feature')
-rw-r--r--build/integration/features/ocs-v1.feature24
1 files changed, 24 insertions, 0 deletions
diff --git a/build/integration/features/ocs-v1.feature b/build/integration/features/ocs-v1.feature
new file mode 100644
index 00000000000..6075189ddb4
--- /dev/null
+++ b/build/integration/features/ocs-v1.feature
@@ -0,0 +1,24 @@
+Feature: ocs
+ Background:
+ Given using api version "1"
+
+ Scenario: Default output is xml
+ Given user "user0" exists
+ And As an "user0"
+ When sending "GET" to "/cloud/config"
+ And the HTTP status code should be "200"
+ And the Content-Type should be "text/xml; charset=UTF-8"
+
+ Scenario: Get XML when requesting XML
+ Given user "user0" exists
+ And As an "user0"
+ When sending "GET" to "/cloud/config?format=xml"
+ And the HTTP status code should be "200"
+ And the Content-Type should be "text/xml; charset=UTF-8"
+
+ Scenario: Get JSON when requesting JSON
+ Given user "user0" exists
+ And As an "user0"
+ When sending "GET" to "/cloud/config?format=json"
+ And the HTTP status code should be "200"
+ And the Content-Type should be "application/json; charset=utf-8"