debian-mirror-gitlab/spec/features/profiles/user_visits_profile_spec.rb

65 lines
1.3 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'User visits their profile' do
2018-03-17 18:26:18 +05:30
let(:user) { create(:user) }
before do
sign_in(user)
end
it 'shows correct menu item' do
2018-03-27 19:54:05 +05:30
visit(profile_path)
2018-03-17 18:26:18 +05:30
expect(page).to have_active_navigation('Profile')
end
2018-03-27 19:54:05 +05:30
it 'shows profile info' do
visit(profile_path)
expect(page).to have_content "This information will appear on your profile"
end
context 'when user has groups' do
let(:group) do
create :group do |group|
group.add_owner(user)
end
end
let!(:project) do
create(:project, :repository, namespace: group) do |project|
create(:closed_issue_event, project: project)
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-27 19:54:05 +05:30
end
end
def click_on_profile_picture
find(:css, '.header-user-dropdown-toggle').click
page.within ".header-user" do
click_link "Profile"
end
end
it 'shows user groups', :js do
visit(profile_path)
click_on_profile_picture
page.within ".cover-block" do
expect(page).to have_content user.name
expect(page).to have_content user.username
end
page.within ".content" do
click_link "Groups"
end
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
page.within "#groups" do
expect(page).to have_content group.name
end
2018-03-17 18:26:18 +05:30
end
end
end