2016-02-29 18:42:08 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe StreamEntriesController, 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') }
|
|
|
|
let(:status) { Fabricate(:status, account: alice) }
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2016-03-19 13:02:30 +00:00
|
|
|
it 'returns http success with HTML' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { account_username: alice.username, id: status.stream_entry.id }
|
2016-02-29 18:42:08 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
2016-03-19 13:02:30 +00:00
|
|
|
it 'returns http success with Atom' do
|
2016-08-17 15:56:23 +00:00
|
|
|
get :show, params: { account_username: alice.username, id: status.stream_entry.id }, format: 'atom'
|
2016-02-29 18:42:08 +00:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2017-04-12 14:12:42 +00:00
|
|
|
|
|
|
|
describe 'GET #embed' do
|
|
|
|
it 'returns embedded view of status' do
|
|
|
|
get :embed, params: { account_username: alice.username, id: status.stream_entry.id }
|
|
|
|
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
expect(response.headers['X-Frame-Options']).to eq 'ALLOWALL'
|
|
|
|
expect(response).to render_template(layout: 'embedded')
|
|
|
|
end
|
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|