gitlab-org--gitlab-foss/spec/features/error_pages_spec.rb

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

50 lines
1.0 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-05-31 21:28:19 +00:00
require 'spec_helper'
RSpec.describe 'Error Pages', :js do
2018-05-31 21:28:19 +00:00
let(:user) { create(:user) }
let(:project) { create(:project, :public) }
before do
sign_in(user)
end
shared_examples 'shows nav links' do
it 'shows nav links' do
expect(page).to have_link("Home", href: root_path)
expect(page).to have_link("Help", href: help_path)
end
it 'allows user to sign out' do
click_link 'Sign out and sign in with a different account'
expect(page).to have_current_path(new_user_session_path)
2018-05-31 21:28:19 +00:00
end
end
describe '404' do
before do
visit '/not-a-real-page'
end
it 'allows user to search' do
fill_in 'search', with: 'something'
click_button 'Search'
expect(page).to have_current_path(%r{^/search\?.*search=something.*})
end
it_behaves_like 'shows nav links'
end
describe '403' do
before do
visit '/'
visit edit_project_path(project)
end
it_behaves_like 'shows nav links'
end
end