Added tests for sandboxed library and transaction

This commit is contained in:
Bohdan Tyshchenko 2020-08-12 03:45:08 -07:00
parent 06ae5e2427
commit 6f7110dd4f
6 changed files with 223 additions and 117 deletions

View File

@ -1,22 +1,23 @@
# cc_test(
# name = "transaction_tests",
# srcs = ["guetzli_transaction_test.cc"],
# visibility=["//visibility:public"],
# includes = ["."],
# deps = [
# "//:guetzli_sapi",
# "@googletest//:gtest_main"
# ],
# )
cc_test(
name = "transaction_tests",
srcs = ["guetzli_transaction_test.cc"],
visibility=["//visibility:public"],
deps = [
"//:guetzli_sapi",
"@googletest//:gtest_main"
],
size = "large",
data = glob(["testdata/*"])
)
# cc_test(
# name = "sapi_lib_tests",
# srcs = ["guetzli_sapi_test.cc"],
# visibility=["//visibility:public"],
# includes=[".."],
# deps = [
# "//:guetzli_sapi",
# "@googletest//:gtest_main"
# ],
# data = glob(["testdata/*"])
# )
cc_test(
name = "sapi_lib_tests",
srcs = ["guetzli_sapi_test.cc"],
visibility=["//visibility:public"],
deps = [
"//:guetzli_sapi",
"@googletest//:gtest_main"
],
size = "large",
data = glob(["testdata/*"])
)

View File

@ -10,6 +10,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <sstream>
#include <algorithm>
namespace guetzli {
namespace sandbox {
@ -18,15 +19,18 @@ namespace tests {
namespace {
constexpr const char* IN_PNG_FILENAME = "bees.png";
constexpr const char* IN_JPG_FILENAME = "landscape.jpg";
constexpr const char* IN_JPG_FILENAME = "nature.jpg";
constexpr const char* PNG_REFERENCE_FILENAME = "bees_reference.jpg";
constexpr const char* JPG_REFERENCE_FILENAME = "nature_reference.jpg";
constexpr int IN_PNG_FILE_SIZE = 177'424;
constexpr int IN_JPG_FILE_SIZE = 14'418;
constexpr int PNG_EXPECTED_SIZE = 38'625;
constexpr int JPG_EXPECTED_SIZE = 10'816;
constexpr int DEFAULT_QUALITY_TARGET = 95;
constexpr int DEFAULT_MEMLIMIT_MB = 6000;
constexpr const char* RELATIVE_PATH_TO_TESTDATA =
"/guetzli/guetzli-sandboxed/tests/testdata/";
"/guetzli_sandboxed/tests/testdata/";
std::string GetPathToInputFile(const char* filename) {
return std::string(getenv("TEST_SRCDIR"))
@ -46,6 +50,18 @@ std::string ReadFromFile(const std::string& filename) {
return result.str();
}
template<typename Container>
bool CompareBytesInLenValAndContainer(const sapi::v::LenVal& lenval,
const Container& container) {
return std::equal(
lenval.GetData(), lenval.GetData() + lenval.GetDataSize(),
container.begin(),
[](const uint8_t lhs, const auto rhs) {
return lhs == static_cast<uint8_t>(rhs);
}
);
}
} // namespace
class GuetzliSapiTest : public ::testing::Test {
@ -60,106 +76,66 @@ protected:
std::unique_ptr<GuetzliApi> api_;
};
TEST_F(GuetzliSapiTest, ReadDataFromFd) {
std::string input_file_path = GetPathToInputFile(IN_PNG_FILENAME);
int fd = open(input_file_path.c_str(), O_RDONLY);
ASSERT_TRUE(fd != -1) << "Error opening input file";
sapi::v::Fd remote_fd(fd);
auto send_fd_status = sandbox_->TransferToSandboxee(&remote_fd);
ASSERT_TRUE(send_fd_status.ok()) << "Error sending fd to sandboxee";
ASSERT_TRUE(remote_fd.GetRemoteFd() != -1) << "Error opening remote fd";
sapi::v::LenVal data(0);
auto read_status =
api_->ReadDataFromFd(remote_fd.GetRemoteFd(), data.PtrBoth());
ASSERT_TRUE(read_status.value_or(false)) << "Error reading data from fd";
ASSERT_EQ(data.GetDataSize(), IN_PNG_FILE_SIZE) << "Wrong size of file";
}
// TEST_F(GuetzliSapiTest, WriteDataToFd) {
// }
TEST_F(GuetzliSapiTest, ReadPng) {
std::string data = ReadFromFile(GetPathToInputFile(IN_PNG_FILENAME));
ASSERT_EQ(data.size(), IN_PNG_FILE_SIZE) << "Error reading input file";
sapi::v::LenVal in_data(data.data(), data.size());
sapi::v::Int xsize, ysize;
sapi::v::LenVal rgb_out(0);
auto status = api_->ReadPng(in_data.PtrBefore(), xsize.PtrBoth(),
ysize.PtrBoth(), rgb_out.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing png data";
ASSERT_EQ(xsize.GetValue(), 444) << "Error parsing width";
ASSERT_EQ(ysize.GetValue(), 258) << "Error parsing height";
}
TEST_F(GuetzliSapiTest, ReadJpeg) {
std::string data = ReadFromFile(GetPathToInputFile(IN_JPG_FILENAME));
ASSERT_EQ(data.size(), IN_JPG_FILE_SIZE) << "Error reading input file";
sapi::v::LenVal in_data(data.data(), data.size());
sapi::v::Int xsize, ysize;
auto status = api_->ReadJpegData(in_data.PtrBefore(), 0,
xsize.PtrBoth(), ysize.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing jpeg data";
ASSERT_EQ(xsize.GetValue(), 180) << "Error parsing width";
ASSERT_EQ(ysize.GetValue(), 180) << "Error parsing height";
}
// This test can take up to few minutes depending on your hardware
TEST_F(GuetzliSapiTest, ProcessRGB) {
std::string data = ReadFromFile(GetPathToInputFile(IN_PNG_FILENAME));
ASSERT_EQ(data.size(), IN_PNG_FILE_SIZE) << "Error reading input file";
sapi::v::LenVal in_data(data.data(), data.size());
sapi::v::Int xsize, ysize;
sapi::v::LenVal rgb_out(0);
auto status = api_->ReadPng(in_data.PtrBefore(), xsize.PtrBoth(),
ysize.PtrBoth(), rgb_out.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing png data";
ASSERT_EQ(xsize.GetValue(), 444) << "Error parsing width";
ASSERT_EQ(ysize.GetValue(), 258) << "Error parsing height";
auto quality =
api_->ButteraugliScoreQuality(static_cast<double>(DEFAULT_QUALITY_TARGET));
ASSERT_TRUE(quality.ok()) << "Error calculating butteraugli quality";
sapi::v::Struct<Params> params;
sapi::v::LenVal out_data(0);
params.mutable_data()->butteraugli_target = quality.value();
status = api_->ProcessRGBData(params.PtrBefore(), 0, rgb_out.PtrBefore(),
xsize.GetValue(), ysize.GetValue(), out_data.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing png file";
ASSERT_EQ(out_data.GetDataSize(), 38'625);
//ADD COMPARSION WITH REFERENCE OUTPUT
sapi::v::Fd in_fd(open(GetPathToInputFile(IN_PNG_FILENAME).c_str(),
O_RDONLY));
ASSERT_TRUE(in_fd.GetValue() != -1) << "Error opening input file";
ASSERT_EQ(api_->sandbox()->TransferToSandboxee(&in_fd), absl::OkStatus())
<< "Error transfering fd to sandbox";
ASSERT_TRUE(in_fd.GetRemoteFd() != -1) << "Error opening remote fd";
sapi::v::Struct<ProcessingParams> processing_params;
*processing_params.mutable_data() = {in_fd.GetRemoteFd(),
0,
DEFAULT_QUALITY_TARGET,
DEFAULT_MEMLIMIT_MB
};
sapi::v::LenVal output(0);
auto processing_result = api_->ProcessRgb(processing_params.PtrBefore(),
output.PtrBoth());
ASSERT_TRUE(processing_result.value_or(false)) << "Error processing rgb data";
ASSERT_EQ(output.GetDataSize(), PNG_EXPECTED_SIZE)
<< "Incorrect result data size";
std::string reference_data =
ReadFromFile(GetPathToInputFile(PNG_REFERENCE_FILENAME));
ASSERT_EQ(output.GetDataSize(), reference_data.size())
<< "Incorrect result data size";
ASSERT_TRUE(CompareBytesInLenValAndContainer(output, reference_data))
<< "Processed data doesn't match reference output";
}
// This test can take up to few minutes depending on your hardware
TEST_F(GuetzliSapiTest, ProcessJpeg) {
std::string data = ReadFromFile(GetPathToInputFile(IN_JPG_FILENAME));
ASSERT_EQ(data.size(), IN_JPG_FILE_SIZE) << "Error reading input file";
sapi::v::LenVal in_data(data.data(), data.size());
sapi::v::Int xsize, ysize;
auto status = api_->ReadJpegData(in_data.PtrBefore(), 0,
xsize.PtrBoth(), ysize.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing jpeg data";
ASSERT_EQ(xsize.GetValue(), 180) << "Error parsing width";
ASSERT_EQ(ysize.GetValue(), 180) << "Error parsing height";
auto quality =
api_->ButteraugliScoreQuality(static_cast<double>(DEFAULT_QUALITY_TARGET));
ASSERT_TRUE(quality.ok()) << "Error calculating butteraugli quality";
sapi::v::Struct<Params> params;
params.mutable_data()->butteraugli_target = quality.value();
sapi::v::LenVal out_data(0);
status = api_->ProcessJPEGString(params.PtrBefore(), 0, in_data.PtrBefore(),
out_data.PtrBoth());
ASSERT_TRUE(status.value_or(false)) << "Error processing jpeg file";
ASSERT_EQ(out_data.GetDataSize(), 10'816);
//ADD COMPARSION WITH REFERENCE OUTPUT
sapi::v::Fd in_fd(open(GetPathToInputFile(IN_JPG_FILENAME).c_str(),
O_RDONLY));
ASSERT_TRUE(in_fd.GetValue() != -1) << "Error opening input file";
ASSERT_EQ(api_->sandbox()->TransferToSandboxee(&in_fd), absl::OkStatus())
<< "Error transfering fd to sandbox";
ASSERT_TRUE(in_fd.GetRemoteFd() != -1) << "Error opening remote fd";
sapi::v::Struct<ProcessingParams> processing_params;
*processing_params.mutable_data() = {in_fd.GetRemoteFd(),
0,
DEFAULT_QUALITY_TARGET,
DEFAULT_MEMLIMIT_MB
};
sapi::v::LenVal output(0);
auto processing_result = api_->ProcessJpeg(processing_params.PtrBefore(),
output.PtrBoth());
ASSERT_TRUE(processing_result.value_or(false)) << "Error processing jpg data";
ASSERT_EQ(output.GetDataSize(), JPG_EXPECTED_SIZE)
<< "Incorrect result data size";
std::string reference_data =
ReadFromFile(GetPathToInputFile(JPG_REFERENCE_FILENAME));
ASSERT_EQ(output.GetDataSize(), reference_data.size())
<< "Incorrect result data size";
ASSERT_TRUE(CompareBytesInLenValAndContainer(output, reference_data))
<< "Processed data doesn't match reference output";
}
// TEST_F(GuetzliSapiTest, WriteDataToFd) {
// sapi::v::Fd fd(open(".", O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR));
// }
} // namespace tests
} // namespace sandbox
} // namespace guetzli

View File

@ -1,2 +1,131 @@
#include "gtest/gtest.h"
#include "guetzli_transaction.h"
#include "sandboxed_api/sandbox2/util/fileops.h"
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <fstream>
#include <sstream>
#include <memory>
namespace guetzli {
namespace sandbox {
namespace tests {
namespace {
constexpr const char* IN_PNG_FILENAME = "bees.png";
constexpr const char* IN_JPG_FILENAME = "nature.jpg";
constexpr const char* PNG_REFERENCE_FILENAME = "bees_reference.jpg";
constexpr const char* JPG_REFERENCE_FILENAME = "nature_reference.jpg";
constexpr int PNG_EXPECTED_SIZE = 38'625;
constexpr int JPG_EXPECTED_SIZE = 10'816;
constexpr int DEFAULT_QUALITY_TARGET = 95;
constexpr int DEFAULT_MEMLIMIT_MB = 6000;
constexpr const char* RELATIVE_PATH_TO_TESTDATA =
"/guetzli_sandboxed/tests/testdata/";
std::string GetPathToInputFile(const char* filename) {
return std::string(getenv("TEST_SRCDIR"))
+ std::string(RELATIVE_PATH_TO_TESTDATA)
+ std::string(filename);
}
std::string ReadFromFile(const std::string& filename) {
std::ifstream stream(filename, std::ios::binary);
if (!stream.is_open()) {
return "";
}
std::stringstream result;
result << stream.rdbuf();
return result.str();
}
} // namespace
TEST(GuetzliTransactionTest, TestTransactionJpg) {
sandbox2::file_util::fileops::FDCloser in_fd_closer(
open(GetPathToInputFile(IN_JPG_FILENAME).c_str(), O_RDONLY));
ASSERT_TRUE(in_fd_closer.get() != -1) << "Error opening input jpg file";
sandbox2::file_util::fileops::FDCloser out_fd_closer(
open(".", O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR));
ASSERT_TRUE(out_fd_closer.get() != -1) << "Error creating temp output file";
TransactionParams params = {
in_fd_closer.get(),
out_fd_closer.get(),
0,
DEFAULT_QUALITY_TARGET,
DEFAULT_MEMLIMIT_MB
};
{
GuetzliTransaction transaction(std::move(params));
auto result = transaction.Run();
ASSERT_TRUE(result.ok()) << result.ToString();
}
ASSERT_TRUE(fcntl(out_fd_closer.get(), F_GETFD) != -1 || errno != EBADF)
<< "Local output fd closed";
auto reference_data = ReadFromFile(GetPathToInputFile(JPG_REFERENCE_FILENAME));
auto output_size = lseek(out_fd_closer.get(), 0, SEEK_END);
ASSERT_EQ(reference_data.size(), output_size)
<< "Different sizes of reference and returned data";
ASSERT_EQ(lseek(out_fd_closer.get(), 0, SEEK_SET), 0)
<< "Error repositioning out file";
std::unique_ptr<char[]> buf(new char[output_size]);
auto status = read(out_fd_closer.get(), buf.get(), output_size);
ASSERT_EQ(status, output_size) << "Error reading data from temp output file";
ASSERT_TRUE(
std::equal(buf.get(), buf.get() + output_size, reference_data.begin()))
<< "Returned data doesn't match reference";
}
TEST(GuetzliTransactionTest, TestTransactionPng) {
sandbox2::file_util::fileops::FDCloser in_fd_closer(
open(GetPathToInputFile(IN_PNG_FILENAME).c_str(), O_RDONLY));
ASSERT_TRUE(in_fd_closer.get() != -1) << "Error opening input png file";
sandbox2::file_util::fileops::FDCloser out_fd_closer(
open(".", O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR));
ASSERT_TRUE(out_fd_closer.get() != -1) << "Error creating temp output file";
TransactionParams params = {
in_fd_closer.get(),
out_fd_closer.get(),
0,
DEFAULT_QUALITY_TARGET,
DEFAULT_MEMLIMIT_MB
};
{
GuetzliTransaction transaction(std::move(params));
auto result = transaction.Run();
ASSERT_TRUE(result.ok()) << result.ToString();
}
ASSERT_TRUE(fcntl(out_fd_closer.get(), F_GETFD) != -1 || errno != EBADF)
<< "Local output fd closed";
auto reference_data = ReadFromFile(GetPathToInputFile(PNG_REFERENCE_FILENAME));
auto output_size = lseek(out_fd_closer.get(), 0, SEEK_END);
ASSERT_EQ(reference_data.size(), output_size)
<< "Different sizes of reference and returned data";
ASSERT_EQ(lseek(out_fd_closer.get(), 0, SEEK_SET), 0)
<< "Error repositioning out file";
std::unique_ptr<char[]> buf(new char[output_size]);
auto status = read(out_fd_closer.get(), buf.get(), output_size);
ASSERT_EQ(status, output_size) << "Error reading data from temp output file";
ASSERT_TRUE(
std::equal(buf.get(), buf.get() + output_size, reference_data.begin()))
<< "Returned data doesn't match refernce";
}
} // namespace tests
} // namespace sandbox
} // namespace guetzli

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB