2019-10-03 21:19:35 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Compression::Engine do
|
2019-10-12 01:38:10 +08:00
|
|
|
let(:available_size) { SiteSetting.decompressed_theme_max_file_size_mb }
|
2022-09-30 02:00:38 +08:00
|
|
|
let(:folder_name) { 'test' }
|
|
|
|
let(:temp_folder) do
|
|
|
|
path = "#{Pathname.new(Dir.tmpdir).realpath}/#{SecureRandom.hex}"
|
|
|
|
FileUtils.mkdir(path)
|
|
|
|
path
|
|
|
|
end
|
2019-10-12 01:38:10 +08:00
|
|
|
|
2019-10-03 21:19:35 +08:00
|
|
|
before do
|
2022-09-30 02:00:38 +08:00
|
|
|
Dir.chdir(temp_folder) do
|
|
|
|
FileUtils.mkdir_p("#{folder_name}/a")
|
|
|
|
File.write("#{folder_name}/hello.txt", 'hello world')
|
|
|
|
File.write("#{folder_name}/a/inner", 'hello world inner')
|
2019-10-03 21:19:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
after { FileUtils.rm_rf(temp_folder) }
|
2019-10-03 21:19:35 +08:00
|
|
|
|
|
|
|
it 'raises an exception when the file is not supported' do
|
|
|
|
unknown_extension = 'a_file.crazyext'
|
|
|
|
expect { described_class.engine_for(unknown_extension) }.to raise_error Compression::Engine::UnsupportedFileExtension
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'compressing and decompressing files' do
|
|
|
|
before do
|
2022-09-30 02:00:38 +08:00
|
|
|
Dir.chdir(temp_folder) do
|
|
|
|
@compressed_path = Compression::Engine.engine_for("#{folder_name}#{extension}").compress(temp_folder, folder_name)
|
|
|
|
FileUtils.rm_rf("#{folder_name}/")
|
2019-10-03 21:19:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context 'when working with zip files' do
|
2019-10-03 21:19:35 +08:00
|
|
|
let(:extension) { '.zip' }
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
it 'decompresses the folder and inspects files correctly' do
|
2019-10-03 21:19:35 +08:00
|
|
|
engine = described_class.engine_for(@compressed_path)
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
extract_location = "#{temp_folder}/extract_location"
|
|
|
|
FileUtils.mkdir(extract_location)
|
|
|
|
engine.decompress(extract_location, "#{temp_folder}/#{folder_name}.zip", available_size)
|
2019-10-03 21:19:35 +08:00
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
expect(read_file("extract_location/hello.txt")).to eq("hello world")
|
|
|
|
expect(read_file("extract_location/a/inner")).to eq("hello world inner")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't allow files to be extracted outside the target directory" do
|
|
|
|
FileUtils.rm_rf(temp_folder)
|
|
|
|
FileUtils.mkdir(temp_folder)
|
|
|
|
|
|
|
|
zip_file = "#{temp_folder}/theme.zip"
|
|
|
|
Zip::File.open(zip_file, create: true) do |zipfile|
|
|
|
|
zipfile.get_output_stream("child-file") do |f|
|
|
|
|
f.puts("child file")
|
|
|
|
end
|
|
|
|
zipfile.get_output_stream("../escape-decompression-folder.txt") do |f|
|
|
|
|
f.puts("file that attempts to escape the decompression destination directory")
|
|
|
|
end
|
|
|
|
zipfile.mkdir("child-dir")
|
|
|
|
zipfile.get_output_stream("child-dir/grandchild-file") do |f|
|
|
|
|
f.puts("grandchild file")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
extract_location = "#{temp_folder}/extract_location"
|
|
|
|
FileUtils.mkdir(extract_location)
|
|
|
|
engine = described_class.engine_for(zip_file)
|
|
|
|
engine.decompress(extract_location, zip_file, available_size)
|
|
|
|
Dir.chdir(temp_folder) do
|
|
|
|
expect(Dir.glob("**/*")).to contain_exactly(
|
|
|
|
"extract_location",
|
|
|
|
"extract_location/child-file",
|
|
|
|
"extract_location/child-dir",
|
|
|
|
"extract_location/child-dir/grandchild-file",
|
|
|
|
"theme.zip"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "decompresses into symlinked directory" do
|
|
|
|
real_location = "#{temp_folder}/extract_location"
|
|
|
|
extract_location = "#{temp_folder}/is/symlinked"
|
|
|
|
|
|
|
|
FileUtils.mkdir(real_location)
|
|
|
|
FileUtils.mkdir_p(extract_location)
|
|
|
|
extract_location = "#{extract_location}/extract_location"
|
|
|
|
FileUtils.symlink(real_location, extract_location)
|
|
|
|
|
|
|
|
engine = described_class.engine_for(@compressed_path)
|
|
|
|
engine.decompress(extract_location, "#{temp_folder}/#{folder_name}.zip", available_size)
|
|
|
|
|
|
|
|
expect(File.realpath(extract_location)).to eq(real_location)
|
|
|
|
expect(read_file("is/symlinked/extract_location/hello.txt")).to eq("hello world")
|
|
|
|
expect(read_file("is/symlinked/extract_location/a/inner")).to eq("hello world inner")
|
2019-10-03 21:19:35 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context 'when working with .tar.gz files' do
|
2019-10-03 21:19:35 +08:00
|
|
|
let(:extension) { '.tar.gz' }
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
it 'decompresses the folder and inspects files correctly' do
|
2019-10-03 21:19:35 +08:00
|
|
|
engine = described_class.engine_for(@compressed_path)
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
engine.decompress(temp_folder, "#{temp_folder}/#{folder_name}.tar.gz", available_size)
|
2019-10-03 21:19:35 +08:00
|
|
|
|
|
|
|
expect(read_file("test/hello.txt")).to eq("hello world")
|
|
|
|
expect(read_file("test/a/inner")).to eq("hello world inner")
|
|
|
|
end
|
2022-09-30 02:00:38 +08:00
|
|
|
|
|
|
|
it "doesn't allow files to be extracted outside the target directory" do
|
|
|
|
FileUtils.rm_rf(temp_folder)
|
|
|
|
FileUtils.mkdir(temp_folder)
|
|
|
|
|
|
|
|
tar_file = "#{temp_folder}/theme.tar"
|
|
|
|
File.open(tar_file, "wb") do |file|
|
|
|
|
Gem::Package::TarWriter.new(file) do |tar|
|
|
|
|
tar.add_file("child-file", 644) do |tf|
|
|
|
|
tf.write("child file")
|
|
|
|
end
|
|
|
|
tar.add_file("../escape-extraction-folder", 644) do |tf|
|
|
|
|
tf.write("file that attempts to escape the decompression destination directory")
|
|
|
|
end
|
|
|
|
tar.mkdir("child-dir", 755)
|
|
|
|
tar.add_file("child-dir/grandchild-file", 644) do |tf|
|
|
|
|
tf.write("grandchild file")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
tar_gz_file = "#{temp_folder}/theme.tar.gz"
|
|
|
|
Zlib::GzipWriter.open(tar_gz_file) do |gz|
|
|
|
|
gz.orig_name = tar_file
|
|
|
|
gz.write(File.binread(tar_file))
|
|
|
|
end
|
|
|
|
FileUtils.rm(tar_file)
|
|
|
|
|
|
|
|
extract_location = "#{temp_folder}/extract_location"
|
|
|
|
FileUtils.mkdir(extract_location)
|
|
|
|
engine = described_class.engine_for(tar_gz_file)
|
|
|
|
engine.decompress(extract_location, tar_gz_file, available_size)
|
|
|
|
Dir.chdir(temp_folder) do
|
|
|
|
expect(Dir.glob("**/*")).to contain_exactly(
|
|
|
|
"extract_location",
|
|
|
|
"extract_location/child-file",
|
|
|
|
"extract_location/child-dir",
|
|
|
|
"extract_location/child-dir/grandchild-file",
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "decompresses into symlinked directory" do
|
|
|
|
real_location = "#{temp_folder}/extract_location"
|
|
|
|
extract_location = "#{temp_folder}/is/symlinked"
|
|
|
|
|
|
|
|
FileUtils.mkdir(real_location)
|
|
|
|
FileUtils.mkdir_p(extract_location)
|
|
|
|
extract_location = "#{extract_location}/extract_location"
|
|
|
|
FileUtils.symlink(real_location, extract_location)
|
|
|
|
|
|
|
|
engine = described_class.engine_for(@compressed_path)
|
|
|
|
engine.decompress(extract_location, "#{temp_folder}/#{folder_name}.tar.gz", available_size)
|
|
|
|
|
|
|
|
expect(File.realpath(extract_location)).to eq(real_location)
|
|
|
|
expect(read_file("is/symlinked/extract_location/test/hello.txt")).to eq("hello world")
|
|
|
|
expect(read_file("is/symlinked/extract_location/test/a/inner")).to eq("hello world inner")
|
|
|
|
end
|
2019-10-03 21:19:35 +08:00
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context 'when working with .tar files' do
|
2019-10-03 21:19:35 +08:00
|
|
|
let(:extension) { '.tar' }
|
|
|
|
|
|
|
|
it 'decompress the folder and inspect files correctly' do
|
|
|
|
engine = described_class.engine_for(@compressed_path)
|
|
|
|
|
2022-09-30 02:00:38 +08:00
|
|
|
engine.decompress(temp_folder, "#{temp_folder}/#{folder_name}.tar", available_size)
|
2019-10-03 21:19:35 +08:00
|
|
|
|
|
|
|
expect(read_file("test/hello.txt")).to eq("hello world")
|
|
|
|
expect(read_file("test/a/inner")).to eq("hello world inner")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def read_file(relative_path)
|
2022-09-30 02:00:38 +08:00
|
|
|
File.read("#{temp_folder}/#{relative_path}")
|
2019-10-03 21:19:35 +08:00
|
|
|
end
|
|
|
|
end
|