mirror of
https://github.com/beshu-tech/deltaglider.git
synced 2026-04-20 23:41:24 +02:00
Initial commit: DeltaGlider - S3-compatible storage with 99.9% compression
- Drop-in replacement for AWS S3 CLI (cp, ls, rm, sync commands) - Binary delta compression using xdelta3 - Hexagonal architecture with clean separation of concerns - Achieves 99.9% compression for versioned files - Full test suite with 100% passing tests - Python 3.11+ support
This commit is contained in:
@@ -87,7 +87,12 @@ class TestLocalStackE2E:
|
||||
output_file = tmpdir / "downloaded.zip"
|
||||
result = runner.invoke(
|
||||
cli,
|
||||
["get", f"s3://{test_bucket}/plugins/plugin-v1.0.1.zip.delta", "-o", str(output_file)],
|
||||
[
|
||||
"get",
|
||||
f"s3://{test_bucket}/plugins/plugin-v1.0.1.zip.delta",
|
||||
"-o",
|
||||
str(output_file),
|
||||
],
|
||||
)
|
||||
assert result.exit_code == 0
|
||||
assert output_file.read_text() == file2.read_text()
|
||||
|
||||
Reference in New Issue
Block a user