require "rails_helper" require "rake" describe "rake core:data_export", type: task do let(:export_instance) { "export_instance" } let(:storage_service) { instance_double(Storage::S3Service) } 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(Exports::LettingsLogExportService).to receive(:new).and_return(export_service) allow(ENV).to receive(:[]) allow(ENV).to receive(:[]).with("EXPORT_PAAS_INSTANCE").and_return(export_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