2015-10-11 17:41:23 +08:00
|
|
|
require "rails_helper"
|
2014-12-23 00:17:04 +08:00
|
|
|
|
|
|
|
describe ExportCsvController do
|
2015-01-16 01:30:59 +08:00
|
|
|
let(:export_filename) { "user-archive-codinghorror-150115-234817-999.csv.gz" }
|
2014-12-23 00:17:04 +08:00
|
|
|
|
|
|
|
context "while logged in as normal user" do
|
|
|
|
before { @user = log_in(:user) }
|
|
|
|
|
|
|
|
describe ".export_entity" do
|
|
|
|
it "enqueues export job" do
|
|
|
|
Jobs.expects(:enqueue).with(:export_csv_file, has_entries(entity: "user_archive", user_id: @user.id))
|
2017-08-31 12:06:56 +08:00
|
|
|
post :export_entity, params: { entity: "user_archive" }, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-12-23 00:17:04 +08:00
|
|
|
end
|
|
|
|
|
2014-12-30 20:37:05 +08:00
|
|
|
it "should not enqueue export job if rate limit is reached" do
|
|
|
|
Jobs::ExportCsvFile.any_instance.expects(:execute).never
|
2015-01-16 01:30:59 +08:00
|
|
|
UserExport.create(file_name: "user-archive-codinghorror-150116-003249", user_id: @user.id)
|
2017-08-31 12:06:56 +08:00
|
|
|
post :export_entity, params: { entity: "user_archive" }, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2014-12-30 20:37:05 +08:00
|
|
|
end
|
|
|
|
|
2014-12-23 00:17:04 +08:00
|
|
|
it "returns 404 when normal user tries to export admin entity" do
|
2017-08-31 12:06:56 +08:00
|
|
|
post :export_entity, params: { entity: "staff_action" }, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).not_to be_success
|
2014-12-23 00:17:04 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "while logged in as an admin" do
|
|
|
|
before { @admin = log_in(:admin) }
|
|
|
|
|
|
|
|
describe ".export_entity" do
|
|
|
|
it "enqueues export job" do
|
|
|
|
Jobs.expects(:enqueue).with(:export_csv_file, has_entries(entity: "staff_action", user_id: @admin.id))
|
2017-08-31 12:06:56 +08:00
|
|
|
post :export_entity, params: { entity: "staff_action" }, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-12-23 00:17:04 +08:00
|
|
|
end
|
2014-12-30 20:37:05 +08:00
|
|
|
|
|
|
|
it "should not rate limit export for staff" do
|
|
|
|
Jobs.expects(:enqueue).with(:export_csv_file, has_entries(entity: "staff_action", user_id: @admin.id))
|
2015-01-16 01:30:59 +08:00
|
|
|
UserExport.create(file_name: "screened-email-150116-010145", user_id: @admin.id)
|
2017-08-31 12:06:56 +08:00
|
|
|
post :export_entity, params: { entity: "staff_action" }, format: :json
|
2015-01-10 01:04:02 +08:00
|
|
|
expect(response).to be_success
|
2014-12-30 20:37:05 +08:00
|
|
|
end
|
2014-12-23 00:17:04 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|