mirror of
https://github.com/NixOS/nix.git
synced 2025-11-19 16:59:35 +01:00
* It is tough to contribute to a project that doesn't use a formatter, * It is extra hard to contribute to a project which has configured the formatter, but ignores it for some files * Code formatting makes it harder to hide obscure / weird bugs by accident or on purpose, Let's rip the bandaid off? Note that PRs currently in flight should be able to be merged relatively easily by applying `clang-format` to their tip prior to merge.
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include "nix/store/content-address.hh"
|
|
|
|
namespace nix {
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
* ContentAddressMethod::parse, ContentAddressMethod::render
|
|
* --------------------------------------------------------------------------*/
|
|
|
|
TEST(ContentAddressMethod, testRoundTripPrintParse_1)
|
|
{
|
|
for (ContentAddressMethod cam : {
|
|
ContentAddressMethod::Raw::Text,
|
|
ContentAddressMethod::Raw::Flat,
|
|
ContentAddressMethod::Raw::NixArchive,
|
|
ContentAddressMethod::Raw::Git,
|
|
}) {
|
|
EXPECT_EQ(ContentAddressMethod::parse(cam.render()), cam);
|
|
}
|
|
}
|
|
|
|
TEST(ContentAddressMethod, testRoundTripPrintParse_2)
|
|
{
|
|
for (const std::string_view camS : {
|
|
"text",
|
|
"flat",
|
|
"nar",
|
|
"git",
|
|
}) {
|
|
EXPECT_EQ(ContentAddressMethod::parse(camS).render(), camS);
|
|
}
|
|
}
|
|
|
|
TEST(ContentAddressMethod, testParseContentAddressMethodOptException)
|
|
{
|
|
EXPECT_THROW(ContentAddressMethod::parse("narwhal"), UsageError);
|
|
}
|
|
|
|
} // namespace nix
|