2023-03-05 03:12:54 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-01-27 04:40:39 +11:00
|
|
|
RSpec.describe 'API V1 Trends Links' do
|
|
|
|
describe 'GET /api/v1/trends/links' do
|
2023-11-14 01:32:36 +11:00
|
|
|
context 'when trends are disabled' do
|
|
|
|
before { Setting.trends = false }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2024-01-27 04:40:39 +11:00
|
|
|
get '/api/v1/trends/links'
|
2023-11-14 01:32:36 +11:00
|
|
|
|
2024-09-18 18:22:07 +10:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and not_have_http_link_header
|
2024-09-20 23:13:04 +10:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2023-11-14 01:32:36 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when trends are enabled' do
|
|
|
|
before { Setting.trends = true }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
prepare_trends
|
|
|
|
stub_const('Api::V1::Trends::LinksController::DEFAULT_LINKS_LIMIT', 2)
|
2024-01-27 04:40:39 +11:00
|
|
|
get '/api/v1/trends/links'
|
2023-11-14 01:32:36 +11:00
|
|
|
|
2024-09-18 18:22:07 +10:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and have_http_link_header(api_v1_trends_links_url(offset: 2)).for(rel: 'next')
|
2024-09-20 23:13:04 +10:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2023-11-14 01:32:36 +11:00
|
|
|
end
|
2023-03-05 03:12:54 +11:00
|
|
|
|
2023-11-14 01:32:36 +11:00
|
|
|
def prepare_trends
|
|
|
|
Fabricate.times(3, :preview_card, trendable: true, language: 'en').each do |link|
|
|
|
|
2.times { |i| Trends.links.add(link, i) }
|
|
|
|
end
|
|
|
|
Trends::Links.new(threshold: 1).refresh
|
|
|
|
end
|
2023-03-05 03:12:54 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|