66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe 'API Peers Search' do
 | 
						|
  describe 'GET /api/v1/peers/search' do
 | 
						|
    context 'when peers api is disabled' do
 | 
						|
      before do
 | 
						|
        Setting.peers_api_enabled = false
 | 
						|
      end
 | 
						|
 | 
						|
      it 'returns http not found response' do
 | 
						|
        get '/api/v1/peers/search'
 | 
						|
 | 
						|
        expect(response)
 | 
						|
          .to have_http_status(404)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'with no search param' do
 | 
						|
      it 'returns http success and empty response' do
 | 
						|
        get '/api/v1/peers/search'
 | 
						|
 | 
						|
        expect(response)
 | 
						|
          .to have_http_status(200)
 | 
						|
        expect(response.content_type)
 | 
						|
          .to start_with('application/json')
 | 
						|
        expect(response.parsed_body)
 | 
						|
          .to be_blank
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'with invalid search param' do
 | 
						|
      it 'returns http success and empty response' do
 | 
						|
        get '/api/v1/peers/search', params: { q: 'ftp://Invalid-Host!!.valüe' }
 | 
						|
 | 
						|
        expect(response)
 | 
						|
          .to have_http_status(200)
 | 
						|
        expect(response.content_type)
 | 
						|
          .to start_with('application/json')
 | 
						|
        expect(response.parsed_body)
 | 
						|
          .to be_blank
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'with search param' do
 | 
						|
      let!(:account) { Fabricate(:account, domain: 'host.example') }
 | 
						|
 | 
						|
      before { Instance.refresh }
 | 
						|
 | 
						|
      it 'returns http success and json with known domains' do
 | 
						|
        get '/api/v1/peers/search', params: { q: 'host.example' }
 | 
						|
 | 
						|
        expect(response)
 | 
						|
          .to have_http_status(200)
 | 
						|
        expect(response.content_type)
 | 
						|
          .to start_with('application/json')
 | 
						|
        expect(response.parsed_body)
 | 
						|
          .to contain_exactly(
 | 
						|
            eq(account.domain)
 | 
						|
          )
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |