1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/*************************************************************************
* Copyright (C) 2019-2022 Blue Brain Project
*
* This file is part of NMODL distributed under the terms of the GNU
* Lesser General Public License. See top-level LICENSE file for details.
*************************************************************************/
#include <catch2/catch_test_macros.hpp>
#include "codegen/codegen_cpp_visitor.hpp"
#include "codegen/codegen_utils.hpp"
using namespace nmodl;
using namespace visitor;
using namespace codegen;
using input_result_map = std::unordered_map<std::string, std::string>;
SCENARIO("C codegen utility functions", "[codegen][util][c]") {
GIVEN("Double constant as string") {
std::string double_constant = "0.012345678901234567";
THEN("Codegen C Visitor prints double with same precision") {
auto nmodl_constant_result = codegen::utils::format_double_string<CodegenCVisitor>(
double_constant);
REQUIRE(nmodl_constant_result == double_constant);
}
}
GIVEN("Integer constant as string") {
std::string double_constant = "1";
std::string codegen_output = "1.0";
THEN("Codegen C Visitor prints integer as double number") {
auto nmodl_constant_result = codegen::utils::format_double_string<CodegenCVisitor>(
double_constant);
REQUIRE(nmodl_constant_result == codegen_output);
}
}
GIVEN("Double constants in scientific notation as strings") {
input_result_map tests({{"1e+18", "1e+18"}, {"1e-18", "1e-18"}, {"1E18", "1E18"}});
THEN("Codegen C Visitor prints doubles with scientific notation") {
for (const auto& test: tests) {
REQUIRE(codegen::utils::format_double_string<CodegenCVisitor>(test.first) ==
test.second);
}
}
}
GIVEN("Float constant as string") {
std::string float_constant = "0.01234567";
THEN("Codegen C Visitor prints float with same precision") {
auto nmodl_constant_result = codegen::utils::format_float_string<CodegenCVisitor>(
float_constant);
REQUIRE(nmodl_constant_result == float_constant);
}
}
GIVEN("Float constant as string") {
std::string float_constant = "1";
std::string codegen_output = "1.0";
THEN("Codegen C Visitor prints integer as double number") {
auto nmodl_constant_result = codegen::utils::format_float_string<CodegenCVisitor>(
float_constant);
REQUIRE(nmodl_constant_result == codegen_output);
}
}
GIVEN("Float constants in scientific notation as strings") {
input_result_map tests({{"1e+18", "1e+18"}, {"1e-18", "1e-18"}, {"1E18", "1E18"}});
THEN("Codegen C Visitor prints doubles with scientific notation") {
for (const auto& test: tests) {
REQUIRE(codegen::utils::format_float_string<CodegenCVisitor>(test.first) ==
test.second);
}
}
}
}
|