Skip to content
代码片段 群组 项目
提交 c1d01957 编辑于 作者: Ramya Authappan's avatar Ramya Authappan
浏览文件

Merge branch 'qa-shl-enable-2fa-spec-to-run-on-live-env' into 'master'

E2E: Enable login with 2FA specs to run on live environments

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/126660



Merged-by: default avatarRamya Authappan <rauthappan@gitlab.com>
Approved-by: default avatarRamya Authappan <rauthappan@gitlab.com>
Co-authored-by: default avatarSanad Liaquat (Personal) <sliaquat@gitlab.com>
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true # frozen_string_literal: true
module QA module QA
RSpec.describe 'Manage', :requires_admin, :skip_live_env, product_group: :authentication_and_authorization do RSpec.describe 'Manage', :requires_admin, product_group: :authentication_and_authorization do
describe '2FA' do describe '2FA' do
let(:admin_api_client) { Runtime::API::Client.as_admin } let(:admin_api_client) { Runtime::API::Client.as_admin }
let(:owner_api_client) { Runtime::API::Client.new(:gitlab, user: owner_user) } let(:owner_api_client) { Runtime::API::Client.new(:gitlab, user: owner_user) }
...@@ -14,6 +14,7 @@ module QA ...@@ -14,6 +14,7 @@ module QA
end end
let(:sandbox_group) do let(:sandbox_group) do
Flow::Login.sign_in(as: owner_user)
Resource::Sandbox.fabricate! do |sandbox_group| Resource::Sandbox.fabricate! do |sandbox_group|
sandbox_group.path = "gitlab-qa-2fa-sandbox-group-#{SecureRandom.hex(8)}" sandbox_group.path = "gitlab-qa-2fa-sandbox-group-#{SecureRandom.hex(8)}"
sandbox_group.api_client = owner_api_client sandbox_group.api_client = owner_api_client
...@@ -43,12 +44,7 @@ module QA ...@@ -43,12 +44,7 @@ module QA
it( it(
'allows enforcing 2FA via UI and logging in with 2FA', 'allows enforcing 2FA via UI and logging in with 2FA',
testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347931', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/347931'
quarantine: {
type: :bug,
only: { condition: -> { !QA::Runtime::Env.super_sidebar_enabled? } },
issue: 'https://gitlab.com/gitlab-org/gitlab/-/issues/409336'
}
) do ) do
enforce_two_factor_authentication_on_group(group) enforce_two_factor_authentication_on_group(group)
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册