You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
822 B
39 lines
822 B
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Peers' do
|
|
describe 'GET /api/v1/instance/peers' do
|
|
around do |example|
|
|
original = Setting.peers_api_enabled
|
|
example.run
|
|
Setting.peers_api_enabled = original
|
|
end
|
|
|
|
context 'with peers api enabled' do
|
|
before { Setting.peers_api_enabled = true }
|
|
|
|
it 'returns http success' do
|
|
get api_v1_instance_peers_path
|
|
|
|
expect(response)
|
|
.to have_http_status(200)
|
|
|
|
expect(body_as_json)
|
|
.to be_an(Array)
|
|
end
|
|
end
|
|
|
|
context 'with peers api diabled' do
|
|
before { Setting.peers_api_enabled = false }
|
|
|
|
it 'returns http not found' do
|
|
get api_v1_instance_peers_path
|
|
|
|
expect(response)
|
|
.to have_http_status(404)
|
|
end
|
|
end
|
|
end
|
|
end
|