Commit 75245f34 authored by Grzegorz Bizon's avatar Grzegorz Bizon

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
......@@ -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
......
......@@ -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
......
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment