2017-06-10 07:39:26 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe 'API V1 Statuses Reblogs' do
|
2022-01-27 23:46:42 +00:00
|
|
|
let(:user) { Fabricate(:user) }
|
2024-01-26 17:45:54 +00: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 07:39:26 +00:00
|
|
|
|
2024-01-10 11:06:58 +00:00
|
|
|
context 'with an oauth token' do
|
2024-01-26 17:45:54 +00:00
|
|
|
describe 'POST /api/v1/statuses/:status_id/reblog' do
|
2017-06-10 07:39:26 +00:00
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
|
|
|
|
before do
|
2024-01-26 17:45:54 +00:00
|
|
|
post "/api/v1/statuses/#{status.id}/reblog", headers: headers
|
2017-06-10 07:39:26 +00:00
|
|
|
end
|
|
|
|
|
2020-02-27 11:32:54 +00:00
|
|
|
context 'with public status' do
|
2023-10-13 12:42:09 +00:00
|
|
|
it 'reblogs the status', :aggregate_failures do
|
2020-02-27 11:32:54 +00:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 13:13:04 +00:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2020-02-27 11:32:54 +00:00
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 1
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be true
|
|
|
|
|
2024-09-06 09:58:46 +00:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 08:03:08 +00:00
|
|
|
.to include(
|
|
|
|
reblog: include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 1,
|
|
|
|
reblogged: true
|
|
|
|
)
|
|
|
|
)
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
2017-06-10 07:39:26 +00:00
|
|
|
end
|
|
|
|
|
2020-02-27 11:32:54 +00:00
|
|
|
context 'with private status of not-followed account' do
|
|
|
|
let(:status) { Fabricate(:status, visibility: :private) }
|
2017-06-10 07:39:26 +00:00
|
|
|
|
2020-02-27 11:32:54 +00:00
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
2024-09-20 13:13:04 +00:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
2017-06-10 07:39:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-07-08 16:01:08 +00:00
|
|
|
describe 'POST /api/v1/statuses/:status_id/unreblog', :inline_jobs do
|
2020-02-27 11:32:54 +00:00
|
|
|
context 'with public status' do
|
|
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
2017-06-10 07:39:26 +00:00
|
|
|
|
2020-02-27 11:32:54 +00:00
|
|
|
before do
|
|
|
|
ReblogService.new.call(user.account, status)
|
2024-01-26 17:45:54 +00:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
2017-06-10 07:39:26 +00:00
|
|
|
|
2023-10-13 12:42:09 +00:00
|
|
|
it 'destroys the reblog', :aggregate_failures do
|
2020-02-27 11:32:54 +00:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 13:13:04 +00:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2020-02-27 11:32:54 +00:00
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 0
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be false
|
2017-06-10 07:39:26 +00:00
|
|
|
|
2024-09-06 09:58:46 +00:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 08:03:08 +00:00
|
|
|
.to include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 0,
|
|
|
|
reblogged: false
|
|
|
|
)
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
2017-06-10 07:39:26 +00:00
|
|
|
end
|
|
|
|
|
2020-07-15 12:43:19 +00: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 17:45:54 +00:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-07-15 12:43:19 +00:00
|
|
|
end
|
|
|
|
|
2023-10-13 12:42:09 +00:00
|
|
|
it 'destroys the reblog', :aggregate_failures do
|
2020-07-15 12:43:19 +00:00
|
|
|
expect(response).to have_http_status(200)
|
2024-09-20 13:13:04 +00:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2020-07-15 12:43:19 +00:00
|
|
|
|
|
|
|
expect(status.reblogs.count).to eq 0
|
|
|
|
|
|
|
|
expect(user.account.reblogged?(status)).to be false
|
|
|
|
|
2024-09-06 09:58:46 +00:00
|
|
|
expect(response.parsed_body)
|
2024-09-03 08:03:08 +00:00
|
|
|
.to include(
|
|
|
|
id: status.id.to_s,
|
|
|
|
reblogs_count: 0,
|
|
|
|
reblogged: false
|
|
|
|
)
|
2020-07-15 12:43:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-27 11:32:54 +00:00
|
|
|
context 'with private status that was not reblogged' do
|
|
|
|
let(:status) { Fabricate(:status, visibility: :private) }
|
|
|
|
|
|
|
|
before do
|
2024-01-26 17:45:54 +00:00
|
|
|
post "/api/v1/statuses/#{status.id}/unreblog", headers: headers
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http not found' do
|
|
|
|
expect(response).to have_http_status(404)
|
2024-09-20 13:13:04 +00:00
|
|
|
expect(response.content_type)
|
|
|
|
.to start_with('application/json')
|
2020-02-27 11:32:54 +00:00
|
|
|
end
|
2017-06-10 07:39:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|