8#include <gtest/gtest.h>
10#include "arcane/utils/ValueConvert.h"
11#include "arcane/utils/internal/ValueConvertInternal.h"
27template <
typename T>
void _checkBad(
const String& s)
30 bool is_bad = builtInGetValue(x, s);
31 std::cout <<
"CheckBad S=" << s <<
" X=" << x <<
" is_bad?=" << is_bad <<
"\n";
35void _checkDouble(
const String& s,
double expected_x)
38 bool is_bad = builtInGetValue(x, s);
39 std::cout <<
"S=" << s <<
" X=" << x <<
" is_bad?=" << is_bad <<
"\n";
41 ASSERT_EQ(x, expected_x);
44void _checkNaN(
const String& s)
47 bool is_bad = builtInGetValue(x, s);
48 std::cout <<
"S=" << s <<
" X=" << x <<
" is_bad?=" << is_bad <<
"\n";
58void _checkValidDouble(
double value,
double expected_value)
61 if (std::isnan(expected_value)) {
62 ASSERT_TRUE(std::isnan(value)) <<
"value " << value <<
" is not 'nan'";
65 ASSERT_EQ(value, expected_value);
71 bool is_bad = builtInGetValue(v, s);
72 std::cout <<
"S=" << s <<
" Real2=" << v <<
" is_bad?=" << is_bad <<
"\n";
73 ASSERT_FALSE(is_bad) <<
"Can not convert '" << s <<
"' to Real2";
75 _checkValidDouble(v.
x, expected_v.
x);
76 _checkValidDouble(v.
y, expected_v.
y);
78 ASSERT_EQ(v, expected_v);
84 std::cout <<
"Real3Compare s='" << s <<
"'\n";
86 bool is_bad = builtInGetValue(v, s);
87 std::cout <<
"S=" << s <<
" Real3=" << v <<
" is_bad?=" << is_bad <<
"\n";
88 ASSERT_FALSE(is_bad) <<
"Can not convert '" << s <<
"' to Real3";
90 _checkValidDouble(v.
x, expected_v.
x);
91 _checkValidDouble(v.
y, expected_v.
y);
92 _checkValidDouble(v.
z, expected_v.
z);
94 ASSERT_EQ(v, expected_v);
98void _testDoubleConvert(
bool use_from_chars)
105 bool is_bad = builtInGetValue(x, s);
106 std::cout <<
"S=" << s <<
" X=" << x <<
" is_bad?=" << is_bad <<
"\n";
112 _checkBad<double>(
"");
113 _checkDouble(
"-0x1.81e03f705857bp-16", -2.3e-05);
114 _checkDouble(
"0x1.81e03f705857bp-16", 2.3e-05);
115 _checkDouble(
"+0x1.81e03f705857bp-16", 2.3e-05);
116 _checkDouble(
" +1.23e42", 1.23e42);
117 _checkDouble(
" -1.23e42", -1.23e42);
118 if (!use_from_chars) {
119 _checkDouble(
"+1.23e42", 1.23e42);
122 _checkBad<double>(
"d2");
123 _checkBad<double>(
"2.3w");
126 Real inf_x = std::numeric_limits<Real>::infinity();
127 _checkDouble(
"inf", inf_x);
128 _checkDouble(
" INF", inf_x);
129 _checkDouble(
" infinity", inf_x);
130 _checkDouble(
"INFINITY", inf_x);
133 Real minus_inf_x = -std::numeric_limits<Real>::infinity();
134 _checkDouble(
"-inf", minus_inf_x);
135 _checkDouble(
" -INF", minus_inf_x);
136 _checkDouble(
" -infinity", minus_inf_x);
137 _checkDouble(
"-INFINITY", minus_inf_x);
147 String s3 =
"23123.132e123";
149 Int32 nb_iter = 1000000 * 10;
151 for (Int32 i = 0; i < nb_iter; ++i) {
153 builtInGetValue(v, s3);
156 std::cout <<
"Total=" << total <<
"\n";
160void _testReal2Convert(
bool use_same_that_real)
162 impl::arcaneSetUseSameValueConvertForAllReal(use_same_that_real);
163 Real v_nan = std::numeric_limits<double>::quiet_NaN();
164 _checkReal2(
"2.3e1 -1.2",
Real2(2.3e1, -1.2));
165 if (use_same_that_real) {
166 _checkReal2(
"-1.3 nan",
Real2(-1.3, v_nan));
167 _checkReal2(
" 2.3 -1.3",
Real2(2.3, -1.3));
169 _checkBad<Real2>(
"2.3 1.2w");
170 _checkBad<Real2>(
"2.3x");
171 _checkBad<Real2>(
" y2.3 1.2");
174void _testReal3Convert(
bool use_same_that_real)
176 impl::arcaneSetUseSameValueConvertForAllReal(use_same_that_real);
177 Real v_nan = std::numeric_limits<double>::quiet_NaN();
178 Real v_inf = std::numeric_limits<double>::infinity();
179 _checkReal3(
"2.3e1 -1.2 1.5",
Real3(2.3e1, -1.2, 1.5));
180 if (use_same_that_real) {
181 _checkReal3(
"-1.3 nan 4.6",
Real3(-1.3, v_nan, 4.6));
182 _checkReal3(
"1.3 4.2 inf",
Real3(1.3, 4.2, v_inf));
183 _checkReal3(
"-2.1\t -1.5 1.0e5",
Real3(-2.1, -1.5, 1.0e5));
184 _checkReal3(
" -2.1 -1.5 1.0e5",
Real3(-2.1, -1.5, 1.0e5));
187 _checkBad<Real3>(
"2.3 1.2w");
188 _checkBad<Real3>(
"2.3x");
189 _checkBad<Real3>(
"2.3 1.2");
190 _checkBad<Real3>(
"2.3 -1.2ee2 4.5");
191 _checkBad<Real3>(
"z2.3 -1.2e2 -2323.3");
192 _checkBad<Real3>(
"2.3 -1.2e2 -2323.3x");
203TEST(ValueConvert, Basic)
205 std::cout <<
"TEST_ValueConvert Basic\n";
206 impl::arcaneSetValueConvertVerbosity(1);
208#if defined(ARCANE_HAS_CXX20)
209 impl::arcaneSetIsValueConvertUseFromChars(
true);
210 _testDoubleConvert(
true);
211 _testReal2Convert(
true);
212 _testReal2Convert(
false);
213 _testReal3Convert(
true);
214 _testReal3Convert(
false);
217 impl::arcaneSetIsValueConvertUseFromChars(
false);
218 _testDoubleConvert(
false);
219 _testReal2Convert(
true);
220 _testReal2Convert(
false);
221 _testReal3Convert(
true);
222 _testReal3Convert(
false);
225TEST(ValueConvert, TryParse)
#define ASSERT_FALSE(condition)
Vérifie que condition est faux.
#define ASSERT_TRUE(condition)
Vérifie que condition est vrai.
Classe gérant un vecteur de réel de dimension 2.
Classe gérant un vecteur de réel de dimension 3.
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Real y
deuxième composante du couple
Real x
première composante du couple
Real y
deuxième composante du triplet
Real z
troisième composante du triplet
Real x
première composante du triplet