mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 13:36:15 +02:00
100 lines
3.1 KiB
Ruby
100 lines
3.1 KiB
Ruby
require 'test_helper'
|
|
|
|
class ReppV1ContactsListTest < ActionDispatch::IntegrationTest
|
|
def setup
|
|
@user = users(:api_bestnames)
|
|
token = Base64.encode64("#{@user.username}:#{@user.plain_text_password}")
|
|
token = "Basic #{token}"
|
|
|
|
@auth_headers = { 'Authorization' => token }
|
|
|
|
adapter = ENV["shunter_default_adapter"].constantize.new
|
|
adapter&.clear!
|
|
end
|
|
|
|
def test_returns_registrar_contacts
|
|
get repp_v1_contacts_path, headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal @user.registrar.contacts.count, json[:data][:count]
|
|
assert_equal @user.registrar.contacts.count, json[:data][:contacts].length
|
|
|
|
assert json[:data][:contacts][0].is_a? String
|
|
end
|
|
|
|
def test_returns_detailed_registrar_contacts
|
|
get repp_v1_contacts_path(details: true), headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal @user.registrar.contacts.count, json[:data][:count]
|
|
assert_equal @user.registrar.contacts.count, json[:data][:contacts].length
|
|
|
|
assert json[:data][:contacts][0].is_a? Hash
|
|
end
|
|
|
|
def test_respects_limit
|
|
get repp_v1_contacts_path(details: true, limit: 2), headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal 2, json[:data][:contacts].length
|
|
end
|
|
|
|
def test_respects_offset
|
|
offset = 1
|
|
get repp_v1_contacts_path(details: true, offset: offset), headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal (@user.registrar.contacts.count - offset), json[:data][:contacts].length
|
|
end
|
|
|
|
def test_returns_detailed_registrar_contacts_by_search_query
|
|
search_params = {
|
|
ident_type_eq: 'priv',
|
|
}
|
|
get repp_v1_contacts_path(details: true, q: search_params), headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal json[:data][:contacts].length, 3
|
|
assert json[:data][:contacts][0].is_a? Hash
|
|
end
|
|
|
|
def test_returns_detailed_registrar_contacts_by_sort_query
|
|
contact = contacts(:william)
|
|
sort_params = {
|
|
s: 'name desc',
|
|
}
|
|
get repp_v1_contacts_path(details: true, q: sort_params), headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :ok
|
|
|
|
assert_equal @user.registrar.contacts.count, json[:data][:count]
|
|
assert_equal @user.registrar.contacts.count, json[:data][:contacts].length
|
|
assert_equal json[:data][:contacts][0][:code], contact.code
|
|
end
|
|
|
|
def test_returns_error_response_if_throttled
|
|
ENV["shunter_default_threshold"] = '1'
|
|
ENV["shunter_enabled"] = 'true'
|
|
|
|
get repp_v1_contacts_path, headers: @auth_headers
|
|
get repp_v1_contacts_path, headers: @auth_headers
|
|
json = JSON.parse(response.body, symbolize_names: true)
|
|
|
|
assert_response :bad_request
|
|
assert_equal json[:code], 2502
|
|
assert response.body.include?(Shunter.default_error_message)
|
|
ENV["shunter_default_threshold"] = '10000'
|
|
ENV["shunter_enabled"] = 'false'
|
|
end
|
|
end
|