File: itkNumberToStringGTest.cxx

package info (click to toggle)
insighttoolkit5 5.4.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704,384 kB
  • sloc: cpp: 783,592; ansic: 628,724; xml: 44,704; fortran: 34,250; python: 22,874; sh: 4,078; pascal: 2,636; lisp: 2,158; makefile: 464; yacc: 328; asm: 205; perl: 203; lex: 146; tcl: 132; javascript: 98; csh: 81
file content (219 lines) | stat: -rw-r--r-- 7,510 bytes parent folder | download
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/*=========================================================================
 *
 *  Copyright NumFOCUS
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *         https://www.apache.org/licenses/LICENSE-2.0.txt
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 *=========================================================================*/

// First include the header file to be tested:
#include "itkNumberToString.h"
#include <gtest/gtest.h>
#include <cmath> // For std::pow.

namespace
{

template <typename>
constexpr const char * floatingPointTypeName = "unspecified type";
template <>
constexpr const char * floatingPointTypeName<float> = "float";
template <>
constexpr const char * floatingPointTypeName<double> = "double";


template <typename TValue>
void
Test_all_digits()
{
  const itk::NumberToString<TValue> numberToString{};

  for (auto i = 9; i >= 0; --i)
  {
    EXPECT_EQ(numberToString(i), std::to_string(i));
  }
}


template <typename TValue>
void
Test_non_finite_special_floating_point_values()
{
  using NumericLimitsType = std::numeric_limits<TValue>;
  const itk::NumberToString<TValue> numberToString{};
  const auto                        message = std::string("Floating point type: ") + floatingPointTypeName<TValue>;

  EXPECT_EQ(numberToString(NumericLimitsType::quiet_NaN()), "NaN") << message;
  EXPECT_EQ(numberToString(NumericLimitsType::infinity()), "Infinity") << message;
  EXPECT_EQ(numberToString(-NumericLimitsType::infinity()), "-Infinity") << message;
}


template <typename TValue>
void
Test_round_trip_of_finite_numeric_limits()
{
  using NumericLimitsType = std::numeric_limits<TValue>;
  const itk::NumberToString<TValue> numberToString{};
  const auto                        message = std::string("Floating point type: ") + floatingPointTypeName<TValue>;

  for (const TValue expectedValue : { NumericLimitsType::lowest(),
                                      NumericLimitsType::epsilon(),
                                      NumericLimitsType::round_error(),
                                      NumericLimitsType::denorm_min(),
                                      NumericLimitsType::min(),
                                      NumericLimitsType::max() })
  {
    std::istringstream inputStream{ numberToString(expectedValue) };
    EXPECT_FALSE(inputStream.eof()) << message;
    TValue actualValue;
    inputStream >> actualValue;
    EXPECT_TRUE(inputStream.eof()) << message;
    EXPECT_EQ(actualValue, expectedValue) << message;
  }
}


template <typename TValue>
void
Test_decimal_notation_supports_up_to_twentyone_digits()
{
  const itk::NumberToString<TValue> numberToString{};
  const auto                        message = std::string("Floating point type: ") + floatingPointTypeName<TValue>;

  for (int8_t exponent{ 20 }; exponent > 0; --exponent)
  {
    const TValue power_of_ten{ std::pow(TValue{ 10 }, static_cast<TValue>(exponent)) };

    // Test +/- 10 ^ exponent
    EXPECT_EQ(numberToString(power_of_ten), '1' + std::string(exponent, '0')) << message;
    EXPECT_EQ(numberToString(-power_of_ten), "-1" + std::string(exponent, '0')) << message;
  }

  for (int8_t exponent{ -6 }; exponent < 0; ++exponent)
  {
    const TValue power_of_ten{ std::pow(TValue{ 10 }, static_cast<TValue>(exponent)) };

    // Test +/- 10 ^ exponent
    EXPECT_EQ(numberToString(power_of_ten), "0." + std::string(-1 - exponent, '0') + '1') << message;
    EXPECT_EQ(numberToString(-power_of_ten), "-0." + std::string(-1 - exponent, '0') + '1') << message;
  }
}


template <typename TValue>
void
Test_default_specialization_of_NumberToString()
{
  using NumericLimitsType = std::numeric_limits<TValue>;

  for (const TValue value : { NumericLimitsType::lowest(),
                              NumericLimitsType::denorm_min(),
                              TValue(),
                              NumericLimitsType::epsilon(),
                              NumericLimitsType::min(),
                              NumericLimitsType::max(),
                              NumericLimitsType::infinity(),
                              NumericLimitsType::quiet_NaN() })
  {
    // Expect the same string from the default specialization `NumberToString<>` as from the TValue specific
    // `NumberToString<TValue>`.
    EXPECT_EQ(itk::NumberToString<>()(value), itk::NumberToString<TValue>()(value));
  }
}

template <typename TValue>
void
Test_ConvertNumberToString()
{
  using NumericLimitsType = std::numeric_limits<TValue>;

  for (const TValue value : { NumericLimitsType::lowest(),
                              NumericLimitsType::denorm_min(),
                              TValue(),
                              NumericLimitsType::epsilon(),
                              NumericLimitsType::min(),
                              NumericLimitsType::max(),
                              NumericLimitsType::infinity(),
                              NumericLimitsType::quiet_NaN() })
  {
    // Expect the same string from `ConvertNumberToString` as from `NumberToString<TValue>`.
    EXPECT_EQ(itk::ConvertNumberToString(value), itk::NumberToString<TValue>()(value));
  }
}

} // namespace


// Tests NumberToString for 0 to 9.
TEST(NumberToString, SupportsAllDigits)
{
  Test_all_digits<int>();
  Test_all_digits<float>();
  Test_all_digits<double>();
}


// Tests that the function object returns a unique string for both positive and negative zero.
TEST(NumberToString, HasUniqueZeroString)
{
  const std::string expectedZeroString = "0";

  EXPECT_EQ(itk::NumberToString<int>{}(0), expectedZeroString);
  EXPECT_EQ(itk::NumberToString<float>{}(+0.0f), expectedZeroString);
  EXPECT_EQ(itk::NumberToString<float>{}(-0.0f), expectedZeroString);
  EXPECT_EQ(itk::NumberToString<double>{}(+0.0), expectedZeroString);
  EXPECT_EQ(itk::NumberToString<double>{}(-0.0), expectedZeroString);
}


TEST(NumberToString, NonFiniteSpecialFloatingPointValues)
{
  Test_non_finite_special_floating_point_values<float>();
  Test_non_finite_special_floating_point_values<double>();
}


TEST(NumberToString, RoundTripOfFiniteFloatingPointNumericLimits)
{
  Test_round_trip_of_finite_numeric_limits<float>();
  Test_round_trip_of_finite_numeric_limits<double>();
}


TEST(NumberToString, DecimalNotationUpTo21Digits)
{
  Test_decimal_notation_supports_up_to_twentyone_digits<float>();
  Test_decimal_notation_supports_up_to_twentyone_digits<double>();
}


TEST(NumberToString, DefaultSpecialization)
{
  Test_default_specialization_of_NumberToString<int8_t>();
  Test_default_specialization_of_NumberToString<uint8_t>();
  Test_default_specialization_of_NumberToString<intmax_t>();
  Test_default_specialization_of_NumberToString<uintmax_t>();
  Test_default_specialization_of_NumberToString<float>();
  Test_default_specialization_of_NumberToString<double>();
}

TEST(NumberToString, ConvertNumberToString)
{
  Test_ConvertNumberToString<int8_t>();
  Test_ConvertNumberToString<uint8_t>();
  Test_ConvertNumberToString<intmax_t>();
  Test_ConvertNumberToString<uintmax_t>();
  Test_ConvertNumberToString<float>();
  Test_ConvertNumberToString<double>();
}