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.
34 lines
828 B
34 lines
828 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
RSpec.describe 'Activity' do |
|
describe 'GET /api/v1/instance/activity' do |
|
context 'with activity api enabled' do |
|
before { Setting.activity_api_enabled = true } |
|
|
|
it 'returns http success' do |
|
get api_v1_instance_activity_path |
|
|
|
expect(response) |
|
.to have_http_status(200) |
|
|
|
expect(body_as_json) |
|
.to be_present |
|
.and(be_an(Array)) |
|
.and(have_attributes(size: Api::V1::Instances::ActivityController::WEEKS_OF_ACTIVITY)) |
|
end |
|
end |
|
|
|
context 'with activity api diabled' do |
|
before { Setting.activity_api_enabled = false } |
|
|
|
it 'returns not found' do |
|
get api_v1_instance_activity_path |
|
|
|
expect(response) |
|
.to have_http_status(404) |
|
end |
|
end |
|
end |
|
end
|
|
|