2017-05-29 18:05:01 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-05-30 19:06:01 +02:00
|
|
|
describe ApplicationController, type: :controller do
|
2017-05-29 18:05:01 +02:00
|
|
|
controller do
|
2017-05-30 19:06:01 +02:00
|
|
|
include ExportControllerConcern
|
2020-09-15 14:37:58 +02:00
|
|
|
|
2017-05-30 19:06:01 +02:00
|
|
|
def index
|
|
|
|
send_export_file
|
|
|
|
end
|
2018-10-04 17:38:04 +02:00
|
|
|
|
2017-05-29 18:05:01 +02: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-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2021-03-17 10:09:55 +01:00
|
|
|
expect(response.media_type).to eq 'text/csv'
|
|
|
|
expect(response.headers['Content-Disposition']).to start_with 'attachment; filename="anonymous.csv"'
|
2017-05-29 18:05:01 +02:00
|
|
|
expect(response.body).to eq user.account.username
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns unauthorized when not signed in' do
|
|
|
|
get :index, format: :csv
|
|
|
|
expect(response).to have_http_status(:unauthorized)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|