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.
67 lines
3.5 KiB
67 lines
3.5 KiB
1 year ago
|
require "rails_helper"
|
||
|
|
||
|
describe EmailMissingAddressesCsvJob do
|
||
|
include Helpers
|
||
|
|
||
|
test_url = :test_url
|
||
|
|
||
|
let(:job) { described_class.new }
|
||
|
let(:storage_service) { instance_double(Storage::S3Service) }
|
||
|
let(:mailer) { instance_double(CsvDownloadMailer) }
|
||
|
let(:missing_addresses_csv_service) { instance_double(Csv::MissingAddressesCsvService) }
|
||
|
let(:organisation) { build(:organisation) }
|
||
|
let(:users) { create_list(:user, 2) }
|
||
|
|
||
|
before do
|
||
|
allow(Storage::S3Service).to receive(:new).and_return(storage_service)
|
||
|
allow(storage_service).to receive(:write_file)
|
||
|
allow(storage_service).to receive(:get_presigned_url).and_return(test_url)
|
||
|
|
||
|
allow(Csv::MissingAddressesCsvService).to receive(:new).and_return(missing_addresses_csv_service)
|
||
|
allow(missing_addresses_csv_service).to receive(:create_missing_lettings_addresses_csv).and_return("")
|
||
|
allow(missing_addresses_csv_service).to receive(:create_missing_sales_addresses_csv).and_return("")
|
||
|
|
||
|
allow(CsvDownloadMailer).to receive(:new).and_return(mailer)
|
||
|
allow(mailer).to receive(:send_missing_lettings_addresses_csv_download_mail)
|
||
|
allow(mailer).to receive(:send_missing_sales_addresses_csv_download_mail)
|
||
|
end
|
||
|
|
||
|
context "when sending missing lettings logs csv" do
|
||
|
it "uses an appropriate filename in S3" do
|
||
|
expect(storage_service).to receive(:write_file).with(/missing-lettings-logs-addresses-#{organisation.name}-.*\.csv/, anything)
|
||
|
job.perform(users.map(&:id), organisation, "lettings", %w[missing_address wrong_uprn], [1, 2])
|
||
|
end
|
||
|
|
||
|
it "creates a MissingAddressesCsvService with the correct organisation and calls create missing lettings logs adresses csv" do
|
||
|
expect(Csv::MissingAddressesCsvService).to receive(:new).with(organisation, [1, 2])
|
||
|
expect(missing_addresses_csv_service).to receive(:create_missing_lettings_addresses_csv)
|
||
|
job.perform(users.map(&:id), organisation, "lettings", %w[missing_address wrong_uprn], [1, 2])
|
||
|
end
|
||
|
|
||
|
it "sends emails to all the provided users" do
|
||
|
expect(mailer).to receive(:send_missing_lettings_addresses_csv_download_mail).with(users[0], test_url, instance_of(Integer), %w[missing_address wrong_uprn])
|
||
|
expect(mailer).to receive(:send_missing_lettings_addresses_csv_download_mail).with(users[1], test_url, instance_of(Integer), %w[missing_address wrong_uprn])
|
||
|
job.perform(users.map(&:id), organisation, "lettings", %w[missing_address wrong_uprn], [1, 2])
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context "when sending missing sales logs csv" do
|
||
|
it "uses an appropriate filename in S3" do
|
||
|
expect(storage_service).to receive(:write_file).with(/missing-sales-logs-addresses-#{organisation.name}-.*\.csv/, anything)
|
||
|
job.perform(users.map(&:id), organisation, "sales", %w[missing_town], [2, 3])
|
||
|
end
|
||
|
|
||
|
it "creates a MissingAddressesCsvService with the correct organisation and calls create missing sales logs adresses csv" do
|
||
|
expect(Csv::MissingAddressesCsvService).to receive(:new).with(organisation, [2, 3])
|
||
|
expect(missing_addresses_csv_service).to receive(:create_missing_sales_addresses_csv)
|
||
|
job.perform(users.map(&:id), organisation, "sales", %w[missing_town], [2, 3])
|
||
|
end
|
||
|
|
||
|
it "sends emails to all the provided users" do
|
||
|
expect(mailer).to receive(:send_missing_sales_addresses_csv_download_mail).with(users[0], test_url, instance_of(Integer), %w[missing_town])
|
||
|
expect(mailer).to receive(:send_missing_sales_addresses_csv_download_mail).with(users[1], test_url, instance_of(Integer), %w[missing_town])
|
||
|
job.perform(users.map(&:id), organisation, "sales", %w[missing_town], [2, 3])
|
||
|
end
|
||
|
end
|
||
|
end
|