Sha256: 5776003c56099d6efc7678facae582710cb91cf31ee393d0e12bbf73d3a687ba
Contents?: true
Size: 1.76 KB
Versions: 10
Compression:
Stored size: 1.76 KB
Contents
describe "User Profile", type: :feature do before do sign_in user end let(:user) { create(:user) } let(:profile_path) { Hyrax::Engine.routes.url_helpers.profile_path(user, locale: 'en') } context 'when clicking all users' do # TODO: Move this to a view test it 'displays all users' do visit profile_path click_link 'View Users' expect(page).to have_xpath("//td/a[@href='#{profile_path}']") end end context 'when visiting user profile with highlighted works' do let(:work) { create(:work, user: user) } before do user.trophies.create!(work_id: work.id) end it 'page should be editable' do visit profile_path expect(page).to have_content(user.email) within '.highlighted-works' do expect(page).to have_link(work.to_s) end within '.panel-user' do click_link 'Edit Profile' end fill_in 'user_twitter_handle', with: 'curatorOfData' click_button 'Save Profile' expect(page).to have_content 'Your profile has been updated' expect(page).to have_link('curatorOfData', href: 'http://twitter.com/curatorOfData') end end context 'user profile' do let!(:dewey) { create(:user, display_name: 'Melvil Dewey') } let(:dewey_path) { Hyrax::Engine.routes.url_helpers.profile_path(dewey, locale: 'en') } it 'is searchable' do visit profile_path click_link 'View Users' expect(page).to have_xpath("//td/a[@href='#{profile_path}']") expect(page).to have_xpath("//td/a[@href='#{dewey_path}']") fill_in 'user_search', with: 'Dewey' click_button "user_submit" expect(page).not_to have_xpath("//td/a[@href='#{profile_path}']") expect(page).to have_xpath("//td/a[@href='#{dewey_path}']") end end end
Version data entries
10 entries across 10 versions & 2 rubygems