forked from lix-project/lix
ab40b2c5d0
Add protocol versions to `{Worker,Serve}Proto::*Conn`
(cherry picked from commit 4d17c59d8d059a5b39f1d1da2b58f2ec8da44861)
Change-Id: I497af39deb792e50c157a1305d8c9e722798740b
92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
#include <nlohmann/json.hpp>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "tests/libstore.hh"
|
|
#include "characterization.hh"
|
|
|
|
namespace nix {
|
|
|
|
template<class Proto, const char * protocolDir>
|
|
class ProtoTest : public LibStoreTest
|
|
{
|
|
protected:
|
|
Path unitTestData = getUnitTestData() + "/libstore/" + protocolDir;
|
|
|
|
Path goldenMaster(std::string_view testStem) {
|
|
return unitTestData + "/" + testStem + ".bin";
|
|
}
|
|
};
|
|
|
|
template<class Proto, const char * protocolDir>
|
|
class VersionedProtoTest : public ProtoTest<Proto, protocolDir>
|
|
{
|
|
public:
|
|
/**
|
|
* Golden test for `T` reading
|
|
*/
|
|
template<typename T>
|
|
void readTest(PathView testStem, typename Proto::Version version, T value)
|
|
{
|
|
if (testAccept())
|
|
{
|
|
GTEST_SKIP() << "Cannot read golden master because another test is also updating it";
|
|
}
|
|
else
|
|
{
|
|
auto expected = readFile(ProtoTest<Proto, protocolDir>::goldenMaster(testStem));
|
|
|
|
T got = ({
|
|
StringSource from { expected };
|
|
Proto::template Serialise<T>::read(
|
|
*LibStoreTest::store,
|
|
typename Proto::ReadConn {
|
|
.from = from,
|
|
.version = version,
|
|
});
|
|
});
|
|
|
|
ASSERT_EQ(got, value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Golden test for `T` write
|
|
*/
|
|
template<typename T>
|
|
void writeTest(PathView testStem, typename Proto::Version version, const T & value)
|
|
{
|
|
auto file = ProtoTest<Proto, protocolDir>::goldenMaster(testStem);
|
|
|
|
StringSink to;
|
|
Proto::write(
|
|
*LibStoreTest::store,
|
|
typename Proto::WriteConn {
|
|
.to = to,
|
|
.version = version,
|
|
},
|
|
value);
|
|
|
|
if (testAccept())
|
|
{
|
|
createDirs(dirOf(file));
|
|
writeFile(file, to.s);
|
|
GTEST_SKIP() << "Updating golden master";
|
|
}
|
|
else
|
|
{
|
|
auto expected = readFile(file);
|
|
ASSERT_EQ(to.s, expected);
|
|
}
|
|
}
|
|
};
|
|
|
|
#define VERSIONED_CHARACTERIZATION_TEST(FIXTURE, NAME, STEM, VERSION, VALUE) \
|
|
TEST_F(FIXTURE, NAME ## _read) { \
|
|
readTest(STEM, VERSION, VALUE); \
|
|
} \
|
|
TEST_F(FIXTURE, NAME ## _write) { \
|
|
writeTest(STEM, VERSION, VALUE); \
|
|
}
|
|
|
|
}
|