2017-05-30 02:05:01 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-07-27 22:27:21 +10:00
|
|
|
describe ExportControllerConcern do
|
|
|
|
controller(ApplicationController) do
|
2017-05-31 03:06:01 +10:00
|
|
|
include ExportControllerConcern
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2017-05-31 03:06:01 +10:00
|
|
|
def index
|
|
|
|
send_export_file
|
|
|
|
end
|
2018-10-05 01:38:04 +10:00
|
|
|
|
2017-05-30 02:05:01 +10:00
|
|
|
def export_data
|
|
|
|
@export.account.username
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns a csv of the exported data when signed in' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
sign_in user
|
|
|
|
get :index, format: :csv
|
|
|
|
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2021-03-17 20:09:55 +11:00
|
|
|
expect(response.media_type).to eq 'text/csv'
|
|
|
|
expect(response.headers['Content-Disposition']).to start_with 'attachment; filename="anonymous.csv"'
|
2017-05-30 02:05:01 +10:00
|
|
|
expect(response.body).to eq user.account.username
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns unauthorized when not signed in' do
|
|
|
|
get :index, format: :csv
|
2023-02-20 13:16:40 +11:00
|
|
|
expect(response).to have_http_status(401)
|
2017-05-30 02:05:01 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|