1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe DashboardController, feature_category: :system_access do
context 'token authentication' do
it_behaves_like 'authenticates sessionless user for the request spec', 'issues atom', public_resource: false do
let(:url) { issues_dashboard_url(:atom, assignee_username: user.username) }
end
it_behaves_like 'authenticates sessionless user for the request spec', 'issues_calendar ics', public_resource: false do
let(:url) { issues_dashboard_url(:ics, assignee_username: user.username) }
end
end
context 'issues dashboard' do
it_behaves_like 'rate limited endpoint', rate_limit_key: :search_rate_limit do
let_it_be(:current_user) { create(:user) }
before do
sign_in current_user
end
def request
get issues_dashboard_path, params: { scope: 'all', search: 'test' }
end
end
end
context 'merge requests dashboard' do
let_it_be(:current_user) { create(:user) }
it_behaves_like 'rate limited endpoint', rate_limit_key: :search_rate_limit do
before do
sign_in current_user
end
def request
get merge_requests_dashboard_path, params: { scope: 'all', search: 'test' }
end
end
context 'when merge_request_dashboard feature flag is enabled' do
before do
stub_feature_flags(merge_request_dashboard: true)
sign_in current_user
end
it 'redirects to search page with the current query string' do
get merge_requests_dashboard_path, params: { assignee_username: current_user.username }
expect(response).to redirect_to(merge_requests_search_dashboard_path(params: { assignee_username: current_user.username }))
end
end
end
context 'search merge requests dashboard' do
it_behaves_like 'rate limited endpoint', rate_limit_key: :search_rate_limit do
let_it_be(:current_user) { create(:user) }
before do
sign_in current_user
end
def request
get merge_requests_search_dashboard_path, params: { scope: 'all', search: 'test' }
end
end
end
end
|