From 948666962cc0a5757d147b295ab526674636fac3 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 29 Dec 2017 00:08:56 +0100 Subject: Add parse config test --- tests/src/confTest/confTest.cpp | 26 ++++++++++++++++++++++++++ tests/src/confTest/project.conf | 8 ++++++++ tests/src/function.cpp | 6 ------ 3 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 tests/src/confTest/confTest.cpp create mode 100644 tests/src/confTest/project.conf delete mode 100644 tests/src/function.cpp (limited to 'tests') diff --git a/tests/src/confTest/confTest.cpp b/tests/src/confTest/confTest.cpp new file mode 100644 index 0000000..38b4971 --- /dev/null +++ b/tests/src/confTest/confTest.cpp @@ -0,0 +1,26 @@ +#include "catch2/0.1.0/catch.hpp" +#include "../../../include/Conf.hpp" + +using namespace sibs; + +TEST_CASE("parse config") +{ + SibsConfig sibsConfig("tests/src/confTest"); + Result result = Config::readFromFile("tests/src/confTest/project.conf", sibsConfig); + if(result.isErr()) + { + fprintf(stderr, "%s", result.getErrMsg().c_str()); + exit(1); + } + REQUIRE(sibsConfig.getPackageName() == "confTest"); + REQUIRE(sibsConfig.getPackageType() == PackageType::LIBRARY); + REQUIRE(sibsConfig.getDependencies().size() == 2); + + const auto &xxhashDependency = sibsConfig.getDependencies()[0]; + REQUIRE(xxhashDependency.name == "xxhash"); + REQUIRE(xxhashDependency.version == "0.1.0"); + + const auto &catch2Dependency = sibsConfig.getDependencies()[1]; + REQUIRE(catch2Dependency.name == "catch2"); + REQUIRE(catch2Dependency.version == "1.0.0"); +} diff --git a/tests/src/confTest/project.conf b/tests/src/confTest/project.conf new file mode 100644 index 0000000..e50ad9c --- /dev/null +++ b/tests/src/confTest/project.conf @@ -0,0 +1,8 @@ +[package] +name = "confTest" +version = "0.1.0" +type = "library" + +[dependencies] +xxhash = "0.1.0" +catch2 = "1.0.0" diff --git a/tests/src/function.cpp b/tests/src/function.cpp deleted file mode 100644 index 5f14f33..0000000 --- a/tests/src/function.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "catch2/0.1.0/catch.hpp" - -TEST_CASE("dummy") -{ - -} -- cgit v1.2.3