summaryrefslogtreecommitdiff
path: root/features/steps/shared/authentication.rb
blob: 27dd391b83dc4e60b254f61450032a728afc32da (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require Rails.root.join('features', 'support', 'login_helpers')

module SharedAuthentication
  include Spinach::DSL
  include LoginHelpers

  step 'I sign in as a user' do
    sign_out(@user) if @user

    @user = create(:user)
    sign_in(@user)
  end

  step 'I sign in via the UI' do
    gitlab_sign_in(create(:user))
  end

  step 'I sign in as an admin' do
    sign_out(@user) if @user

    @user = create(:admin)
    sign_in(@user)
  end

  step 'I should be redirected to sign in page' do
    expect(current_path).to eq new_user_session_path
  end

  step "I logout directly" do
    gitlab_sign_out
  end

  def current_user
    @user || User.reorder(nil).first
  end

  private

  def gitlab_sign_in(user)
    visit new_user_session_path

    fill_in "user_login", with: user.email
    fill_in "user_password", with: "12345678"
    check 'user_remember_me'
    click_button "Sign in"

    @user = user
  end

  def gitlab_sign_out
    return unless @user

    if Capybara.current_driver == Capybara.javascript_driver
      find('.header-user-dropdown-toggle').click
      click_link 'Sign out'
      expect(page).to have_button('Sign in')
    else
      sign_out(@user)
    end

    @user = nil
  end
end