2018-10-04 03:55:37 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'Overview tab on a user profile', :js do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:contributed_project) { create(:project, :public, :repository) }
|
|
|
|
|
|
|
|
def push_code_contribution
|
|
|
|
event = create(:push_event, project: contributed_project, author: user)
|
|
|
|
|
|
|
|
create(:push_event_payload,
|
|
|
|
event: event,
|
|
|
|
commit_from: '11f9ac0a48b62cef25eedede4c1819964f08d5ce',
|
|
|
|
commit_to: '1cf19a015df3523caf0a1f9d40c98a267d6a2fc2',
|
|
|
|
commit_count: 3,
|
|
|
|
ref: 'master')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'activities section' do
|
|
|
|
shared_context 'visit overview tab' do
|
|
|
|
before do
|
|
|
|
visit user.username
|
|
|
|
page.find('.js-overview-tab a').click
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'user has no activities' do
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
|
|
|
it 'does not show any entries in the list of activities' do
|
|
|
|
page.within('.activities-block') do
|
2019-01-02 04:58:27 -05:00
|
|
|
expect(page).to have_selector('.loading', visible: false)
|
2019-02-06 04:11:39 -05:00
|
|
|
expect(page).to have_content('Join or create a group to start contributing by commenting on issues or submitting merge requests!')
|
2018-10-04 03:55:37 -04:00
|
|
|
expect(page).not_to have_selector('.event-item')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show a link to the activity list' do
|
|
|
|
expect(find('#js-overview .activities-block')).to have_selector('.js-view-all', visible: false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'user has 3 activities' do
|
|
|
|
before do
|
|
|
|
3.times { push_code_contribution }
|
|
|
|
end
|
|
|
|
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
|
|
|
it 'display 3 entries in the list of activities' do
|
|
|
|
expect(find('#js-overview')).to have_selector('.event-item', count: 3)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-20 03:37:33 -05:00
|
|
|
describe 'user has 11 activities' do
|
2018-10-04 03:55:37 -04:00
|
|
|
before do
|
2018-11-20 03:37:33 -05:00
|
|
|
11.times { push_code_contribution }
|
2018-10-04 03:55:37 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
2018-11-20 03:37:33 -05:00
|
|
|
it 'displays 10 entries in the list of activities' do
|
|
|
|
expect(find('#js-overview')).to have_selector('.event-item', count: 10)
|
2018-10-04 03:55:37 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a link to the activity list' do
|
|
|
|
expect(find('#js-overview .activities-block')).to have_selector('.js-view-all', visible: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'links to the activity tab' do
|
|
|
|
page.within('.activities-block') do
|
|
|
|
find('.js-view-all').click
|
|
|
|
wait_for_requests
|
|
|
|
expect(URI.parse(current_url).path).to eq("/users/#{user.username}/activity")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'projects section' do
|
|
|
|
shared_context 'visit overview tab' do
|
|
|
|
before do
|
|
|
|
visit user.username
|
|
|
|
page.find('.js-overview-tab a').click
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'user has no personal projects' do
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
|
|
|
it 'it shows an empty project list with an info message' do
|
|
|
|
page.within('.projects-block') do
|
2019-01-02 04:58:27 -05:00
|
|
|
expect(page).to have_selector('.loading', visible: false)
|
2019-02-06 04:11:39 -05:00
|
|
|
expect(page).to have_content('You haven\'t created any personal projects.')
|
2018-10-04 03:55:37 -04:00
|
|
|
expect(page).not_to have_selector('.project-row')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show a link to the project list' do
|
|
|
|
expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'user has a personal project' do
|
2018-10-15 09:10:42 -04:00
|
|
|
before do
|
|
|
|
create(:project, :private, namespace: user.namespace, creator: user) { |p| p.add_maintainer(user) }
|
|
|
|
end
|
2018-10-04 03:55:37 -04:00
|
|
|
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
|
|
|
it 'it shows one entry in the list of projects' do
|
|
|
|
page.within('.projects-block') do
|
|
|
|
expect(page).to have_selector('.project-row', count: 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a link to the project list' do
|
|
|
|
expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: true)
|
|
|
|
end
|
2018-12-19 14:37:08 -05:00
|
|
|
|
|
|
|
it 'shows projects in "compact mode"' do
|
|
|
|
page.within('#js-overview .projects-block') do
|
|
|
|
expect(find('.js-projects-list-holder')).to have_selector('.compact')
|
|
|
|
end
|
|
|
|
end
|
2018-10-04 03:55:37 -04:00
|
|
|
end
|
2018-10-15 09:10:42 -04:00
|
|
|
|
|
|
|
describe 'user has more than ten personal projects' do
|
|
|
|
before do
|
|
|
|
create_list(:project, 11, :private, namespace: user.namespace, creator: user) do |project|
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
include_context 'visit overview tab'
|
|
|
|
|
|
|
|
it 'it shows max. ten entries in the list of projects' do
|
|
|
|
page.within('.projects-block') do
|
|
|
|
expect(page).to have_selector('.project-row', count: 10)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a link to the project list' do
|
|
|
|
expect(find('#js-overview .projects-block')).to have_selector('.js-view-all', visible: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show pagination' do
|
|
|
|
page.within('.projects-block') do
|
|
|
|
expect(page).not_to have_selector('.gl-pagination')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-10-04 03:55:37 -04:00
|
|
|
end
|
|
|
|
end
|