X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0a98e0dd953ca1a907d77f3c4eabdce39e62c1e5..fc9db1be8c886672e63a1589a5a2b8e9a9561818:/src/xbt/config_test.cpp diff --git a/src/xbt/config_test.cpp b/src/xbt/config_test.cpp index 8b419246fe..ac54d79b50 100644 --- a/src/xbt/config_test.cpp +++ b/src/xbt/config_test.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -13,52 +13,38 @@ XBT_PUBLIC_DATA simgrid::config::Config* simgrid_config; -static void make_set() +TEST_CASE("xbt::config: Configuration support", "config") { XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_cfg); xbt_log_threshold_set(&_XBT_LOGV(xbt_cfg), xbt_log_priority_critical); + + auto temp = simgrid_config; simgrid_config = nullptr; simgrid::config::declare_flag("speed", "description", 0); simgrid::config::declare_flag("peername", "description", ""); simgrid::config::declare_flag("user", "description", ""); -} - -TEST_CASE("xbt::config: Configuration support", "config") -{ SECTION("Alloc and free a config set") { - auto temp = simgrid_config; - make_set(); INFO("Alloc and free a config set"); simgrid::config::set_parse("peername:veloce user:bidule"); - simgrid::config::finalize(); - simgrid_config = temp; } SECTION("Data retrieving tests") { - auto temp = simgrid_config; - make_set(); - INFO("Get a single value"); /* get_single_value */ simgrid::config::set_parse("peername:toto:42 speed:42"); int ival = simgrid::config::get_value("speed"); REQUIRE(ival == 42); // Unexpected value for speed - INFO("Access to a non-existant entry"); + INFO("Access to a non-existent entry"); REQUIRE_THROWS_AS(simgrid::config::set_parse("color:blue"), std::out_of_range); - - simgrid::config::finalize(); - simgrid_config = temp; } SECTION("C++ flags") { - auto temp = simgrid_config; - make_set(); INFO("C++ declaration of flags"); simgrid::config::Flag int_flag("int", "", 0); @@ -74,8 +60,8 @@ TEST_CASE("xbt::config: Configuration support", "config") REQUIRE(double_flag == 8.0); // Check double flag REQUIRE(bool_flag1); // Check bool1 flag REQUIRE(not bool_flag2); // Check bool2 flag - - simgrid::config::finalize(); - simgrid_config = temp; } + + simgrid::config::finalize(); + simgrid_config = temp; }