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.
60 lines
1.6 KiB
60 lines
1.6 KiB
require "rails_helper" |
|
|
|
RSpec.describe BulkUpload::Downloader do |
|
subject(:downloader) { described_class.new(bulk_upload:) } |
|
|
|
let(:bulk_upload) { build(:bulk_upload) } |
|
|
|
let(:get_file_io) do |
|
io = StringIO.new |
|
io.write("hello") |
|
io.rewind |
|
io |
|
end |
|
|
|
describe "#call" do |
|
let(:mock_storage_service) { instance_double(Storage::S3Service, get_file_io:) } |
|
|
|
it "downloads the file as a temporary file" do |
|
allow(Storage::S3Service).to receive(:new).and_return(mock_storage_service) |
|
|
|
downloader.call |
|
|
|
expect(mock_storage_service).to have_received(:get_file_io).with(bulk_upload.identifier) |
|
|
|
expect(File).to exist(downloader.path) |
|
expect(File.read(downloader.path)).to eql("hello") |
|
end |
|
end |
|
|
|
describe "#delete_local_file!" do |
|
let(:mock_storage_service) { instance_double(Storage::S3Service, get_file_io:) } |
|
|
|
it "deletes the local file" do |
|
allow(Storage::S3Service).to receive(:new).and_return(mock_storage_service) |
|
|
|
downloader.call |
|
|
|
expect(File).to exist(downloader.path) |
|
expect(File.read(downloader.path)).to eql("hello") |
|
|
|
path = downloader.path |
|
|
|
downloader.delete_local_file! |
|
|
|
expect(File).not_to exist(path) |
|
end |
|
end |
|
|
|
describe "#presigned_url" do |
|
let(:mock_storage_service) { instance_double(Storage::S3Service, get_presigned_url: "https://example.com") } |
|
|
|
before do |
|
allow(Storage::S3Service).to receive(:new).and_return(mock_storage_service) |
|
end |
|
|
|
it "returns a presigned URL" do |
|
expect(downloader.presigned_url).to eql("https://example.com") |
|
end |
|
end |
|
end
|
|
|