mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 08:46:16 +02:00
36 lines
1 KiB
C++
36 lines
1 KiB
C++
|
#include <gtest/gtest.h>
|
||
|
|
||
|
#include "content-address.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
/* ----------------------------------------------------------------------------
|
||
|
* ContentAddressMethod::parse, ContentAddressMethod::render
|
||
|
* --------------------------------------------------------------------------*/
|
||
|
|
||
|
TEST(ContentAddressMethod, testRoundTripPrintParse_1) {
|
||
|
for (const ContentAddressMethod & cam : {
|
||
|
ContentAddressMethod { TextIngestionMethod {} },
|
||
|
ContentAddressMethod { FileIngestionMethod::Flat },
|
||
|
ContentAddressMethod { FileIngestionMethod::Recursive },
|
||
|
}) {
|
||
|
EXPECT_EQ(ContentAddressMethod::parse(cam.render()), cam);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TEST(ContentAddressMethod, testRoundTripPrintParse_2) {
|
||
|
for (const std::string_view camS : {
|
||
|
"text",
|
||
|
"flat",
|
||
|
"nar",
|
||
|
}) {
|
||
|
EXPECT_EQ(ContentAddressMethod::parse(camS).render(), camS);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TEST(ContentAddressMethod, testParseContentAddressMethodOptException) {
|
||
|
EXPECT_THROW(ContentAddressMethod::parse("narwhal"), UsageError);
|
||
|
}
|
||
|
|
||
|
}
|