|
|
|
@ -2,9 +2,15 @@ require "rails_helper"
|
|
|
|
|
|
|
|
|
|
RSpec.describe Exports::CaseLogExportService do |
|
|
|
|
let(:storage_service) { instance_double(StorageService) } |
|
|
|
|
|
|
|
|
|
let(:export_filepath) { "spec/fixtures/exports/case_logs.xml" } |
|
|
|
|
let(:export_file) { File.open(export_filepath, "r:UTF-8") } |
|
|
|
|
let(:expected_filename) { "core_2022_02_08/dat_core_2022_02_08_0001.xml" } |
|
|
|
|
|
|
|
|
|
let(:expected_data_filename) { "core_2022_02_08/dat_core_2022_02_08_0001.xml" } |
|
|
|
|
let(:expected_master_manifest_filename) { "Manifest_2022_02_08_0001.csv" } |
|
|
|
|
let(:expected_master_manifest_filename2) { "Manifest_2022_02_08_0002.csv" } |
|
|
|
|
|
|
|
|
|
let(:case_log) { FactoryBot.create(:case_log, :completed) } |
|
|
|
|
|
|
|
|
|
def replace_entity_ids(export_template) |
|
|
|
|
export_template.sub!(/\{id\}/, case_log["id"].to_s) |
|
|
|
@ -12,28 +18,61 @@ RSpec.describe Exports::CaseLogExportService do
|
|
|
|
|
export_template.sub!(/\{managing_org_id\}/, case_log["managing_organisation_id"].to_s) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "when exporting case logs" do |
|
|
|
|
context "when exporting daily case logs" do |
|
|
|
|
subject(:export_service) { described_class.new(storage_service) } |
|
|
|
|
|
|
|
|
|
let(:case_log) { FactoryBot.create(:case_log, :completed) } |
|
|
|
|
|
|
|
|
|
before do |
|
|
|
|
Timecop.freeze(case_log.updated_at) |
|
|
|
|
allow(storage_service).to receive(:write_file) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "generate an XML export file with the expected filename" do |
|
|
|
|
actual_filename = nil |
|
|
|
|
allow(storage_service).to receive(:write_file) { |filename, _| actual_filename = filename } |
|
|
|
|
context "and no case logs is available for export" do |
|
|
|
|
it "generates a master manifest with the correct name" do |
|
|
|
|
expect(storage_service).to receive(:write_file).with(expected_master_manifest_filename, any_args) |
|
|
|
|
export_service.export_case_logs |
|
|
|
|
expect(actual_filename).to eq(expected_filename) |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "generate an XML export file with the expected content" do |
|
|
|
|
actual_stringio = nil |
|
|
|
|
allow(storage_service).to receive(:write_file) { |_, stringio| actual_stringio = stringio } |
|
|
|
|
actual_content = replace_entity_ids(export_file.read) |
|
|
|
|
it "generates a master manifest with CSV headers but no data" do |
|
|
|
|
actual_content = nil |
|
|
|
|
expected_content = "zip-name,date-time zipped folder generated,zip-file-uri\n" |
|
|
|
|
allow(storage_service).to receive(:write_file).with(expected_master_manifest_filename, any_args) { |_, arg2| actual_content = arg2&.string } |
|
|
|
|
|
|
|
|
|
export_service.export_case_logs |
|
|
|
|
expect(actual_stringio&.string).to eq(actual_content) |
|
|
|
|
expect(actual_content).to eq(expected_content) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "and case logs are available for export" do |
|
|
|
|
before do |
|
|
|
|
case_log |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "generates an XML export file with the expected filename" do |
|
|
|
|
expect(storage_service).to receive(:write_file).with(expected_data_filename, any_args) |
|
|
|
|
export_service.export_case_logs |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "generates an XML export file with the expected content" do |
|
|
|
|
actual_content = nil |
|
|
|
|
expected_content = replace_entity_ids(export_file.read) |
|
|
|
|
allow(storage_service).to receive(:write_file).with(expected_data_filename, any_args) { |_, arg2| actual_content = arg2&.string } |
|
|
|
|
|
|
|
|
|
export_service.export_case_logs |
|
|
|
|
expect(actual_content).to eq(expected_content) |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
context "and a previous export has run the same day" do |
|
|
|
|
before do |
|
|
|
|
export_service.export_case_logs |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "increments the master manifest number by 1" do |
|
|
|
|
expect(storage_service).to receive(:write_file).with(expected_master_manifest_filename2, any_args) |
|
|
|
|
export_service.export_case_logs |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|