diff options
author | Rydkin Maxim <maks.rydkin@gmail.com> | 2016-12-03 23:26:02 +0300 |
---|---|---|
committer | Rydkin Maxim <maks.rydkin@gmail.com> | 2016-12-08 23:46:45 +0300 |
commit | 4af62042bb7ddeff742a62048438673811e5344a (patch) | |
tree | 3a982b48654bd7d9d60eba977f5d330a50f45cc0 /spec/features | |
parent | 6992ac111713be14b050a72a462eb70d9be35ebc (diff) | |
download | gitlab-ce-4af62042bb7ddeff742a62048438673811e5344a.tar.gz |
remove unnecessary issues event filter on comments tab
fix features_visibility_spec.rb
remove strange part of spec
fix conditions of comments tab disappearing and fix spec
generate changelog
rewrite spec for more coplex check step-by-step
move conditional logic into helper and fix changelog
fix indentation in helper
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/projects/features_visibility_spec.rb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/spec/features/projects/features_visibility_spec.rb b/spec/features/projects/features_visibility_spec.rb index 09aa6758b5c..3bb33394be7 100644 --- a/spec/features/projects/features_visibility_spec.rb +++ b/spec/features/projects/features_visibility_spec.rb @@ -182,6 +182,44 @@ describe 'Edit Project Settings', feature: true do expect(page).not_to have_content("Comments") end end + + # Regression spec for https://gitlab.com/gitlab-org/gitlab-ce/issues/25272 + it "hides comments activity tab only on disabled issues, merge requests and repository" do + select "Disabled", from: "project_project_feature_attributes_issues_access_level" + + save_changes_and_check_activity_tab do + expect(page).to have_content("Comments") + end + + visit edit_namespace_project_path(project.namespace, project) + + select "Disabled", from: "project_project_feature_attributes_merge_requests_access_level" + + save_changes_and_check_activity_tab do + expect(page).to have_content("Comments") + end + + visit edit_namespace_project_path(project.namespace, project) + + select "Disabled", from: "project_project_feature_attributes_repository_access_level" + + save_changes_and_check_activity_tab do + expect(page).not_to have_content("Comments") + end + + visit edit_namespace_project_path(project.namespace, project) + end + + def save_changes_and_check_activity_tab + click_button "Save changes" + wait_for_ajax + + visit activity_namespace_project_path(project.namespace, project) + + page.within(".event-filter") do + yield + end + end end # Regression spec for https://gitlab.com/gitlab-org/gitlab-ce/issues/24056 |