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

login.rb « page « github « vendor « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4675e33b51437a095034d51893abe5413dfe0c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'capybara/dsl'
require 'benchmark'

module QA
  module Vendor
    module Github
      module Page
        class Login < Page::Base
          def login
            fill_in 'login', with: QA::Runtime::Env.github_username
            fill_in 'password', with: QA::Runtime::Env.github_password
            click_on 'Sign in'

            Support::Retrier.retry_until(raise_on_failure: true, sleep_interval: 35) do
              fresh_otp = nil

              time = Benchmark.realtime do
                fresh_otp = OnePassword::CLI.instance.fresh_otp
              end

              QA::Runtime::Logger.info("Returned fresh_otp: #{fresh_otp} in #{time} seconds")

              fill_in 'otp', with: fresh_otp

              click_on 'Verify'

              !has_text?('Two-factor authentication failed', wait: 1.0)
            end

            click_on 'Authorize gitlab-qa' if has_button?('Authorize gitlab-qa')
          end
        end
      end
    end
  end
end