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.
 
 
 
 

49 lines
1.7 KiB

require "rails_helper"
require "rake"
describe "rake core:data_export", type: task do
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
let(:task) { Rake::Task["core:data_export_xml"] }
it "starts the XML export process" do
expect { task.invoke }.to enqueue_job(DataExportXmlJob)
end
end
context "when running full export" do
let(:task) { Rake::Task["core:full_data_export_xml"] }
context "with all available years" do
it "calls the export service" do
expect(export_service).to receive(:export_xml_lettings_logs).with(full_update: true, collection_year: nil)
task.invoke
end
end
context "with a specific year" do
it "calls the export service" do
expect(export_service).to receive(:export_xml_lettings_logs).with(full_update: true, collection_year: 2022)
task.invoke("2022")
end
end
end
end