Moved tests into organizations_controller_test.rb.
This commit is contained in:
parent
d2d6fa981c
commit
96e31cd8ae
1 changed files with 0 additions and 32 deletions
|
@ -770,36 +770,4 @@ class UserOrganizationControllerTest < ActionDispatch::IntegrationTest
|
|||
assert_response(401)
|
||||
end
|
||||
|
||||
test 'organization search sortable' do
|
||||
credentials = ActionController::HttpAuthentication::Basic.encode_credentials('rest-admin', 'adminpw')
|
||||
|
||||
get "/api/v1/organizations/search?query=#{CGI.escape('Rest Org')}", params: {}, headers: @headers.merge('Authorization' => credentials)
|
||||
assert_response(200)
|
||||
result = JSON.parse(@response.body)
|
||||
result.collect! { |v| v['id'] }
|
||||
assert_equal(Array, result.class)
|
||||
assert_equal([ @organization.id, @organization2.id, @organization3.id ], result)
|
||||
|
||||
get "/api/v1/organizations/search?query=#{CGI.escape('Rest Org')}", params: { sort_by: 'note', order_by: 'asc' }, headers: @headers.merge('Authorization' => credentials)
|
||||
assert_response(200)
|
||||
result = JSON.parse(@response.body)
|
||||
result.collect! { |v| v['id'] }
|
||||
assert_equal(Array, result.class)
|
||||
assert_equal([ @organization.id, @organization2.id, @organization3.id ], result)
|
||||
|
||||
get "/api/v1/organizations/search?query=#{CGI.escape('Rest Org')}", params: { sort_by: 'note', order_by: 'desc' }, headers: @headers.merge('Authorization' => credentials)
|
||||
assert_response(200)
|
||||
result = JSON.parse(@response.body)
|
||||
result.collect! { |v| v['id'] }
|
||||
assert_equal(Array, result.class)
|
||||
assert_equal([ @organization3.id, @organization2.id, @organization.id ], result)
|
||||
|
||||
get "/api/v1/organizations/search?query=#{CGI.escape('Rest Org')}", params: { sort_by: %w[note created_at], order_by: %w[desc asc] }, headers: @headers.merge('Authorization' => credentials)
|
||||
assert_response(200)
|
||||
result = JSON.parse(@response.body)
|
||||
result.collect! { |v| v['id'] }
|
||||
assert_equal(Array, result.class)
|
||||
assert_equal([ @organization3.id, @organization2.id, @organization.id ], result)
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue