2022-01-14 13:43:02 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-06-26 08:33:32 -07:00
|
|
|
require "rails_helper"
|
2022-12-09 18:28:17 -08:00
|
|
|
require "support/example_exporter"
|
|
|
|
require "base64"
|
|
|
|
|
|
|
|
# This only tests the exporter itself to make sure zip file creation works.
|
2022-01-14 13:43:02 -08:00
|
|
|
RSpec.describe Exporter do
|
2022-07-19 08:18:27 -07:00
|
|
|
include ActiveSupport::Testing::TimeHelpers
|
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
let(:user) { FactoryBot.create(:user, screen_name: "fizzyraccoon", export_processing: true) }
|
2022-01-14 13:43:02 -08:00
|
|
|
let(:instance) { described_class.new(user) }
|
2022-12-09 18:28:17 -08:00
|
|
|
let(:zipfile_deletion_expected) { false }
|
2022-01-14 13:43:02 -08:00
|
|
|
|
2022-07-10 09:31:51 -07:00
|
|
|
before do
|
|
|
|
stub_const("APP_CONFIG", {
|
2022-12-09 18:28:17 -08:00
|
|
|
"site_name" => "justask",
|
|
|
|
"hostname" => "example.com",
|
|
|
|
"https" => true,
|
|
|
|
"items_per_page" => 5,
|
|
|
|
"fog" => {}
|
|
|
|
}.with_indifferent_access)
|
2022-07-10 09:31:51 -07:00
|
|
|
end
|
|
|
|
|
2022-07-09 12:47:56 -07:00
|
|
|
after do
|
2022-12-09 18:28:17 -08:00
|
|
|
filename = instance.instance_variable_get(:@zipfile)&.name
|
|
|
|
unless File.exist?(filename)
|
|
|
|
warn "exporter_spec.rb: wanted to clean up #{filename.inspect} but it does not exist!" unless zipfile_deletion_expected
|
|
|
|
next
|
2022-01-14 13:43:02 -08:00
|
|
|
end
|
2022-12-09 18:28:17 -08:00
|
|
|
FileUtils.rm_r(filename)
|
2022-01-14 13:43:02 -08:00
|
|
|
end
|
2022-07-09 10:22:05 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
describe "#export" do
|
|
|
|
let(:export_name) { instance.instance_variable_get(:@export_name) }
|
2022-07-10 03:01:22 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
subject do
|
|
|
|
travel_to(Time.utc(2022, 12, 10, 13, 37, 42)) do
|
|
|
|
instance.export
|
2022-07-10 03:01:22 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-09 12:47:56 -07:00
|
|
|
before do
|
2022-12-09 18:28:17 -08:00
|
|
|
allow(UseCase::DataExport::Base)
|
|
|
|
.to receive(:descendants)
|
|
|
|
.and_return([ExampleExporter])
|
2022-07-09 12:47:56 -07:00
|
|
|
end
|
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
it "creates a zip file with the expected contents" do
|
|
|
|
subject
|
2022-07-09 12:47:56 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
# check created zip file
|
|
|
|
zip_path = Rails.public_path.join("export/#{export_name}.zip")
|
|
|
|
expect(File.exist?(zip_path)).to be true
|
|
|
|
|
|
|
|
Zip::File.open(zip_path) do |zip|
|
|
|
|
# check for zip comment
|
|
|
|
expect(zip.comment).to eq "justask export done for fizzyraccoon on 2022-12-10T13:37:42Z\n"
|
|
|
|
|
|
|
|
# check if all files and directories are there
|
|
|
|
expect(zip.entries.map(&:name).sort).to eq([
|
|
|
|
# basic dirs from exporter
|
|
|
|
"#{export_name}/",
|
|
|
|
"#{export_name}/pictures/",
|
|
|
|
# files added by the ExampleExporter
|
|
|
|
"#{export_name}/textfile.txt",
|
|
|
|
"#{export_name}/pictures/example.jpg",
|
|
|
|
"#{export_name}/some.json"
|
|
|
|
].sort)
|
|
|
|
|
|
|
|
# check if the file contents match
|
|
|
|
expect(zip.file.read("#{export_name}/textfile.txt")).to eq("Sample Text\n")
|
|
|
|
expect(Base64.encode64(zip.file.read("#{export_name}/pictures/example.jpg")))
|
|
|
|
.to eq(Base64.encode64(File.read(File.expand_path("../fixtures/files/banana_racc.jpg", __dir__))))
|
|
|
|
expect(zip.file.read("#{export_name}/some.json")).to eq(<<~JSON)
|
|
|
|
{
|
|
|
|
"animals": [
|
|
|
|
"raccoon",
|
|
|
|
"fox",
|
|
|
|
"hyena",
|
|
|
|
"deer",
|
|
|
|
"dog"
|
|
|
|
],
|
|
|
|
"big_number": 3457812374589235798,
|
|
|
|
"booleans": {
|
|
|
|
"yes": true,
|
|
|
|
"no": false,
|
|
|
|
"file_not_found": null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
JSON
|
2022-07-09 12:47:56 -07:00
|
|
|
end
|
|
|
|
end
|
2022-07-10 09:31:51 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
it "updates the export fields of the user" do
|
|
|
|
expect { subject }.to change { user.export_processing }.from(true).to(false)
|
|
|
|
expect(user.export_url).to eq("https://example.com/export/#{export_name}.zip")
|
|
|
|
expect(user.export_created_at).to eq(Time.utc(2022, 12, 10, 13, 37, 42))
|
|
|
|
expect(user).to be_persisted
|
2022-07-10 09:31:51 -07:00
|
|
|
end
|
2022-07-10 09:50:39 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
context "when exporting fails" do
|
|
|
|
let(:zipfile_deletion_expected) { true }
|
2022-07-10 09:50:39 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
before do
|
|
|
|
allow_any_instance_of(ExampleExporter).to receive(:files).and_raise(ArgumentError.new("just testing"))
|
2022-07-10 09:50:39 -07:00
|
|
|
end
|
2022-07-10 11:11:48 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
it "deletes the zip file" do
|
|
|
|
expect { subject }.to raise_error(ArgumentError, "just testing")
|
2022-07-10 11:11:48 -07:00
|
|
|
|
2022-12-09 18:28:17 -08:00
|
|
|
zip_path = Rails.public_path.join("export/#{export_name}.zip")
|
|
|
|
expect(File.exist?(zip_path)).to be false
|
2022-07-10 11:11:48 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-01-14 13:43:02 -08:00
|
|
|
end
|