diff options
author | Robert Speicher <robert@gitlab.com> | 2018-09-11 18:15:06 +0000 |
---|---|---|
committer | Thiago Presa <tpresa@gitlab.com> | 2018-09-11 15:31:48 -0300 |
commit | 54701ab047cf4e8c6d1a71c9097a47b069724872 (patch) | |
tree | 65b8114c32b99a5a8f304713785244923b96f3df /spec | |
parent | 24881c51369f32714f53bf8c3245d5b46895839d (diff) | |
download | gitlab-ce-54701ab047cf4e8c6d1a71c9097a47b069724872.tar.gz |
Merge branch '51375-fix-activity-pages' into 'master'
Fix the group and project activity pages
Closes #51375
See merge request gitlab-org/gitlab-ce!21674
Diffstat (limited to 'spec')
-rw-r--r-- | spec/features/projects/activity/user_sees_private_activity_spec.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/features/projects/activity/user_sees_private_activity_spec.rb b/spec/features/projects/activity/user_sees_private_activity_spec.rb new file mode 100644 index 00000000000..d7dc0a6712a --- /dev/null +++ b/spec/features/projects/activity/user_sees_private_activity_spec.rb @@ -0,0 +1,35 @@ +require 'spec_helper' + +describe 'Project > Activity > User sees private activity', :js do + let(:project) { create(:project, :public) } + let(:author) { create(:user) } + let(:user) { create(:user) } + let(:issue) { create(:issue, :confidential, project: project, author: author) } + let(:message) { "#{author.name} opened issue #{issue.to_reference}" } + + before do + project.add_developer(author) + + create(:event, :created, project: project, target: issue, author: author) + end + + it 'shows the activity to a logged-in user with permissions' do + sign_in(author) + visit activity_project_path(project) + + expect(page).to have_content(message) + end + + it 'hides the activity from a logged-in user without permissions' do + sign_in(user) + visit activity_project_path(project) + + expect(page).not_to have_content(message) + end + + it 'hides the activity from an anonymous user' do + visit activity_project_path(project) + + expect(page).not_to have_content(message) + end +end |