From 619def44c1cca9f3cdf63544d5f24f2c7a7d9b77 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 22 Feb 2022 17:03:21 +0100 Subject: Initial self-hosting commit This is the initial version of our tool that is able to build itself. In can be bootstrapped by ./bin/bootstrap.py Co-authored-by: Oliver Reiche Co-authored-by: Victor Moreno --- .../build_engine/base_maps/entity_name.test.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/buildtool/build_engine/base_maps/entity_name.test.cpp (limited to 'test/buildtool/build_engine/base_maps/entity_name.test.cpp') diff --git a/test/buildtool/build_engine/base_maps/entity_name.test.cpp b/test/buildtool/build_engine/base_maps/entity_name.test.cpp new file mode 100644 index 00000000..ddcea10b --- /dev/null +++ b/test/buildtool/build_engine/base_maps/entity_name.test.cpp @@ -0,0 +1,22 @@ +#include "catch2/catch.hpp" +#include "src/buildtool/build_engine/base_maps/entity_name.hpp" + +TEST_CASE("Normal module names") { + using EN = BuildMaps::Base::EntityName; + CHECK(EN::normal_module_name("foo/bar") == "foo/bar"); + CHECK(EN::normal_module_name("foo/bar/") == "foo/bar"); + CHECK(EN::normal_module_name("./foo/bar") == "foo/bar"); + CHECK(EN::normal_module_name("/foo/bar") == "foo/bar"); + CHECK(EN::normal_module_name("/foo/bar/.") == "foo/bar"); + CHECK(EN::normal_module_name("/foo/bar/baz/..") == "foo/bar"); + CHECK(EN::normal_module_name("foo/baz/../bar") == "foo/bar"); + CHECK(EN::normal_module_name("../../../foo/bar") == "foo/bar"); + + CHECK(EN::normal_module_name("").empty()); + CHECK(EN::normal_module_name(".").empty()); + CHECK(EN::normal_module_name("./").empty()); + CHECK(EN::normal_module_name("./.").empty()); + CHECK(EN::normal_module_name("/").empty()); + CHECK(EN::normal_module_name("/.").empty()); + CHECK(EN::normal_module_name("..").empty()); +} -- cgit v1.2.3