Commit 35644c23 authored by Sanad Liaquat's avatar Sanad Liaquat

Merge branch 'acunskis-group-comparison-update' into 'master'

E2E: Compare specific group fields

See merge request gitlab-org/gitlab!61970
parents 81e3799e ae6949f1
...@@ -58,15 +58,21 @@ module QA ...@@ -58,15 +58,21 @@ module QA
def comparable_group def comparable_group
reload! if api_response.nil? reload! if api_response.nil?
api_resource.except( api_resource.slice(
:id, :name,
:web_url, :path,
:visibility, :description,
:full_name, :emails_disabled,
:full_path, :lfs_enabled,
:created_at, :mentions_disabled,
:parent_id, :project_creation_level,
:runners_token :request_access_enabled,
:require_two_factor_authentication,
:share_with_group_lock,
:subgroup_creation_level,
:two_factor_grace_perion
# TODO: Add back visibility comparison once https://gitlab.com/gitlab-org/gitlab/-/issues/331252 is fixed
# :visibility
) )
end end
end end
......
...@@ -70,7 +70,9 @@ module QA ...@@ -70,7 +70,9 @@ module QA
it( it(
'performs bulk group import from another gitlab instance', 'performs bulk group import from another gitlab instance',
testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1785', testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1785',
exclude: { job: ['ce:relative_url', 'ee:relative_url'] } # https://gitlab.com/gitlab-org/gitlab/-/issues/330344 exclude: { job: ['ce:relative_url', 'ee:relative_url'] },
issue_1: "https://gitlab.com/gitlab-org/gitlab/-/issues/330344",
issue_2: "https://gitlab.com/gitlab-org/gitlab/-/issues/331252"
) do ) do
Page::Group::BulkImport.perform do |import_page| Page::Group::BulkImport.perform do |import_page|
import_page.import_group(source_group.path, sandbox.path) import_page.import_group(source_group.path, sandbox.path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment