提交 044f09d8 编写于 作者: R Robert Speicher

Change `logout` uses to `gitlab_sign_out`

Change `logout_direct` uses to `gitlab_sign_out_direct`
上级 018ed2c4
......@@ -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
......@@ -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
......
......@@ -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)
......@@ -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)
......
......@@ -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
......@@ -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
......
......@@ -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)
......@@ -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)
......@@ -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
......
......@@ -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
......@@ -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
......@@ -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
......@@ -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
......
......@@ -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)
......
......@@ -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)
......
......@@ -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
......
......@@ -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)
......@@ -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
......@@ -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)
......@@ -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)
......@@ -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|
......@@ -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
......@@ -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
......@@ -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
......
......@@ -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
......@@ -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
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册