mirror of
https://github.com/NixOS/nix.git
synced 2025-11-14 22:42:41 +01:00
36 lines
788 B
C++
36 lines
788 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "nix/store/local-store.hh"
|
|
|
|
// Needed for template specialisations. This is not good! When we
|
|
// overhaul how store configs work, this should be fixed.
|
|
#include "nix/util/args.hh"
|
|
#include "nix/util/config-impl.hh"
|
|
#include "nix/util/abstract-setting-to-json.hh"
|
|
|
|
namespace nix {
|
|
|
|
TEST(LocalStore, constructConfig_rootQueryParam)
|
|
{
|
|
LocalStoreConfig config{
|
|
"local",
|
|
"",
|
|
{
|
|
{
|
|
"root",
|
|
"/foo/bar",
|
|
},
|
|
},
|
|
};
|
|
|
|
EXPECT_EQ(config.rootDir.get(), std::optional{"/foo/bar"});
|
|
}
|
|
|
|
TEST(LocalStore, constructConfig_rootPath)
|
|
{
|
|
LocalStoreConfig config{"local", "/foo/bar", {}};
|
|
|
|
EXPECT_EQ(config.rootDir.get(), std::optional{"/foo/bar"});
|
|
}
|
|
|
|
} // namespace nix
|