2016-02-29 18:42:08 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AccountsController, type: :controller do
|
2016-09-07 22:33:07 +00:00
|
|
|
render_views
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-09-07 22:33:07 +00:00
|
|
|
before do
|
|
|
|
status1 = Status.create!(account: alice, text: 'Hello world')
|
2016-09-18 11:42:24 +00:00
|
|
|
Status.create!(account: alice, text: 'Boop', thread: status1)
|
2016-09-07 22:33:07 +00:00
|
|
|
status3 = Status.create!(account: alice, text: 'Picture!')
|
|
|
|
status3.media_attachments.create!(account: alice, file: fixture_file_upload('files/attachment.jpg', 'image/jpeg'))
|
2016-09-18 11:42:24 +00:00
|
|
|
Status.create!(account: alice, text: 'Mentioning @alice')
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
|
2016-09-07 22:33:07 +00:00
|
|
|
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
|
|
|
|
|
2017-02-06 20:14:02 +00:00
|
|
|
context 'activitystreams2' do
|
|
|
|
before do
|
|
|
|
get :show, params: { username: alice.username }, format: 'activitystreams2'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success with Activity Streams 2.0' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-07 22:33:07 +00:00
|
|
|
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
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|