-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8886 from obsidiansystems/flatten-tests
Move unit tests to separate directories, and document
- Loading branch information
Showing
134 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-test-support | ||
|
||
libexpr-test-support_NAME = libnixexpr-test-support | ||
|
||
libexpr-test-support_DIR := $(d) | ||
|
||
ifeq ($(INSTALL_UNIT_TESTS), yes) | ||
libexpr-test-support_INSTALL_DIR := $(checklibdir) | ||
else | ||
libexpr-test-support_INSTALL_DIR := | ||
endif | ||
|
||
libexpr-test-support_SOURCES := \ | ||
$(wildcard $(d)/tests/*.cc) \ | ||
$(wildcard $(d)/tests/value/*.cc) | ||
|
||
libexpr-test-support_CXXFLAGS += $(libexpr-tests_EXTRA_INCLUDES) | ||
|
||
libexpr-test-support_LIBS = \ | ||
libstore-test-support libutil-test-support \ | ||
libexpr libstore libutil | ||
|
||
libexpr-test-support_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-support \ | ||
-I tests/unit/libstore-support \ | ||
-I tests/unit/libutil-support \ | ||
-I src/libexpr \ | ||
-I src/libfetchers \ | ||
-I src/libstore \ | ||
-I src/libutil | ||
|
||
libexpr-tests_CXXFLAGS += $(libexpr-tests_EXTRA_INCLUDES) | ||
|
||
libexpr-tests_LIBS = \ | ||
libexpr-test-support libstore-test-support libutils-test-support \ | ||
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.