Fixing atom feeds for accounts, adding tests that would catch such bugs in future

This commit is contained in:
Eugen Rochko 2016-09-08 00:33:07 +02:00
parent 499beb4484
commit 87576e1ab1
9 changed files with 41 additions and 7 deletions

View file

@ -1,17 +1,37 @@
require 'rails_helper'
RSpec.describe AccountsController, type: :controller do
render_views
let(:alice) { Fabricate(:account, username: 'alice') }
describe 'GET #show' do
it 'returns http success' do
get :show, params: { username: alice.username }
expect(response).to have_http_status(:success)
before do
status1 = Status.create!(account: alice, text: 'Hello world')
status2 = 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'))
status4 = Status.create!(account: alice, text: 'Mentioning @alice')
end
it 'returns http success with Atom' do
get :show, params: { username: alice.username }, format: 'atom'
expect(response).to have_http_status(:success)
context 'atom' do
before do
get :show, params: { username: alice.username }, format: 'atom'
end
it 'returns http success with Atom' do
expect(response).to have_http_status(:success)
end
end
context 'html' do
before do
get :show, params: { username: alice.username }
end
it 'returns http success' do
expect(response).to have_http_status(:success)
end
end
end