File: string.cc

package info (click to toggle)
facter 3.11.0-2%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,576 kB
  • sloc: cpp: 22,910; python: 2,349; ruby: 936; sh: 72; makefile: 41
file content (291 lines) | stat: -rw-r--r-- 9,658 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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#include <catch.hpp>
#include <facter/util/string.hpp>

using namespace std;
using namespace facter::util;

SCENARIO("converting bytes to hex strings") {
    uint8_t buffer[] = { 0xBA, 0xAD, 0xF0, 0x0D };
    WHEN("specifying uppercase") {
        THEN("hex characters should be uppercase") {
            REQUIRE(to_hex(buffer, sizeof(buffer), true) == "BAADF00D");
        }
    }
    WHEN("specifying the default lowercase") {
        THEN("hex characters should be lowercase") {
            REQUIRE(to_hex(buffer, sizeof(buffer)) == "baadf00d");
        }
    }
    GIVEN("a null buffer") {
        THEN("an empty string should be returned") {
            REQUIRE(to_hex(nullptr, 0) == "");
        }
    }
    GIVEN("an empty buffer") {
        THEN("an empty string should be returned") {
            REQUIRE(to_hex(buffer, 0) == "");
        }
    }
}

SCENARIO("converting bytes to SI unit strings") {
    GIVEN("zero bytes") {
        THEN("the string should show 0 bytes") {
            REQUIRE(si_string(0) == "0 bytes");
        }
    }
    GIVEN("less than 1 KiB") {
        WHEN("not close to 1 KiB") {
            THEN("the string should be in bytes") {
                REQUIRE(si_string(100) == "100 bytes");
            }
        }
        WHEN("close to 1 KiB") {
            THEN("the string should be in bytes") {
                REQUIRE(si_string(1023) == "1023 bytes");
            }
        }
    }
    GIVEN("exactly 1 KiB") {
        THEN("the string should be in KiB") {
            REQUIRE(si_string(1024) == "1.00 KiB");
        }
    }
    GIVEN("less than 1 MiB") {
        WHEN("not close to 1 MiB") {
            THEN("the string should be in KiB") {
                REQUIRE(si_string(4097) == "4.00 KiB");
            }
        }
        WHEN("almost 1 MiB") {
            THEN("the string should be in MiB") {
                REQUIRE(si_string((1024ull * 1024ull) - 1) == "1.00 MiB");
            }
        }
    }
    GIVEN("exactly 1 MiB") {
        THEN("the string should be in MiB") {
            REQUIRE(si_string(1024ull * 1024ull) == "1.00 MiB");
        }
    }
    GIVEN("less than 1 GiB") {
        WHEN("not close to 1 GiB") {
            THEN("the string should be in MiB") {
                REQUIRE(si_string(10ull * 1024ull * 1023ull) == "9.99 MiB");
            }
        }
        WHEN("almost 1 GiB") {
            THEN("the string should be in GiB") {
                REQUIRE(si_string((1024ull * 1024ull * 1024ull) - 1) == "1.00 GiB");
            }
        }
    }
    GIVEN("exactly 1 GiB") {
        THEN("the string should be in GiB") {
            REQUIRE(si_string(1024ull * 1024ull * 1024ull) == "1.00 GiB");
        }
    }
    GIVEN("less than 1 TiB") {
        WHEN("not close to 1 TiB") {
            THEN("the string should be in GiB") {
                REQUIRE(si_string(12ull * 1024ull * 1024ull * 1023ull) == "11.99 GiB");
            }
        }
        WHEN("almost 1 TiB") {
            THEN("the string should be in TiB") {
                REQUIRE(si_string((1024ull * 1024ull * 1024ull * 1024ull) - 1) == "1.00 TiB");
            }
        }
    }
    GIVEN("exactly 1 TiB") {
        THEN("the string should be in TiB") {
            REQUIRE(si_string(1024ull * 1024ull * 1024ull * 1024ull) == "1.00 TiB");
        }
    }
    GIVEN("less than 1 PiB") {
        WHEN("not close to 1 PiB") {
            THEN("the string should be in TiB") {
                REQUIRE(si_string(50ull * 1024ull * 1024ull * 1024ull * 1023ull) == "49.95 TiB");
            }
        }
        WHEN("almost 1 PiB") {
            THEN("the string should be in PiB") {
                REQUIRE(si_string((1024ull * 1024ull * 1024ull * 1024ull * 1024ull) - 1) == "1.00 PiB");
            }
        }
    }
    GIVEN("exactly 1 PiB") {
        THEN("the string should be in PiB") {
            REQUIRE(si_string(1024ull * 1024ull * 1024ull * 1024ull * 1024ull) == "1.00 PiB");
        }
    }
    GIVEN("less than 1 EiB") {
        WHEN("not close to 1 EiB") {
            THEN("the string should be in PiB") {
                REQUIRE(si_string(100ull * 1024ull * 1024ull * 1024ull * 1024ull * 1023ull) == "99.90 PiB");
            }
        }
        WHEN("almost 1 EiB") {
            THEN("the string should be in EiB") {
                REQUIRE(si_string((1024ull * 1024ull * 1024ull * 1024ull * 1024ull * 1024ull) - 1) == "1.00 EiB");
            }
        }
    }
    GIVEN("exactly 1 EiB") {
        THEN("the string should be in PiB") {
            REQUIRE(si_string(1024ull * 1024ull * 1024ull * 1024ull * 1024ull * 1024ull) == "1.00 EiB");
        }
    }
    GIVEN("the unsigned maximum 64-bit value") {
        THEN("the string should be in EiB") {
            REQUIRE(si_string(numeric_limits<uint64_t>::max()) == "16.00 EiB");
        }
    }
}

SCENARIO("converting percentages to strings") {
    GIVEN("any value out of zero") {
        THEN("it should be 100%") {
            REQUIRE(percentage(0, 0) == "100%");
            REQUIRE(percentage(10000, 0) == "100%");
        }
    }
    GIVEN("zero out of any value") {
        THEN("it should be 0%") {
            REQUIRE(percentage(0, 10) == "0%");
            REQUIRE(percentage(0, 100) == "0%");
        }
    }
    GIVEN("more than the maximum") {
        THEN("it should be 100%") {
            REQUIRE(percentage(1000, 100) == "100%");
        }
    }
    GIVEN("small percentages") {
        THEN("it should round to the nearest hundred of a percent") {
            REQUIRE(percentage(1, 100) == "1.00%");
            REQUIRE(percentage(11, 1000) == "1.10%");
            REQUIRE(percentage(111, 10000) == "1.11%");
            REQUIRE(percentage(1140000000ul, 50000000000ul) == "2.28%");
            REQUIRE(percentage(1000, 10000) == "10.00%");
        }
    }
    GIVEN("large percentages") {
        THEN("it should round to the nearest hundred of a percent, but never 100%") {
            REQUIRE(percentage(414906340801ul, 560007030104ul) == "74.09%");
            REQUIRE(percentage(99984, 100000) == "99.98%");
            REQUIRE(percentage(999899, 1000000) == "99.99%");
            REQUIRE(percentage(99999, 100000) == "99.99%");
        }
    }
    GIVEN("the maximum value") {
        WHEN("off by one") {
            THEN("it should not be 100%") {
                REQUIRE(percentage(numeric_limits<uint64_t>::max() - 1, numeric_limits<uint64_t>::max()) == "99.99%");

            }
        }
        WHEN("both are maximum") {
            THEN("it should be 100%") {
                REQUIRE(percentage(numeric_limits<uint64_t>::max(), numeric_limits<uint64_t>::max()) == "100%");
            }
        }
    }

}

SCENARIO("converting frequencies to strings") {
    GIVEN("a frequency of 0") {
        THEN("it should report in Hz") {
            REQUIRE(frequency(0) == "0 Hz");
        }
    }
    GIVEN("a frequency of less than 1 kHz") {
        WHEN("not close to 1 kHz") {
            THEN("it should be in Hz") {
                REQUIRE(frequency(100) == "100 Hz");
            }
        }
        WHEN("close to 1 kHz") {
            THEN("it should be in Hz") {
                REQUIRE(frequency(999) == "999 Hz");
            }
        }
    }
    GIVEN("exactly 1 kHz") {
        THEN("it should be in kHz") {
            REQUIRE(frequency(1000) == "1.00 kHz");
        }
    }
    GIVEN("a frequency of less than 1 MHz") {
        WHEN("not close to 1 MHz") {
            THEN("it should be in kHz") {
                REQUIRE(frequency(1000 * 999) == "999.00 kHz");
            }
        }
        WHEN("close to 1 MHz") {
            THEN("it should be in MHz") {
                REQUIRE(frequency((1000 * 1000) - 1) == "1.00 MHz");
            }
        }
    }
    GIVEN("exactly 1 MHz") {
        THEN("it should be in MHz") {
            REQUIRE(frequency(1000 * 1000) == "1.00 MHz");
        }
    }
    GIVEN("a frequency of less than 1 GHz") {
        WHEN("not close to 1 GHz") {
            THEN("it should be in MHz") {
                REQUIRE(frequency(1000 * 1000 * 999) == "999.00 MHz");
            }
        }
        WHEN("close to 1 GHz") {
            THEN("it should be in GHz") {
                REQUIRE(frequency((1000 * 1000 * 1000) - 1) == "1.00 GHz");
            }
        }
    }
    GIVEN("exactly 1 GHz") {
        THEN("it should be in GHz") {
            REQUIRE(frequency(1000 * 1000 * 1000) == "1.00 GHz");
        }
    }
    GIVEN("a frequency of less than 1 THz") {
        WHEN("not close to 1 THz") {
            THEN("it should be in GHz") {
                REQUIRE(frequency(1000ull * 1000 * 1000 * 999) == "999.00 GHz");
            }
        }
        WHEN("close to 1 THz") {
            THEN("it should be in THz") {
                REQUIRE(frequency((1000ull * 1000 * 1000 * 1000) - 1) == "1.00 THz");
            }
        }
    }
    GIVEN("exactly 1 THz") {
        THEN("it should be in THz") {
            REQUIRE(frequency(1000ull * 1000 * 1000 * 1000) == "1.00 THz");
        }
    }
    GIVEN("the maximum value") {
        THEN("it should be in Hz") {
            REQUIRE(frequency(numeric_limits<int64_t>::max()) == "9223372036854775807 Hz");
        }
    }
}

SCENARIO("converting strings to integers") {
    GIVEN("a string that is a valid integer") {
        THEN("it should be converted to its integer representation") {
            auto oint = maybe_stoi("12");
            REQUIRE(oint.is_initialized());
            REQUIRE(oint.get_value_or(0) == 12);
        }
    }
    GIVEN("a string that is not a valid integer") {
        THEN("nothing should be returned") {
            REQUIRE_FALSE(maybe_stoi("foo").is_initialized());
        }
    }
}