Cover AccountsController more in spec (#3229)
* Introduce recent scope to Status and StreamEntry Introduce recent scope to Status and StreamEntry as Account has. * Cover AccountsController more in AccountsControllerpull/3195/merge
parent
9afd7dadbf
commit
8fd174298d
|
@ -6,12 +6,12 @@ class AccountsController < ApplicationController
|
||||||
def show
|
def show
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html do
|
format.html do
|
||||||
@statuses = @account.statuses.permitted_for(@account, current_account).order(id: :desc).paginate_by_max_id(20, params[:max_id], params[:since_id])
|
@statuses = @account.statuses.permitted_for(@account, current_account).recent.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
||||||
@statuses = cache_collection(@statuses, Status)
|
@statuses = cache_collection(@statuses, Status)
|
||||||
end
|
end
|
||||||
|
|
||||||
format.atom do
|
format.atom do
|
||||||
@entries = @account.stream_entries.order(id: :desc).where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
@entries = @account.stream_entries.recent.where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
||||||
render xml: AtomSerializer.render(AtomSerializer.new.feed(@account, @entries.to_a))
|
render xml: AtomSerializer.render(AtomSerializer.new.feed(@account, @entries.to_a))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -55,8 +55,9 @@ class Status < ApplicationRecord
|
||||||
validates_with StatusLengthValidator
|
validates_with StatusLengthValidator
|
||||||
validates :reblog, uniqueness: { scope: :account }, if: :reblog?
|
validates :reblog, uniqueness: { scope: :account }, if: :reblog?
|
||||||
|
|
||||||
default_scope { order(id: :desc) }
|
default_scope { recent }
|
||||||
|
|
||||||
|
scope :recent, -> { reorder(id: :desc) }
|
||||||
scope :remote, -> { where.not(uri: nil) }
|
scope :remote, -> { where.not(uri: nil) }
|
||||||
scope :local, -> { where(uri: nil) }
|
scope :local, -> { where(uri: nil) }
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ class StreamEntry < ApplicationRecord
|
||||||
STATUS_INCLUDES = [:account, :stream_entry, :conversation, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :conversation, :media_attachments, :tags, mentions: :account], thread: [:stream_entry, :account]].freeze
|
STATUS_INCLUDES = [:account, :stream_entry, :conversation, :media_attachments, :tags, mentions: :account, reblog: [:stream_entry, :account, :conversation, :media_attachments, :tags, mentions: :account], thread: [:stream_entry, :account]].freeze
|
||||||
|
|
||||||
default_scope { where(activity_type: 'Status') }
|
default_scope { where(activity_type: 'Status') }
|
||||||
|
scope :recent, -> { reorder(id: :desc) }
|
||||||
scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES) }
|
scope :with_includes, -> { includes(:account, status: STATUS_INCLUDES) }
|
||||||
|
|
||||||
delegate :target, :title, :content, :thread,
|
delegate :target, :title, :content, :thread,
|
||||||
|
|
|
@ -6,17 +6,29 @@ RSpec.describe AccountsController, type: :controller do
|
||||||
let(:alice) { Fabricate(:account, username: 'alice') }
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
||||||
|
|
||||||
describe 'GET #show' do
|
describe 'GET #show' do
|
||||||
|
let!(:status1) { Status.create!(account: alice, text: 'Hello world') }
|
||||||
|
let!(:status2) { Status.create!(account: alice, text: 'Boop', thread: status1) }
|
||||||
|
let!(:status3) { Status.create!(account: alice, text: 'Picture!') }
|
||||||
|
let!(:status4) { Status.create!(account: alice, text: 'Mentioning @alice') }
|
||||||
|
|
||||||
before do
|
before do
|
||||||
status1 = Status.create!(account: alice, text: 'Hello world')
|
|
||||||
Status.create!(account: alice, text: 'Boop', thread: status1)
|
|
||||||
status3 = Status.create!(account: alice, text: 'Picture!')
|
|
||||||
status3.media_attachments.create!(account: alice, file: fixture_file_upload('files/attachment.jpg', 'image/jpeg'))
|
status3.media_attachments.create!(account: alice, file: fixture_file_upload('files/attachment.jpg', 'image/jpeg'))
|
||||||
Status.create!(account: alice, text: 'Mentioning @alice')
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'atom' do
|
context 'atom' do
|
||||||
before do
|
before do
|
||||||
get :show, params: { username: alice.username }, format: 'atom'
|
get :show, params: { username: alice.username, max_id: status4.stream_entry.id, since_id: status1.stream_entry.id }, format: 'atom'
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'assigns @account' do
|
||||||
|
expect(assigns(:account)).to eq alice
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'assigns @entries' do
|
||||||
|
entries = assigns(:entries).to_a
|
||||||
|
expect(entries.size).to eq 2
|
||||||
|
expect(entries[0].status).to eq status3
|
||||||
|
expect(entries[1].status).to eq status2
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns http success with Atom' do
|
it 'returns http success with Atom' do
|
||||||
|
@ -29,6 +41,10 @@ RSpec.describe AccountsController, type: :controller do
|
||||||
get :show, params: { username: alice.username }, format: 'activitystreams2'
|
get :show, params: { username: alice.username }, format: 'activitystreams2'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it 'assigns @account' do
|
||||||
|
expect(assigns(:account)).to eq alice
|
||||||
|
end
|
||||||
|
|
||||||
it 'returns http success with Activity Streams 2.0' do
|
it 'returns http success with Activity Streams 2.0' do
|
||||||
expect(response).to have_http_status(:success)
|
expect(response).to have_http_status(:success)
|
||||||
end
|
end
|
||||||
|
@ -36,7 +52,18 @@ RSpec.describe AccountsController, type: :controller do
|
||||||
|
|
||||||
context 'html' do
|
context 'html' do
|
||||||
before do
|
before do
|
||||||
get :show, params: { username: alice.username }
|
get :show, params: { username: alice.username, max_id: status4.id, since_id: status1.id }
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'assigns @account' do
|
||||||
|
expect(assigns(:account)).to eq alice
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'assigns @statuses' do
|
||||||
|
statuses = assigns(:statuses).to_a
|
||||||
|
expect(statuses.size).to eq 2
|
||||||
|
expect(statuses[0]).to eq status3
|
||||||
|
expect(statuses[1]).to eq status2
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns http success' do
|
it 'returns http success' do
|
||||||
|
|
Loading…
Reference in New Issue