mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 14:32:42 +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.
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include "nix/store/downstream-placeholder.hh"
|
|
|
|
namespace nix {
|
|
|
|
TEST(DownstreamPlaceholder, unknownCaOutput)
|
|
{
|
|
/**
|
|
* We set these in tests rather than the regular globals so we don't have
|
|
* to worry about race conditions if the tests run concurrently.
|
|
*/
|
|
ExperimentalFeatureSettings mockXpSettings;
|
|
mockXpSettings.set("experimental-features", "ca-derivations");
|
|
|
|
ASSERT_EQ(
|
|
DownstreamPlaceholder::unknownCaOutput(
|
|
StorePath{"g1w7hy3qg1w7hy3qg1w7hy3qg1w7hy3q-foo.drv"}, "out", mockXpSettings)
|
|
.render(),
|
|
"/0c6rn30q4frawknapgwq386zq358m8r6msvywcvc89n6m5p2dgbz");
|
|
}
|
|
|
|
TEST(DownstreamPlaceholder, unknownDerivation)
|
|
{
|
|
/**
|
|
* Same reason as above
|
|
*/
|
|
ExperimentalFeatureSettings mockXpSettings;
|
|
mockXpSettings.set("experimental-features", "dynamic-derivations ca-derivations");
|
|
|
|
ASSERT_EQ(
|
|
DownstreamPlaceholder::unknownDerivation(
|
|
DownstreamPlaceholder::unknownCaOutput(
|
|
StorePath{"g1w7hy3qg1w7hy3qg1w7hy3qg1w7hy3q-foo.drv.drv"}, "out", mockXpSettings),
|
|
"out",
|
|
mockXpSettings)
|
|
.render(),
|
|
"/0gn6agqxjyyalf0dpihgyf49xq5hqxgw100f0wydnj6yqrhqsb3w");
|
|
}
|
|
|
|
} // namespace nix
|