summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/1_manage/login/log_into_mattermost_via_gitlab_spec.rb
blob: 67610b62ed74f9218947a965288ce93f173256fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module QA
  context 'Manage', :orchestrated, :mattermost do
    describe 'Mattermost login' do
      it 'user logs into Mattermost using GitLab OAuth' do
        Runtime::Browser.visit(:gitlab, Page::Main::Login)
        Page::Main::Login.perform(&:sign_in_using_credentials)

        Runtime::Browser.visit(:mattermost, Page::Mattermost::Login)
        Page::Mattermost::Login.perform(&:sign_in_using_oauth)

        Page::Mattermost::Main.perform do |page|
          expect(page).to have_content(/(Welcome to: Mattermost|Logout GitLab Mattermost)/)
        end
      end
    end
  end
end