Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.7 KiB

require "rails_helper"
require "rake"
describe "rake core:data_export", type: task do
subject(:task) { Rake::Task["core:data_export"] }
let(:paas_instance) { "paas_export_instance" }
let(:storage_service) { instance_double(Storage::S3Service) }
let(:paas_config_service) { instance_double(Configuration::PaasConfigurationService) }
let(:export_service) { instance_double(Exports::LettingsLogExportService) }
before do
Rake.application.rake_require("tasks/data_export")
Rake::Task.define_task(:environment)
task.reenable
allow(Storage::S3Service).to receive(:new).and_return(storage_service)
allow(Configuration::PaasConfigurationService).to receive(:new).and_return(paas_config_service)
allow(Exports::LettingsLogExportService).to receive(:new).and_return(export_service)
allow(ENV).to receive(:[])
allow(ENV).to receive(:[]).with("EXPORT_PAAS_INSTANCE").and_return(paas_instance)
end
context "when exporting lettings logs with no parameters" do
it "starts the XML export process" do
expect(Storage::S3Service).to receive(:new).with(paas_config_service, paas_instance)
expect(Exports::LettingsLogExportService).to receive(:new).with(storage_service)
expect(export_service).to receive(:export_xml_lettings_logs)
task.invoke
end
end
context "when exporting lettings logs with CSV format" do
it "starts the CSV export process" do
expect(Storage::S3Service).to receive(:new).with(paas_config_service, paas_instance)
expect(Exports::LettingsLogExportService).to receive(:new).with(storage_service)
expect(export_service).to receive(:export_csv_lettings_logs)
task.invoke("CSV", "false")
end
end
end