Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log_into_gitlab_via_ldap_spec.rb « login « 10_govern « browser_ui « features « specs « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9b9dbb0f2b28d70beee3af800e319f73f072d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module QA
  RSpec.describe 'Govern', :orchestrated, :ldap_no_tls, :ldap_tls, product_group: :authentication_and_authorization do
    describe 'LDAP login' do
      it 'user logs into GitLab using LDAP credentials',
        testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347892' do
        Flow::Login.sign_in

        Page::Main::Menu.perform do |menu|
          expect(menu).to have_personal_area
        end
      end
    end
  end
end