summaryrefslogtreecommitdiffstats
path: root/build/integration/ldap_features
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2017-01-19 15:19:20 +0100
committerArthur Schiwon <blizzz@arthur-schiwon.de>2017-01-19 15:19:20 +0100
commit1f7b08bd19dd37bec73903679b3e0bfdaed71927 (patch)
treebe790bbce3d66cdeb4e0137c29bcea7909a7cb89 /build/integration/ldap_features
parentf2c9d04eac7c0875040b3e46cc1dccc7d290789f (diff)
downloadnextcloud-server-1f7b08bd19dd37bec73903679b3e0bfdaed71927.tar.gz
nextcloud-server-1f7b08bd19dd37bec73903679b3e0bfdaed71927.zip
LDAP OCS Api for show config
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'build/integration/ldap_features')
-rw-r--r--build/integration/ldap_features/ldap-ocs.feature22
1 files changed, 22 insertions, 0 deletions
diff --git a/build/integration/ldap_features/ldap-ocs.feature b/build/integration/ldap_features/ldap-ocs.feature
index d925df3256d..df643b8a01c 100644
--- a/build/integration/ldap_features/ldap-ocs.feature
+++ b/build/integration/ldap_features/ldap-ocs.feature
@@ -46,3 +46,25 @@ Feature: LDAP
| value | ldaps://my.ldap.server |
Then the OCS status code should be "404"
And the HTTP status code should be "404"
+
+ Scenario: create, modify and get a configuration
+ Given As an "admin"
+ And creating an LDAP configuration at "/apps/user_ldap/api/v1/config"
+ And setting "ldapHost" of the LDAP configuration to "ldaps://my.ldap.server"
+ And setting "ldapLoginFilter" of the LDAP configuration to "(&(|(objectclass=inetOrgPerson))(uid=%uid))"
+ And setting "ldapAgentPassword" of the LDAP configuration to "psst,secret"
+ When getting the LDAP configuration with showPassword "0"
+ Then the OCS status code should be "200"
+ And the HTTP status code should be "200"
+ And the response should contain a tag "ldapHost" with value "ldaps://my.ldap.server"
+ And the response should contain a tag "ldapLoginFilter" with value "(&(|(objectclass=inetOrgPerson))(uid=%uid))"
+ And the response should contain a tag "ldapAgentPassword" with value "***"
+
+ Scenario: receiving password in plain text
+ Given As an "admin"
+ And creating an LDAP configuration at "/apps/user_ldap/api/v1/config"
+ And setting "ldapAgentPassword" of the LDAP configuration to "psst,secret"
+ When getting the LDAP configuration with showPassword "1"
+ Then the OCS status code should be "200"
+ And the HTTP status code should be "200"
+ And the response should contain a tag "ldapAgentPassword" with value "psst,secret"