2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-07 23:44:58 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-01 17:24:45 +01:00
|
|
|
RSpec.describe 'API V1 Conversations' do
|
2022-01-28 00:46:42 +01:00
|
|
|
let!(:user) { Fabricate(:user, account_attributes: { username: 'alice' }) }
|
2024-03-01 17:24:45 +01:00
|
|
|
let(:scopes) { 'read:statuses' }
|
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
2018-10-07 23:44:58 +02:00
|
|
|
|
2024-03-01 17:24:45 +01:00
|
|
|
let(:other) { Fabricate(:user) }
|
2018-10-07 23:44:58 +02:00
|
|
|
|
2024-07-08 18:01:08 +02:00
|
|
|
describe 'GET /api/v1/conversations', :inline_jobs do
|
2018-10-07 23:44:58 +02:00
|
|
|
before do
|
2024-03-07 15:53:37 +01:00
|
|
|
user.account.follow!(other.account)
|
2019-01-05 12:43:28 +01:00
|
|
|
PostStatusService.new.call(other.account, text: 'Hey @alice', visibility: 'direct')
|
2023-06-20 18:32:26 +02:00
|
|
|
PostStatusService.new.call(user.account, text: 'Hey, nobody here', visibility: 'direct')
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'returns pagination headers', :aggregate_failures do
|
2024-03-01 17:24:45 +01:00
|
|
|
get '/api/v1/conversations', params: { limit: 1 }, headers: headers
|
2023-10-13 14:42:09 +02:00
|
|
|
|
2024-07-12 10:30:52 +02:00
|
|
|
expect(response)
|
|
|
|
.to have_http_status(200)
|
|
|
|
.and include_pagination_headers(
|
|
|
|
prev: api_v1_conversations_url(limit: 1, min_id: Status.first.id),
|
|
|
|
next: api_v1_conversations_url(limit: 1, max_id: Status.first.id)
|
|
|
|
)
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'returns conversations', :aggregate_failures do
|
2024-03-01 17:24:45 +01:00
|
|
|
get '/api/v1/conversations', headers: headers
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 2
|
|
|
|
expect(body_as_json[0][:accounts].size).to eq 1
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
2023-06-14 08:54:52 +02:00
|
|
|
|
|
|
|
context 'with since_id' do
|
|
|
|
context 'when requesting old posts' do
|
|
|
|
it 'returns conversations' do
|
2024-03-01 17:24:45 +01:00
|
|
|
get '/api/v1/conversations', params: { since_id: Mastodon::Snowflake.id_at(1.hour.ago, with_random: false) }, headers: headers
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 2
|
2023-06-14 08:54:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when requesting posts in the future' do
|
|
|
|
it 'returns no conversation' do
|
2024-03-01 17:24:45 +01:00
|
|
|
get '/api/v1/conversations', params: { since_id: Mastodon::Snowflake.id_at(1.hour.from_now, with_random: false) }, headers: headers
|
|
|
|
|
|
|
|
expect(body_as_json.size).to eq 0
|
2023-06-14 08:54:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-10-07 23:44:58 +02:00
|
|
|
end
|
|
|
|
end
|