debian-mirror-gitlab/spec/features/projects/activity/user_sees_private_activity_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-11-20 20:47:30 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Project > Activity > User sees private activity', :js do
2018-11-20 20:47:30 +05:30
let(:project) { create(:project, :public) }
let(:author) { create(:user) }
let(:user) { create(:user) }
let(:issue) { create(:issue, :confidential, project: project, author: author) }
2018-12-13 13:39:08 +05:30
let(:message) { "#{author.name} #{author.to_reference} opened issue #{issue.to_reference}" }
2018-11-20 20:47:30 +05:30
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