Browse Source

Adjust full import test to use the archive storage service

pull/829/head
Stéphane Meny 3 years ago
parent
commit
6d8f8fc592
No known key found for this signature in database
GPG Key ID: 9D0AFEA988527923
  1. 17
      lib/tasks/full_import.rake
  2. 52
      spec/lib/tasks/full_import_spec.rb

17
lib/tasks/full_import.rake

@ -2,11 +2,13 @@ Import = Struct.new("Import", :import_class, :import_method, :folder)
namespace :core do
desc "Import all data XMLs from legacy CORE"
task :full_import, %i[path] => :environment do |_task, args|
path = args[:path]
raise "Usage: rake core:full_import['path/to/main_folder']" if path.blank?
task :full_import, %i[archive_path] => :environment do |_task, args|
archive_path = args[:archive_path]
raise "Usage: rake core:full_import['path/to/archive']" if archive_path.blank?
storage_service = S3StorageService.new(PaasConfigurationService.new, ENV["IMPORT_PAAS_INSTANCE"])
s3_service = S3StorageService.new(PaasConfigurationService.new, ENV["IMPORT_PAAS_INSTANCE"])
archive_io = s3_service.get_file_io(archive_path)
archive_service = ArchiveStorageService.new(archive_io)
import_list = [
Import.new(Imports::OrganisationImportService, :create_organisations, "institution"),
@ -19,11 +21,10 @@ namespace :core do
]
import_list.each do |step|
folder_path = File.join(path, step.folder, "")
if storage_service.folder_present?(folder_path)
step.import_class.new(storage_service).send(step.import_method, folder_path)
if archive_service.folder_present?(step.folder)
step.import_class.new(archive_service).send(step.import_method, step.folder)
else
Rails.logger.info("#{folder_path} does not exist, skipping #{step.import_class}")
Rails.logger.info("#{step.folder} does not exist, skipping #{step.import_class}")
end
end
end

52
spec/lib/tasks/full_import_spec.rb

@ -1,26 +1,36 @@
require "rails_helper"
require "rake"
require "zip"
describe "rake core:full_import", type: :task do
subject(:task) { Rake::Task["core:full_import"] }
let(:instance_name) { "paas_import_instance" }
let(:storage_service) { instance_double(S3StorageService) }
let(:s3_service) { instance_double(S3StorageService) }
let(:archive_service) { instance_double(ArchiveStorageService) }
let(:paas_config_service) { instance_double(PaasConfigurationService) }
# let(:archive) {
# zip_file = Zip::File.open_buffer(StringIO.new)
# Dir["#{fixture_path}/**/*.xml"].each do |path|
# fixture_pathname = Pathname.new(fixture_path)
# relative_pathname = Pathname(path).relative_path_from(fixture_pathname).to_s
# zip_file.add(relative_pathname, File.open(path))
# end
# zip_file.write_buffer
# }
before do
Rake.application.rake_require("tasks/full_import")
Rake::Task.define_task(:environment)
task.reenable
allow(S3StorageService).to receive(:new).and_return(storage_service)
allow(PaasConfigurationService).to receive(:new).and_return(paas_config_service)
allow(ENV).to receive(:[])
allow(ENV).to receive(:[]).with("IMPORT_PAAS_INSTANCE").and_return(instance_name)
allow(S3StorageService).to receive(:new).and_return(s3_service)
allow(s3_service).to receive(:get_file_io)
allow(ArchiveStorageService).to receive(:new).and_return(archive_service)
end
context "when starting a full import with mocked services" do
let(:fixture_path) { "spec/fixtures/imports" }
context "when starting a full import" do
let(:case_logs_service) { instance_double(Imports::CaseLogsImportService) }
let(:rent_period_service) { instance_double(Imports::OrganisationRentPeriodImportService) }
let(:data_protection_service) { instance_double(Imports::DataProtectionConfirmationImportService) }
@ -44,16 +54,16 @@ describe "rake core:full_import", type: :task do
end
context "with all folders being present" do
before { allow(storage_service).to receive(:folder_present?).and_return(true) }
before { allow(archive_service).to receive(:folder_present?).and_return(true) }
it "calls every import method with the correct folder" do
expect(organisation_service).to receive(:create_organisations).with("#{fixture_path}/institution/")
expect(scheme_service).to receive(:create_schemes).with("#{fixture_path}/mgmtgroups/")
expect(location_service).to receive(:create_scheme_locations).with("#{fixture_path}/schemes/")
expect(user_service).to receive(:create_users).with("#{fixture_path}/user/")
expect(data_protection_service).to receive(:create_data_protection_confirmations).with("#{fixture_path}/dataprotect/")
expect(rent_period_service).to receive(:create_organisation_rent_periods).with("#{fixture_path}/rent-period/")
expect(case_logs_service).to receive(:create_logs).with("#{fixture_path}/logs/")
expect(organisation_service).to receive(:create_organisations).with("institution")
expect(scheme_service).to receive(:create_schemes).with("mgmtgroups")
expect(location_service).to receive(:create_scheme_locations).with("schemes")
expect(user_service).to receive(:create_users).with("user")
expect(data_protection_service).to receive(:create_data_protection_confirmations).with("dataprotect")
expect(rent_period_service).to receive(:create_organisation_rent_periods).with("rent-period")
expect(case_logs_service).to receive(:create_logs).with("logs")
task.invoke(fixture_path)
end
@ -61,9 +71,9 @@ describe "rake core:full_import", type: :task do
context "when a specific folders are missing" do
before do
allow(storage_service).to receive(:folder_present?).and_return(true)
allow(storage_service).to receive(:folder_present?).with("#{fixture_path}/mgmtgroups/").and_return(false)
allow(storage_service).to receive(:folder_present?).with("#{fixture_path}/schemes/").and_return(false)
allow(archive_service).to receive(:folder_present?).and_return(true)
allow(archive_service).to receive(:folder_present?).with("mgmtgroups").and_return(false)
allow(archive_service).to receive(:folder_present?).with("schemes").and_return(false)
end
it "only calls import methods for existing folders" do
@ -75,11 +85,13 @@ describe "rake core:full_import", type: :task do
expect(scheme_service).not_to receive(:create_schemes)
expect(location_service).not_to receive(:create_scheme_locations)
expect(Rails.logger).to receive(:info).with("spec/fixtures/imports/mgmtgroups/ does not exist, skipping Imports::SchemeImportService")
expect(Rails.logger).to receive(:info).with("spec/fixtures/imports/schemes/ does not exist, skipping Imports::SchemeLocationImportService")
expect(Rails.logger).to receive(:info).with("mgmtgroups does not exist, skipping Imports::SchemeImportService")
expect(Rails.logger).to receive(:info).with("schemes does not exist, skipping Imports::SchemeLocationImportService")
task.invoke(fixture_path)
end
end
end
end

Loading…
Cancel
Save