mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
91 lines
3.1 KiB
Ruby
91 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'API V1 Statuses Contexts' do
|
|
describe 'GET /api/v1/statuses/:status_id/context' do
|
|
context 'with an oauth token' do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:client_app) { Fabricate(:application, name: 'Test app', website: 'http://testapp.com') }
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: client_app, scopes: scopes) }
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
|
|
|
let(:scopes) { 'read:statuses' }
|
|
|
|
context 'with a public status' do
|
|
let(:status) { Fabricate(:status, account: user.account) }
|
|
|
|
before { Fabricate(:status, account: user.account, thread: status) }
|
|
|
|
it 'returns http success' do
|
|
get "/api/v1/statuses/#{status.id}/context", headers: headers
|
|
|
|
expect(response)
|
|
.to have_http_status(200)
|
|
expect(response.content_type)
|
|
.to start_with('application/json')
|
|
expect(response.parsed_body)
|
|
.to include(ancestors: be_an(Array).and(be_empty))
|
|
.and include(descendants: be_an(Array).and(be_present))
|
|
end
|
|
end
|
|
|
|
context 'with a public status that is a reply' do
|
|
let(:status) { Fabricate(:status, account: user.account, thread: Fabricate(:status)) }
|
|
|
|
before { Fabricate(:status, account: user.account, thread: status) }
|
|
|
|
it 'returns http success' do
|
|
get "/api/v1/statuses/#{status.id}/context", headers: headers
|
|
|
|
expect(response)
|
|
.to have_http_status(200)
|
|
expect(response.content_type)
|
|
.to start_with('application/json')
|
|
expect(response.parsed_body)
|
|
.to include(ancestors: be_an(Array).and(be_present))
|
|
.and include(descendants: be_an(Array).and(be_present))
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'without an oauth token' do
|
|
context 'with a public status' do
|
|
let(:status) { Fabricate(:status, visibility: :public) }
|
|
|
|
before { Fabricate(:status, thread: status) }
|
|
|
|
it 'returns http success' do
|
|
get "/api/v1/statuses/#{status.id}/context"
|
|
|
|
expect(response)
|
|
.to have_http_status(200)
|
|
expect(response.content_type)
|
|
.to start_with('application/json')
|
|
expect(response.parsed_body)
|
|
.to include(ancestors: be_an(Array).and(be_empty))
|
|
.and include(descendants: be_an(Array).and(be_present))
|
|
end
|
|
end
|
|
|
|
context 'with a public status that is a reply' do
|
|
let(:status) { Fabricate(:status, visibility: :public, thread: Fabricate(:status)) }
|
|
|
|
before { Fabricate(:status, thread: status) }
|
|
|
|
it 'returns http success' do
|
|
get "/api/v1/statuses/#{status.id}/context"
|
|
|
|
expect(response)
|
|
.to have_http_status(200)
|
|
expect(response.content_type)
|
|
.to start_with('application/json')
|
|
expect(response.parsed_body)
|
|
.to include(ancestors: be_an(Array).and(be_present))
|
|
.and include(descendants: be_an(Array).and(be_present))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|