-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tests to separate directories, and document
Today, with the tests inside a `tests` intermingled with the corresponding library's source code, we have a few problems: - We have to be careful that wildcards don't end up with tests being built as part of Nix proper, or test headers being installed as part of Nix proper. - Tests in libraries but not executables is not right: - It means each executable runs the previous unit tests again, because it needs the libraries. - It doesn't work right on Windows, which doesn't want you to load a DLL just for the side global variable . It could be made to work with the dlopen equivalent, but that's gross! This reorg solves these problems. There is a remaining problem which is that sibbling headers (like `hash.hh` the test header vs `hash.hh` the main `libnixutil` header) end up shadowing each other. This PR doesn't solve that. That is left as future work for a future PR. Co-authored-by: Valentin Gagarin <[email protected]>
- Loading branch information
1 parent
da084af
commit c10b7c7
Showing
133 changed files
with
464 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
libraries += libexpr-tests-lib | ||
|
||
libexpr-tests-lib_NAME = libnixexpr-tests | ||
|
||
libexpr-tests-lib_DIR := $(d) | ||
|
||
ifeq ($(INSTALL_UNIT_TESTS), yes) | ||
libexpr-tests-lib_INSTALL_DIR := $(checklibdir) | ||
else | ||
libexpr-tests-lib_INSTALL_DIR := | ||
endif | ||
|
||
libexpr-tests-lib_SOURCES := \ | ||
$(wildcard $(d)/tests/*.cc) \ | ||
$(wildcard $(d)/tests/value/*.cc) | ||
|
||
libexpr-tests-lib_CXXFLAGS += $(libexpr-tests_EXTRA_INCLUDES) | ||
|
||
libexpr-tests-lib_LIBS = \ | ||
libstore-tests-lib libutil-tests-lib \ | ||
libexpr libstore libutil | ||
|
||
libexpr-tests-lib_LDFLAGS := -lrapidcheck |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#include <rapidcheck.h> | ||
|
||
#include "tests/path.hh" | ||
#include "tests/value/context.hh" | ||
|
||
namespace rc { | ||
using namespace nix; | ||
|
||
Gen<NixStringContextElem::DrvDeep> Arbitrary<NixStringContextElem::DrvDeep>::arbitrary() | ||
{ | ||
return gen::just(NixStringContextElem::DrvDeep { | ||
.drvPath = *gen::arbitrary<StorePath>(), | ||
}); | ||
} | ||
|
||
Gen<NixStringContextElem> Arbitrary<NixStringContextElem>::arbitrary() | ||
{ | ||
switch (*gen::inRange<uint8_t>(0, std::variant_size_v<NixStringContextElem::Raw>)) { | ||
case 0: | ||
return gen::just<NixStringContextElem>(*gen::arbitrary<NixStringContextElem::Opaque>()); | ||
case 1: | ||
return gen::just<NixStringContextElem>(*gen::arbitrary<NixStringContextElem::DrvDeep>()); | ||
case 2: | ||
return gen::just<NixStringContextElem>(*gen::arbitrary<NixStringContextElem::Built>()); | ||
default: | ||
assert(false); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
check: libexpr-tests_RUN | ||
|
||
programs += libexpr-tests | ||
|
||
libexpr-tests_NAME := libnixexpr-tests | ||
|
||
libexpr-tests_ENV := _NIX_TEST_UNIT_DATA=$(d)/data | ||
|
||
libexpr-tests_DIR := $(d) | ||
|
||
ifeq ($(INSTALL_UNIT_TESTS), yes) | ||
libexpr-tests_INSTALL_DIR := $(checkbindir) | ||
else | ||
libexpr-tests_INSTALL_DIR := | ||
endif | ||
|
||
libexpr-tests_SOURCES := \ | ||
$(wildcard $(d)/*.cc) \ | ||
$(wildcard $(d)/value/*.cc) | ||
|
||
libexpr-tests_EXTRA_INCLUDES = \ | ||
-I tests/unit/libexpr-lib \ | ||
-I tests/unit/libstore \ | ||
-I tests/unit/libutil-lib \ | ||
-I src/libexpr \ | ||
-I src/libfetchers \ | ||
-I src/libstore \ | ||
-I src/libutil | ||
|
||
libexpr-tests_CXXFLAGS += $(libexpr-tests_EXTRA_INCLUDES) | ||
|
||
libexpr-tests_LIBS = \ | ||
libexpr-tests-lib libstore-tests-lib libutils-tests-lib \ | ||
libexpr libfetchers libstore libutil | ||
|
||
libexpr-tests_LDFLAGS := -lrapidcheck $(GTEST_LIBS) -lgmock |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.