2017-06-10 09:39:26 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe 'API V1 Statuses Reblogs' do
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user) }
|
2024-01-26 18:45:54 +01:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
|
|
|
let(:scopes) { 'write:statuses' }
|
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
2017-06-10 09:39:26 +02:00
|
|
|
|
2024-01-10 12:06:58 +01:00
|
|
|
context 'with an oauth token' do
|
2024-01-26 18:45:54 +01:00
|
|
|
describe 'POST /api/v1/statuses/:status_id/reblog' do
|
2017-06-10 09:39:26 +02:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
2024-01-26 18:45:54 +01:00
|
|
|
post "/api/v1/statuses/#{status.id}/reblog", headers: headers
|
2017-06-10 09:39:26 +02:00
|
|
|
end
|
|
|
|
|
2020-02-27 12:32:54 +01:00
|
|
|
context 'with public status' do
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'reblogs the status', :aggregate_failures do
|
2020-02-27 12:32:54 +01:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 1
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be true
|
|
|
|
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 10:03:08 +02:00
|
|
|
.to include(
|
|
|
|
reblog: include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 1,
|
|
|
|
reblogged: true
|
|
|
|
)
|
|
|
|
)
|
2020-02-27 12:32:54 +01:00
|
|
|
end
|
2017-06-10 09:39:26 +02:00
|
|
|
end
|
|
|
|
|
2020-02-27 12:32:54 +01:00
|
|
|
context 'with private status of not-followed account' do
|
|
|
|
let(:status) { Fabricate(:status, visibility: :private) }
|
2017-06-10 09:39:26 +02:00
|
|
|
|
2020-02-27 12:32:54 +01:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2017-06-10 09:39:26 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-07-08 18:01:08 +02:00
|
|
|
describe 'POST /api/v1/statuses/:status_id/unreblog', :inline_jobs do
|
2020-02-27 12:32:54 +01:00
|
|
|
context 'with public status' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
2017-06-10 09:39:26 +02:00
|
|
|
|
2020-02-27 12:32:54 +01:00
|
|
|
before do
|
|
|
|
ReblogService.new.call(user.account, status)
|
2024-01-26 18:45:54 +01:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-02-27 12:32:54 +01:00
|
|
|
end
|
2017-06-10 09:39:26 +02:00
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'destroys the reblog', :aggregate_failures do
|
2020-02-27 12:32:54 +01:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 0
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be false
|
2017-06-10 09:39:26 +02:00
|
|
|
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 10:03:08 +02:00
|
|
|
.to include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 0,
|
|
|
|
reblogged: false
|
|
|
|
)
|
2020-02-27 12:32:54 +01:00
|
|
|
end
|
2017-06-10 09:39:26 +02:00
|
|
|
end
|
|
|
|
|
2020-07-15 14:43:19 +02:00
|
|
|
context 'with public status when blocked by its author' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
ReblogService.new.call(user.account, status)
|
|
|
|
status.account.block!(user.account)
|
2024-01-26 18:45:54 +01:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-07-15 14:43:19 +02:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'destroys the reblog', :aggregate_failures do
|
2020-07-15 14:43:19 +02:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 0
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be false
|
|
|
|
|
2024-09-06 11:58:46 +02:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 10:03:08 +02:00
|
|
|
.to include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 0,
|
|
|
|
reblogged: false
|
|
|
|
)
|
2020-07-15 14:43:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-27 12:32:54 +01:00
|
|
|
context 'with private status that was not reblogged' do
|
|
|
|
let(:status) { Fabricate(:status, visibility: :private) }
|
|
|
|
|
|
|
|
before do
|
2024-01-26 18:45:54 +01:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-02-27 12:32:54 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
|
|
|
end
|
2017-06-10 09:39:26 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|