summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/1_manage/login/log_into_mattermost_via_gitlab_spec.rb
blob: b1d641b507f454f03929455114e998f7862d2fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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) do
          Page::Main::Login.act { sign_in_using_credentials }

          Runtime::Browser.visit(:mattermost, Page::Mattermost::Login) do
            Page::Mattermost::Login.act { 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
  end
end