161 lines
4.8 KiB
Ruby
161 lines
4.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
feature 'Dashboard > Activity' do
|
|
let(:user) { create(:user) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
context 'rss' do
|
|
before do
|
|
visit activity_dashboard_path
|
|
end
|
|
|
|
it_behaves_like "it has an RSS button with current_user's feed token"
|
|
it_behaves_like "an autodiscoverable RSS feed with current_user's feed token"
|
|
end
|
|
|
|
context 'event filters', :js do
|
|
let(:project) { create(:project, :repository) }
|
|
|
|
let(:merge_request) do
|
|
create(:merge_request, author: user, source_project: project, target_project: project)
|
|
end
|
|
|
|
let(:note) { create(:note, project: project, noteable: merge_request) }
|
|
let(:milestone) { create(:milestone, :active, project: project, title: '1.0') }
|
|
|
|
let!(:push_event) do
|
|
event = create(:push_event, project: project, author: user)
|
|
|
|
create(:push_event_payload,
|
|
event: event,
|
|
action: :created,
|
|
commit_to: '0220c11b9a3e6c69dc8fd35321254ca9a7b98f7e',
|
|
ref: 'new_design',
|
|
commit_count: 1)
|
|
|
|
event
|
|
end
|
|
|
|
let!(:merged_event) do
|
|
create(:event, :merged, project: project, target: merge_request, author: user)
|
|
end
|
|
|
|
let!(:joined_event) do
|
|
create(:event, :joined, project: project, author: user)
|
|
end
|
|
|
|
let!(:closed_event) do
|
|
create(:event, :closed, project: project, target: merge_request, author: user)
|
|
end
|
|
|
|
let!(:comments_event) do
|
|
create(:event, :commented, project: project, target: note, author: user)
|
|
end
|
|
|
|
let!(:milestone_event) do
|
|
create(:event, :closed, project: project, target: milestone, author: user)
|
|
end
|
|
|
|
before do
|
|
project.add_master(user)
|
|
|
|
visit activity_dashboard_path
|
|
wait_for_requests
|
|
end
|
|
|
|
scenario 'user should see all events' do
|
|
within '.content_list' do
|
|
expect(page).to have_content('pushed new branch')
|
|
expect(page).to have_content('joined')
|
|
expect(page).to have_content('accepted')
|
|
expect(page).to have_content('closed')
|
|
expect(page).to have_content('commented on')
|
|
expect(page).to have_content('closed milestone')
|
|
end
|
|
end
|
|
|
|
scenario 'user should see only pushed events' do
|
|
click_link('Push events')
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).to have_content('pushed new branch')
|
|
expect(page).not_to have_content('joined')
|
|
expect(page).not_to have_content('accepted')
|
|
expect(page).not_to have_content('closed')
|
|
expect(page).not_to have_content('commented on')
|
|
end
|
|
end
|
|
|
|
scenario 'user should see only merged events' do
|
|
click_link('Merge events')
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).not_to have_content('pushed new branch')
|
|
expect(page).not_to have_content('joined')
|
|
expect(page).to have_content('accepted')
|
|
expect(page).not_to have_content('closed')
|
|
expect(page).not_to have_content('commented on')
|
|
end
|
|
end
|
|
|
|
scenario 'user should see only issues events' do
|
|
click_link('Issue events')
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).not_to have_content('pushed new branch')
|
|
expect(page).not_to have_content('joined')
|
|
expect(page).not_to have_content('accepted')
|
|
expect(page).to have_content('closed')
|
|
expect(page).not_to have_content('commented on')
|
|
expect(page).to have_content('closed milestone')
|
|
end
|
|
end
|
|
|
|
scenario 'user should see only comments events' do
|
|
click_link('Comments')
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).not_to have_content('pushed new branch')
|
|
expect(page).not_to have_content('joined')
|
|
expect(page).not_to have_content('accepted')
|
|
expect(page).not_to have_content('closed')
|
|
expect(page).to have_content('commented on')
|
|
end
|
|
end
|
|
|
|
scenario 'user should see only joined events' do
|
|
click_link('Team')
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).not_to have_content('pushed new branch')
|
|
expect(page).to have_content('joined')
|
|
expect(page).not_to have_content('accepted')
|
|
expect(page).not_to have_content('closed')
|
|
expect(page).not_to have_content('commented on')
|
|
end
|
|
end
|
|
|
|
scenario 'user see selected event after page reloading' do
|
|
click_link('Push events')
|
|
wait_for_requests
|
|
visit activity_dashboard_path
|
|
wait_for_requests
|
|
|
|
within '.content_list' do
|
|
expect(page).to have_content('pushed new branch')
|
|
expect(page).not_to have_content('joined')
|
|
expect(page).not_to have_content('accepted')
|
|
expect(page).not_to have_content('closed')
|
|
expect(page).not_to have_content('commented on')
|
|
end
|
|
end
|
|
end
|
|
end
|