Skip to content
Snippets Groups Projects
Commit 044f09d8 authored by Robert Speicher's avatar Robert Speicher
Browse files

Change `logout` uses to `gitlab_sign_out`

Change `logout_direct` uses to `gitlab_sign_out_direct`
parent 018ed2c4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -519,7 +519,7 @@ describe 'Issue Boards', feature: true, js: true do
 
context 'signed out user' do
before do
logout
gitlab_sign_out
visit namespace_project_board_path(project.namespace, project, board)
wait_for_requests
end
Loading
Loading
@@ -542,7 +542,7 @@ describe 'Issue Boards', feature: true, js: true do
 
before do
project.team << [user_guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(user_guest)
visit namespace_project_board_path(project.namespace, project, board)
wait_for_requests
Loading
Loading
Loading
Loading
@@ -108,7 +108,7 @@ feature 'Group', feature: true do
 
before do
group.add_owner(user)
logout
gitlab_sign_out
gitlab_sign_in(user)
 
visit subgroups_group_path(group)
Loading
Loading
@@ -128,7 +128,7 @@ feature 'Group', feature: true do
it 'checks permissions to avoid exposing groups by parent_id' do
group = create(:group, :private, path: 'secret-group')
 
logout
gitlab_sign_out
gitlab_sign_in(:user)
visit new_group_path(parent_id: group.id)
 
Loading
Loading
Loading
Loading
@@ -41,7 +41,7 @@ feature 'Issues > User uses quick actions', feature: true, js: true do
let(:guest) { create(:user) }
before do
project.team << [guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit namespace_project_issue_path(project.namespace, project, issue)
end
Loading
Loading
@@ -81,7 +81,7 @@ feature 'Issues > User uses quick actions', feature: true, js: true do
let(:guest) { create(:user) }
before do
project.team << [guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit namespace_project_issue_path(project.namespace, project, issue)
end
Loading
Loading
Loading
Loading
@@ -483,7 +483,7 @@ describe 'Issues', feature: true do
end
 
it 'shows assignee text', js: true do
logout
gitlab_sign_out
gitlab_sign_in guest
 
visit namespace_project_issue_path(project.namespace, project, issue)
Loading
Loading
@@ -546,7 +546,7 @@ describe 'Issues', feature: true do
end
 
it 'shows milestone text', js: true do
logout
gitlab_sign_out
gitlab_sign_in guest
 
visit namespace_project_issue_path(project.namespace, project, issue)
Loading
Loading
@@ -560,7 +560,7 @@ describe 'Issues', feature: true do
 
context 'by unauthenticated user' do
before do
logout
gitlab_sign_out
end
 
it 'redirects to signin then back to new issue after signin' do
Loading
Loading
Loading
Loading
@@ -51,7 +51,7 @@ feature 'Merge Requests > User uses quick actions', feature: true, js: true do
let(:guest) { create(:user) }
before do
project.team << [guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit namespace_project_merge_request_path(project.namespace, project, merge_request)
end
Loading
Loading
@@ -97,7 +97,7 @@ feature 'Merge Requests > User uses quick actions', feature: true, js: true do
let(:guest) { create(:user) }
before do
project.team << [guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit namespace_project_merge_request_path(project.namespace, project, merge_request)
end
Loading
Loading
@@ -125,7 +125,7 @@ feature 'Merge Requests > User uses quick actions', feature: true, js: true do
let(:new_url_opts) { { merge_request: { source_branch: 'feature' } } }
 
before do
logout
gitlab_sign_out
another_project.team << [user, :master]
gitlab_sign_in(user)
end
Loading
Loading
@@ -181,7 +181,7 @@ feature 'Merge Requests > User uses quick actions', feature: true, js: true do
let(:guest) { create(:user) }
before do
project.team << [guest, :guest]
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit namespace_project_merge_request_path(project.namespace, project, merge_request)
end
Loading
Loading
Loading
Loading
@@ -209,7 +209,7 @@ describe 'Merge request', :feature, :js do
 
before do
project.team << [user2, :master]
logout
gitlab_sign_out
gitlab_sign_in user2
merge_request.update(target_project: fork_project)
visit namespace_project_merge_request_path(project.namespace, project, merge_request)
Loading
Loading
Loading
Loading
@@ -124,7 +124,7 @@ feature 'issuable templates', feature: true, js: true do
let(:merge_request) { create(:merge_request, :with_diffs, source_project: fork_project, target_project: project) }
 
background do
logout
gitlab_sign_out
project.team << [fork_user, :developer]
fork_project.team << [fork_user, :master]
create(:forked_project_link, forked_to_project: fork_project, forked_from_project: project)
Loading
Loading
Loading
Loading
@@ -392,7 +392,7 @@ feature 'Jobs', :feature do
job.cancel!
project.update(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
 
logout_direct
gitlab_sign_out_direct
gitlab_sign_in(create(:user))
visit namespace_project_job_path(project.namespace, project, job)
end
Loading
Loading
Loading
Loading
@@ -93,7 +93,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
manage_two_factor_authentication
u2f_device = register_u2f_device
expect(page).to have_content('Your U2F device was registered')
logout
gitlab_sign_out
 
# Second user
user = gitlab_sign_in(:user)
Loading
Loading
@@ -152,7 +152,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
visit profile_account_path
manage_two_factor_authentication
@u2f_device = register_u2f_device
logout
gitlab_sign_out
end
 
describe "when 2FA via OTP is disabled" do
Loading
Loading
@@ -200,7 +200,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
visit profile_account_path
manage_two_factor_authentication
register_u2f_device(name: 'My other device')
logout
gitlab_sign_out
 
# Try authenticating user with the old U2F device
gitlab_sign_in(current_user)
Loading
Loading
@@ -218,7 +218,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
visit profile_account_path
manage_two_factor_authentication
register_u2f_device(@u2f_device)
logout
gitlab_sign_out
 
# Try authenticating user with the same U2F device
gitlab_sign_in(current_user)
Loading
Loading
@@ -254,7 +254,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
visit profile_two_factor_auth_path
expect(page).to have_content("Your U2F device needs to be set up.")
second_device = register_u2f_device(name: 'My other device')
logout
gitlab_sign_out
 
# Authenticate as both devices
[first_device, second_device].each do |device|
Loading
Loading
@@ -264,7 +264,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
 
expect(page).to have_css('.sign-out-link', visible: false)
 
logout
gitlab_sign_out
end
end
end
Loading
Loading
@@ -307,7 +307,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
 
describe 'when no u2f device is registered' do
before do
logout
gitlab_sign_out
gitlab_sign_in(user)
end
 
Loading
Loading
@@ -320,7 +320,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
before do
manage_two_factor_authentication
@u2f_device = register_u2f_device
logout
gitlab_sign_out
gitlab_sign_in(user)
end
 
Loading
Loading
Loading
Loading
@@ -105,7 +105,7 @@ shared_examples 'issuable record that supports quick actions in its description
 
context "when current user cannot close #{issuable_type}" do
before do
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit public_send("namespace_project_#{issuable_type}_path", project.namespace, project, issuable)
end
Loading
Loading
@@ -140,7 +140,7 @@ shared_examples 'issuable record that supports quick actions in its description
 
context "when current user cannot reopen #{issuable_type}" do
before do
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit public_send("namespace_project_#{issuable_type}_path", project.namespace, project, issuable)
end
Loading
Loading
@@ -170,7 +170,7 @@ shared_examples 'issuable record that supports quick actions in its description
 
context "when current user cannot change title of #{issuable_type}" do
before do
logout
gitlab_sign_out
gitlab_sign_in(guest)
visit public_send("namespace_project_#{issuable_type}_path", project.namespace, project, issuable)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment