Handle negative offset param in api/v2/search
(#28282)
This commit is contained in:
parent
7b1d390734
commit
c28976d89e
3 changed files with 30 additions and 1 deletions
|
@ -40,7 +40,7 @@ describe 'Search API' do
|
|||
end
|
||||
end
|
||||
|
||||
context 'with `offset`' do
|
||||
context 'with valid `offset` value' do
|
||||
let(:params) { { q: 'test1', offset: 1 } }
|
||||
|
||||
it 'returns http unauthorized' do
|
||||
|
@ -50,6 +50,26 @@ describe 'Search API' do
|
|||
end
|
||||
end
|
||||
|
||||
context 'with negative `offset` value' do
|
||||
let(:params) { { q: 'test1', offset: '-100', type: 'accounts' } }
|
||||
|
||||
it 'returns http bad_request' do
|
||||
get '/api/v2/search', headers: headers, params: params
|
||||
|
||||
expect(response).to have_http_status(400)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with negative `limit` value' do
|
||||
let(:params) { { q: 'test1', limit: '-100', type: 'accounts' } }
|
||||
|
||||
it 'returns http bad_request' do
|
||||
get '/api/v2/search', headers: headers, params: params
|
||||
|
||||
expect(response).to have_http_status(400)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with following=true' do
|
||||
let(:params) { { q: 'test', type: 'accounts', following: 'true' } }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue