2023-02-21 16:55:31 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-07 14:44:58 -07:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-01 08:24:45 -08:00
|
|
|
RSpec.describe 'API V1 Conversations' do
|
2022-01-27 15:46:42 -08:00
|
|
|
let!(:user) { Fabricate(:user, account_attributes: { username: 'alice' }) }
|
2024-03-01 08:24:45 -08: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 14:44:58 -07:00
|
|
|
|
2024-03-01 08:24:45 -08:00
|
|
|
let(:other) { Fabricate(:user) }
|
2018-10-07 14:44:58 -07:00
|
|
|
|
2024-07-08 09:01:08 -07:00
|
|
|
describe 'GET /api/v1/conversations', :inline_jobs do
|
2018-10-07 14:44:58 -07:00
|
|
|
before do
|
2024-03-07 06:53:37 -08:00
|
|
|
user.account.follow!(other.account)
|
2019-01-05 03:43:28 -08:00
|
|
|
PostStatusService.new.call(other.account, text: 'Hey @alice', visibility: 'direct')
|
2023-06-20 09:32:26 -07:00
|
|
|
PostStatusService.new.call(user.account, text: 'Hey, nobody here', visibility: 'direct')
|
2018-10-07 14:44:58 -07:00
|
|
|
end
|
|
|
|
|
2023-10-13 05:42:09 -07:00
|
|
|
it 'returns pagination headers', :aggregate_failures do
|
2024-03-01 08:24:45 -08:00
|
|
|
get '/api/v1/conversations', params: { limit: 1 }, headers: headers
|
2023-10-13 05:42:09 -07:00
|
|
|
|
|
|
|
expect(response).to have_http_status(200)
|
2018-10-07 14:44:58 -07:00
|
|
|
expect(response.headers['Link'].links.size).to eq(2)
|
|
|
|
end
|
|
|
|
|
2023-10-13 05:42:09 -07:00
|
|
|
it 'returns conversations', :aggregate_failures do
|
2024-03-01 08:24:45 -08: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 14:44:58 -07:00
|
|
|
end
|
2023-06-13 23:54:52 -07:00
|
|
|
|
|
|
|
context 'with since_id' do
|
|
|
|
context 'when requesting old posts' do
|
|
|
|
it 'returns conversations' do
|
2024-03-01 08:24:45 -08: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-13 23:54:52 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when requesting posts in the future' do
|
|
|
|
it 'returns no conversation' do
|
2024-03-01 08:24:45 -08: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-13 23:54:52 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-10-07 14:44:58 -07:00
|
|
|
end
|
|
|
|
end
|