-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gzip' into tilers-lilleyse
- Loading branch information
Showing
9 changed files
with
140 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#include <CesiumNativeTests/readFile.h> | ||
#include <CesiumUtility/Gzip.h> | ||
|
||
#include <catch2/catch.hpp> | ||
|
||
#include <filesystem> | ||
|
||
using namespace CesiumUtility; | ||
|
||
namespace { | ||
std::filesystem::path testDataDir = CesiumUtility_TEST_DATA_DIR; | ||
std::filesystem::path compressedDataPath = | ||
testDataDir / "Gzip" / "CesiumMilkTruck.png.gz"; | ||
std::filesystem::path uncompressedDataPath = | ||
testDataDir / "Gzip" / "CesiumMilkTruck.png"; | ||
std::filesystem::path invalidCompressedDataPath = | ||
testDataDir / "Gzip" / "CesiumMilkTruck.png.gz.invalid"; | ||
|
||
} // namespace | ||
|
||
TEST_CASE("isGzip") { | ||
SECTION("returns true if data is gzipped") { | ||
std::vector<std::byte> compressedData = readFile(compressedDataPath); | ||
CHECK(isGzip(compressedData)); | ||
} | ||
|
||
SECTION("returns false if data is not gzipped") { | ||
std::vector<std::byte> uncompressedData = readFile(uncompressedDataPath); | ||
CHECK(!isGzip(uncompressedData)); | ||
} | ||
} | ||
|
||
TEST_CASE("gzip") { | ||
SECTION("gzips data") { | ||
std::vector<std::byte> uncompressedData = readFile(uncompressedDataPath); | ||
std::vector<std::byte> compressedData; | ||
bool result = gzip(uncompressedData, compressedData); | ||
REQUIRE(result); | ||
CHECK(compressedData.size() < uncompressedData.size()); | ||
CHECK(isGzip(compressedData)); | ||
|
||
std::vector<std::byte> decompressedData; | ||
result = gunzip(compressedData, decompressedData); | ||
REQUIRE(result); | ||
CHECK(decompressedData == uncompressedData); | ||
} | ||
} | ||
|
||
TEST_CASE("gunzip") { | ||
SECTION("gunzips data") { | ||
std::vector<std::byte> compressedData = readFile(compressedDataPath); | ||
std::vector<std::byte> uncompressedData = readFile(uncompressedDataPath); | ||
|
||
std::vector<std::byte> decompressedData; | ||
bool result = gunzip(compressedData, decompressedData); | ||
REQUIRE(result); | ||
CHECK(decompressedData == uncompressedData); | ||
} | ||
|
||
SECTION("returns false for invalid header") { | ||
std::vector<std::byte> invalidCompressedData = | ||
readFile(uncompressedDataPath); | ||
|
||
std::vector<std::byte> decompressedData; | ||
bool result = gunzip(invalidCompressedData, decompressedData); | ||
|
||
CHECK(!result); | ||
} | ||
|
||
SECTION("returns false for truncated data") { | ||
std::vector<std::byte> invalidCompressedData = | ||
readFile(invalidCompressedDataPath); | ||
|
||
std::vector<std::byte> decompressedData; | ||
bool result = gunzip(invalidCompressedData, decompressedData); | ||
|
||
CHECK(!result); | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.