Skip to content
Snippets Groups Projects
Commit 75245f34 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Merge branch 'sh-add-env-variables-for-ldap-qa' into 'master'

Add LDAP_USERNAME and LDAP_PASSWORD user environment variables for QA

See merge request gitlab-org/gitlab-ce!17141
parents 522a79ad 07b6ad35
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -53,8 +53,8 @@ module QA
 
click_link 'LDAP'
 
fill_in :username, with: Runtime::User.name
fill_in :password, with: Runtime::User.password
fill_in :username, with: Runtime::User.ldap_username
fill_in :password, with: Runtime::User.ldap_password
click_button 'Sign in'
end
end
Loading
Loading
Loading
Loading
@@ -35,6 +35,14 @@ module QA
ENV['GITLAB_PASSWORD']
end
 
def ldap_username
ENV['GITLAB_LDAP_USERNAME']
end
def ldap_password
ENV['GITLAB_LDAP_PASSWORD']
end
def sandbox_name
ENV['GITLAB_SANDBOX_NAME']
end
Loading
Loading
Loading
Loading
@@ -18,6 +18,14 @@ module QA
def ldap_user?
Runtime::Env.user_type == 'ldap'
end
def ldap_username
Runtime::Env.ldap_username || name
end
def ldap_password
Runtime::Env.ldap_password || password
end
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment