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.
35 lines
1.8 KiB
35 lines
1.8 KiB
require "rails_helper" |
|
|
|
describe DataExportXmlJob do |
|
let(:storage_service) { instance_double(Storage::S3Service, write_file: nil) } |
|
let(:env_config_service) { instance_double(Configuration::EnvConfigurationService) } |
|
let(:lettings_export_service) { instance_double(Exports::LettingsLogExportService, export_xml_lettings_logs: {}) } |
|
let(:user_export_service) { instance_double(Exports::UserExportService, export_xml_users: {}) } |
|
let(:organisation_export_service) { instance_double(Exports::OrganisationExportService, export_xml_organisations: {}) } |
|
|
|
before do |
|
allow(Storage::S3Service).to receive(:new).and_return(storage_service) |
|
allow(Configuration::EnvConfigurationService).to receive(:new).and_return(env_config_service) |
|
allow(Exports::LettingsLogExportService).to receive(:new).and_return(lettings_export_service) |
|
allow(Exports::UserExportService).to receive(:new).and_return(user_export_service) |
|
allow(Exports::OrganisationExportService).to receive(:new).and_return(organisation_export_service) |
|
end |
|
|
|
it "calls the export services" do |
|
expect(lettings_export_service).to receive(:export_xml_lettings_logs) |
|
expect(user_export_service).to receive(:export_xml_users) |
|
expect(organisation_export_service).to receive(:export_xml_organisations) |
|
|
|
described_class.perform_now |
|
end |
|
|
|
context "with full update enabled" do |
|
it "calls the export service" do |
|
expect(lettings_export_service).to receive(:export_xml_lettings_logs).with(full_update: true, collection_year: nil) |
|
expect(user_export_service).to receive(:export_xml_users).with(full_update: true) |
|
expect(organisation_export_service).to receive(:export_xml_organisations).with(full_update: true) |
|
|
|
described_class.perform_now(full_update: true) |
|
end |
|
end |
|
end
|
|
|