2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-01 07:01:03 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 12:49:53 +09:00
|
|
|
RSpec.describe Api::OEmbedController do
|
2017-05-31 05:30:06 +09:00
|
|
|
render_views
|
|
|
|
|
2017-01-23 21:36:17 +09:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
let(:status) { Fabricate(:status, text: 'Hello world', account: alice) }
|
2016-12-01 07:01:03 +09:00
|
|
|
|
2017-01-23 21:36:17 +09:00
|
|
|
describe 'GET #show' do
|
|
|
|
before do
|
2017-09-03 00:42:47 +09:00
|
|
|
request.host = Rails.configuration.x.local_domain
|
2019-07-07 23:16:51 +09:00
|
|
|
get :show, params: { url: short_account_status_url(alice, status) }, format: :json
|
2017-01-23 21:36:17 +09:00
|
|
|
end
|
|
|
|
|
2023-10-13 21:42:09 +09:00
|
|
|
it 'returns private cache control headers', :aggregate_failures do
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2023-04-19 23:07:29 +09:00
|
|
|
expect(response.headers['Cache-Control']).to include('private, no-store')
|
|
|
|
end
|
2017-01-23 21:36:17 +09:00
|
|
|
end
|
2016-12-01 07:01:03 +09:00
|
|
|
end
|