mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-15 08:48:53 +00:00
Merge commit 'b7bdcd4f395aaa1e85930940975439d10b570f40' into glitch-soc/merge-upstream
This commit is contained in:
@@ -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' } }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user