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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
// Copyright (C) 2011-2024 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>

#include <testutils/gtest_utils.h>
#include <util/encode/encode.h>
#include <util/str.h>

#include <cstdint><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <exception><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <sstream><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <string><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <unordered_set><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include <vector><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc;
using namespace isc::util;
using namespace isc::util::encode;
using namespace isc::util::str;
using namespace std;

namespace {

/// @brief Fixture used to test StringSanitizer.
struct StringUtilTest : ::testing::Test {
    /// @brief Pass string through scrub and check the result.
    ///
    /// @param original The string to sanitize.
    /// @param char_set The regular expression string describing invalid characters.
    /// @param char_replacement - character(s) which replace invalid
    /// characters
    /// @param expected - expected sanitized string
    void checkScrub(const string& original,
                    const string& char_set,
                    const string& char_replacement,
                    const string& expected) {
        StringSanitizerPtr ss;
        string sanitized;

        try {
            ss.reset(new StringSanitizer(char_set, char_replacement));
        } catch (const exception& ex) {
            ADD_FAILURE() << "Could not construct sanitizer:" << ex.what();
            return;
        }

        try {
            sanitized = ss->scrub(original);
        } catch (const exception& ex) {
            ADD_FAILURE() << "Could not scrub string:" << ex.what();
            return;
        }

        EXPECT_EQ(sanitized, expected);
    }

    /// @brief Check that hex strings with colons can be decoded.
    ///
    /// @param input Input string to be decoded.
    /// @param reference The expected result.
    void checkColonSeparated(const string& input, const string& reference) {
        // Create a reference vector.
        vector<uint8_t> reference_vector;
        ASSERT_NO_THROW_LOG(decodeHex(reference, reference_vector));

        // Fill the output vector with some garbage to make sure that
        // the data is erased when a string is decoded successfully.
        vector<uint8_t> decoded(1, 10);
        ASSERT_NO_THROW_LOG(decodeColonSeparatedHexString(input, decoded));

        // Get the string representation of the decoded data for logging
        // purposes.
        string encoded;
        ASSERT_NO_THROW_LOG(encoded = encodeHex(decoded));

        // Check if the decoded data matches the reference.
        EXPECT_EQ(decoded, reference_vector) << "decoded data don't match the reference, input='"
                                             << input << "', reference='" << reference
                                             << "'"
                                                ", decoded='"
                                             << encoded << "'";
    }

    /// @brief Check that formatted hex strings can be decoded.
    ///
    /// @param input Input string to be decoded.
    /// @param reference The expected result.
    void checkFormatted(const string& input, const string& reference) {
        // Create a reference vector.
        vector<uint8_t> reference_vector;
        ASSERT_NO_THROW_LOG(decodeHex(reference, reference_vector));

        // Fill the output vector with some garbage to make sure that
        // the data is erased when a string is decoded successfully.
        vector<uint8_t> decoded(1, 10);
        ASSERT_NO_THROW_LOG(decodeFormattedHexString(input, decoded));

        // Get the string representation of the decoded data for logging
        // purposes.
        string encoded;
        ASSERT_NO_THROW_LOG(encoded = encodeHex(decoded));

        // Check if the decoded data matches the reference.
        EXPECT_EQ(decoded, reference_vector)
            << "decoded data don't match the reference, input='" << input << "', reference='"
            << reference << "', decoded='" << encoded << "'";
    }

    /// @brief Convenience function which calls quotedStringToBinary
    /// and converts returned vector back to string.
    ///
    /// @param s Input string.
    ///
    /// @return String holding a copy of a vector returned by the
    /// quotedStringToBinary.
    string checkQuoted(const string& s) {
        vector<uint8_t> vec = quotedStringToBinary(s);
        string s2(vec.begin(), vec.end());
        return (s2);
    }
};

// Check that leading and trailing space trimming works.
TEST_F(StringUtilTest, Trim) {<--- syntax error
    // Empty and full string.
    EXPECT_EQ("", trim(""));
    EXPECT_EQ("abcxyz", trim("abcxyz"));

    // Trim right-most blanks
    EXPECT_EQ("ABC", trim("ABC   "));
    EXPECT_EQ("ABC", trim("ABC\t\t  \n\t"));

    // Left-most blank trimming
    EXPECT_EQ("XYZ", trim("  XYZ"));
    EXPECT_EQ("XYZ", trim("\t\t  \tXYZ"));

    // Right and left, with embedded spaces
    EXPECT_EQ("MN \t OP", trim("\t\tMN \t OP \t"));
}

// Check tokenization.
TEST_F(StringUtilTest, Tokens) {
    vector<string> result;

    // Default delimiters

    // Degenerate cases
    result = tokens("");  // Empty string
    EXPECT_EQ(0, result.size());

    result = tokens(" \n ");  // String is all delimiters
    EXPECT_EQ(0, result.size());

    result = tokens("abc");  // String has no delimiters
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("abc"), result[0]);

    // String containing leading and/or trailing delimiters, no embedded ones.
    result = tokens("\txyz");  // One leading delimiter
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("xyz"), result[0]);

    result = tokens("\t \nxyz");  // Multiple leading delimiters
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("xyz"), result[0]);

    result = tokens("xyz\n");  // One trailing delimiter
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("xyz"), result[0]);

    result = tokens("xyz  \t");  // Multiple trailing
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("xyz"), result[0]);

    result = tokens("\t xyz \n");  // Leading and trailing
    ASSERT_EQ(1, result.size());
    EXPECT_EQ(string("xyz"), result[0]);

    // Embedded delimiters
    result = tokens("abc\ndef");  // 2 tokens, one separator
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("abc"), result[0]);
    EXPECT_EQ(string("def"), result[1]);

    result = tokens("abc\t\t\ndef");  // 2 tokens, 3 separators
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("abc"), result[0]);
    EXPECT_EQ(string("def"), result[1]);

    result = tokens("abc\n  \tdef\t\tghi");
    ASSERT_EQ(3, result.size());  // Multiple tokens, many delims
    EXPECT_EQ(string("abc"), result[0]);
    EXPECT_EQ(string("def"), result[1]);
    EXPECT_EQ(string("ghi"), result[2]);

    // Embedded and non-embedded delimiters

    result = tokens("\t\t  \nabc\n  \tdef\t\tghi   \n\n");
    ASSERT_EQ(3, result.size());  // Multiple tokens, many delims
    EXPECT_EQ(string("abc"), result[0]);
    EXPECT_EQ(string("def"), result[1]);
    EXPECT_EQ(string("ghi"), result[2]);

    // Non-default delimiter
    result = tokens("alpha/beta/ /gamma//delta/epsilon/", "/");
    ASSERT_EQ(6, result.size());
    EXPECT_EQ(string("alpha"), result[0]);
    EXPECT_EQ(string("beta"), result[1]);
    EXPECT_EQ(string(" "), result[2]);
    EXPECT_EQ(string("gamma"), result[3]);
    EXPECT_EQ(string("delta"), result[4]);
    EXPECT_EQ(string("epsilon"), result[5]);

    // Non-default delimiters (plural)
    result = tokens("+*--alpha*beta+ -gamma**delta+epsilon-+**", "*+-");
    ASSERT_EQ(6, result.size());
    EXPECT_EQ(string("alpha"), result[0]);
    EXPECT_EQ(string("beta"), result[1]);
    EXPECT_EQ(string(" "), result[2]);
    EXPECT_EQ(string("gamma"), result[3]);
    EXPECT_EQ(string("delta"), result[4]);
    EXPECT_EQ(string("epsilon"), result[5]);

    // Escaped delimiter
    result = tokens("foo\\,bar", ",", true);
    EXPECT_EQ(1, result.size());
    EXPECT_EQ(string("foo,bar"), result[0]);

    // Escaped escape
    result = tokens("foo\\\\,bar", ",", true);
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("foo\\"), result[0]);
    EXPECT_EQ(string("bar"), result[1]);

    // Double escapes
    result = tokens("foo\\\\\\\\,\\bar", ",", true);
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("foo\\\\"), result[0]);
    EXPECT_EQ(string("\\bar"), result[1]);

    // Escaped standard character
    result = tokens("fo\\o,bar", ",", true);
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("fo\\o"), result[0]);
    EXPECT_EQ(string("bar"), result[1]);

    // Escape at the end
    result = tokens("foo,bar\\", ",", true);
    ASSERT_EQ(2, result.size());
    EXPECT_EQ(string("foo"), result[0]);
    EXPECT_EQ(string("bar\\"), result[1]);

    // Escape opening a token
    result = tokens("foo,\\,,bar", ",", true);
    ASSERT_EQ(3, result.size());
    EXPECT_EQ(string("foo"), result[0]);
    EXPECT_EQ(string(","), result[1]);
    EXPECT_EQ(string("bar"), result[2]);
}

// Check changing of case.
TEST_F(StringUtilTest, ChangeCase) {
    string mixed("abcDEFghiJKLmno123[]{=+--+]}");
    string upper("ABCDEFGHIJKLMNO123[]{=+--+]}");
    string lower("abcdefghijklmno123[]{=+--+]}");

    string test = mixed;
    lowercase(test);
    EXPECT_EQ(lower, test);

    test = mixed;
    uppercase(test);
    EXPECT_EQ(upper, test);
}

TEST_F(StringUtilTest, quotedStringToBinary) {
    // No opening or closing quote should result in empty string.
    EXPECT_TRUE(quotedStringToBinary("'").empty());
    EXPECT_TRUE(quotedStringToBinary("").empty());
    EXPECT_TRUE(quotedStringToBinary("  ").empty());
    EXPECT_TRUE(quotedStringToBinary("'circuit id").empty());
    EXPECT_TRUE(quotedStringToBinary("circuit id'").empty());

    // If there is only opening and closing quote, an empty
    // vector should be returned.
    EXPECT_TRUE(quotedStringToBinary("''").empty());

    // Both opening and ending quote is present.
    EXPECT_EQ("circuit id", checkQuoted("'circuit id'"));
    EXPECT_EQ("remote id", checkQuoted("  ' remote id'"));
    EXPECT_EQ("duid", checkQuoted("  ' duid'"));
    EXPECT_EQ("duid", checkQuoted("'duid    '  "));
    EXPECT_EQ("remote'id", checkQuoted("  ' remote'id  '"));
    EXPECT_EQ("remote id'", checkQuoted("'remote id''"));
    EXPECT_EQ("'remote id", checkQuoted("''remote id'"));

    // Multiple quotes.
    EXPECT_EQ("'", checkQuoted("'''"));
    EXPECT_EQ("''", checkQuoted("''''"));
}

TEST_F(StringUtilTest, decodeColonSeparatedHexString) {
    // Test valid strings.
    checkColonSeparated("A1:02:C3:d4:e5:F6", "A102C3D4E5F6");
    checkColonSeparated("A:02:3:d:E5:F6", "0A02030DE5F6");
    checkColonSeparated("A:B:C:D", "0A0B0C0D");
    checkColonSeparated("1", "01");
    checkColonSeparated("1e", "1E");
    checkColonSeparated("", "");

    // Test invalid strings.
    vector<uint8_t> decoded;
    // Whitespaces.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("   ", decoded), BadValue,
                     "invalid format of the decoded string '   '");
    // Whitespace before digits.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString(" A1", decoded), BadValue,
                     "invalid format of the decoded string ' A1'");
    // Two consecutive colons.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("A::01", decoded), BadValue,
                     "two consecutive separators (':') specified in a decoded string 'A::01'");
    // Three consecutive colons.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("A:::01", decoded), BadValue,
                     "two consecutive separators (':') specified in a decoded string 'A:::01'");
    // Whitespace within a string.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("A :01", decoded), BadValue,
                     "' ' is not a valid hexadecimal digit in decoded string 'A :01'");
    // Terminating colon.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("0A:01:", decoded), BadValue,
                     "two consecutive separators (':') specified in a decoded string '0A:01:'");
    // Opening colon.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString(":0A:01", decoded), BadValue,
                     "two consecutive separators (':') specified in a decoded string ':0A:01'");
    // Three digits before the colon.
    EXPECT_THROW_MSG(decodeColonSeparatedHexString("0A1:B1", decoded), BadValue,
                     "invalid format of the decoded string '0A1:B1'");
}

TEST_F(StringUtilTest, decodeFormattedHexString) {
    // Colon separated.
    checkFormatted("1:A7:B5:4:23", "01A7B50423");
    // Space separated.
    checkFormatted("1 A7 B5 4 23", "01A7B50423");
    // No colons, even number of digits.
    checkFormatted("17a534", "17A534");
    // Odd number of digits.
    checkFormatted("A3A6f78", "0A3A6F78");
    // '0x' prefix.
    checkFormatted("0xA3A6f78", "0A3A6F78");
    // '0x' prefix with a special value of 0.
    checkFormatted("0x0", "00");
    // Empty string.
    checkFormatted("", "");

    vector<uint8_t> decoded;
    // Dangling colon.
    EXPECT_THROW_MSG(decodeFormattedHexString("0a:", decoded), BadValue,
                     "two consecutive separators (':') specified in a decoded string '0a:'");
    // Dangling space.
    EXPECT_THROW_MSG(decodeFormattedHexString("0a ", decoded), BadValue,
                     "two consecutive separators (' ') specified in a decoded string '0a '");
    // '0x' prefix and spaces.
    EXPECT_THROW_MSG(decodeFormattedHexString("0x01 02", decoded), BadValue,
                     "invalid format of the decoded string '0x01 02'");
    // '0x' prefix and colons.
    EXPECT_THROW_MSG(decodeFormattedHexString("0x01:02", decoded), BadValue,
                     "invalid format of the decoded string '0x01:02'");
    // colon and spaces mixed
    EXPECT_THROW_MSG(decodeFormattedHexString("01:02 03", decoded), BadValue,
                     "invalid format of the decoded string '01:02 03'");
    // Missing colon.
    EXPECT_THROW_MSG(decodeFormattedHexString("01:0203", decoded), BadValue,
                     "invalid format of the decoded string '01:0203'");
    // Missing space.
    EXPECT_THROW_MSG(decodeFormattedHexString("01 0203", decoded), BadValue,
                     "invalid format of the decoded string '01 0203'");
    // Invalid prefix.
    EXPECT_THROW_MSG(decodeFormattedHexString("x0102", decoded), BadValue,
                     "'x0102' is not a valid string of hexadecimal digits");
    // Invalid prefix again.
    EXPECT_THROW_MSG(decodeFormattedHexString("1x0102", decoded), BadValue,
                     "'1x0102' is not a valid string of hexadecimal digits");
}

// Verifies StringSantizer class
TEST_F(StringUtilTest, stringSanitizer) {
    // Bad regular expression should throw.
    StringSanitizerPtr ss;

    try {
        ss.reset(new StringSanitizer("[bogus-regex", ""));
    } catch (BadValue const& ex) {
        unordered_set<string> expected{
            // BSD
            "invalid regex: '[bogus-regex', The expression contained mismatched [ and ].",
            // Linux
            "invalid regex: '[bogus-regex', Invalid range in bracket expression.",
        };
        if (!expected.count(ex.what())) {
            FAIL() << "unexpected BadValue exception message: " << ex.what();
        }
    } catch (exception const& ex) {
        FAIL() << "unexpected exception: " << ex.what();
    }

    string good_data(StringSanitizer::MAX_DATA_SIZE, '0');
    string bad_data(StringSanitizer::MAX_DATA_SIZE + 1, '0');

    ASSERT_NO_THROW_LOG(ss.reset(new StringSanitizer(good_data, good_data)));

    ASSERT_THROW_MSG(ss.reset(new StringSanitizer(bad_data, "")), BadValue,
                     "char set size: '4097' exceeds max size: '4096'");
    ASSERT_THROW_MSG(ss.reset(new StringSanitizer("", bad_data)), BadValue,
                     "char replacement size: '4097' exceeds max size: '4096'");

    // List of invalid chars should work: (b,c,2 are invalid)
    checkScrub("abc.123", "[b-c2]", "*", "a**.1*3");
    // Inverted list of valid chars should work: (b,c,2 are valid)
    checkScrub("abc.123", "[^b-c2]", "*", "*bc**2*");

    // A string of all valid chars should return an identical string.
    checkScrub("-_A--B__Cabc34567_-", "[^A-Ca-c3-7_-]", "x", "-_A--B__Cabc34567_-");

    // Replacing with a character should work.
    checkScrub("A[b]c\12JoE3-_x!B$Y#e", "[^A-Za-z0-9_]", "*", "A*b*c*JoE3*_x*B*Y*e");

    // Removing (i.e.replacing with an "empty" string) should work.
    checkScrub("A[b]c\12JoE3-_x!B$Y#e", "[^A-Za-z0-9_]", "", "AbcJoE3_xBYe");

    // More than one non-matching in a row should work.
    checkScrub("%%A%%B%%C%%", "[^A-Za-z0-9_]", "x", "xxAxxBxxCxx");

    // Removing more than one non-matching in a row should work.
    checkScrub("%%A%%B%%C%%", "[^A-Za-z0-9_]", "", "ABC");

    // Replacing with a string should work.
    checkScrub("%%A%%B%%C%%", "[^A-Za-z0-9_]", "xyz", "xyzxyzAxyzxyzBxyzxyzCxyzxyz");

    // Dots as valid chars work.
    checkScrub("abc.123", "[^A-Za-z0-9_.]", "*", "abc.123");

    string withNulls("\000ab\000c.12\0003", 10);
    checkScrub(withNulls, "[^A-Za-z0-9_.]", "*", "*ab*c.12*3");
}

// Verifies templated buffer iterator seekTrimmed() function
TEST_F(StringUtilTest, seekTrimmed) {
    // Empty buffer should be fine.
    vector<uint8_t> buffer;
    auto begin = buffer.end();
    auto end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 0));
    EXPECT_EQ(0, distance(begin, end));

    // Buffer of only trim values, should be fine.
    buffer = {1, 1};
    begin = buffer.begin();
    end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 1));
    EXPECT_EQ(0, distance(begin, end));

    // One trailing null should trim off.
    buffer = {'o', 'n', 'e', 0};
    begin = buffer.begin();
    end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 0));
    EXPECT_EQ(3, distance(begin, end));

    // More than one trailing null should trim off.
    buffer = {'t', 'h', 'r', 'e', 'e', 0, 0, 0};
    begin = buffer.begin();
    end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 0));
    EXPECT_EQ(5, distance(begin, end));

    // Embedded null should be left in place.
    buffer = {'e', 'm', 0, 'b', 'e', 'd'};
    begin = buffer.begin();
    end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 0));
    EXPECT_EQ(6, distance(begin, end));

    // Leading null should be left in place.
    buffer = {0, 'l', 'e', 'a', 'd', 'i', 'n', 'g'};
    begin = buffer.begin();
    end = buffer.end();
    ASSERT_NO_THROW_LOG(end = seekTrimmed(begin, end, 0));
    EXPECT_EQ(8, distance(begin, end));
}

// Verifies isPrintable predicate on strings.
TEST_F(StringUtilTest, stringIsPrintable) {
    string content;

    // Empty is printable.
    EXPECT_TRUE(isPrintable(content));

    // Check Abcd.
    content = "Abcd";
    EXPECT_TRUE(isPrintable(content));

    // Add a control character (not printable).
    content += "\a";
    EXPECT_FALSE(isPrintable(content));
}

// Verifies isPrintable predicate on byte vectors.
TEST_F(StringUtilTest, vectorIsPrintable) {
    vector<uint8_t> content;

    // Empty is printable.
    EXPECT_TRUE(isPrintable(content));

    // Check Abcd.
    content = {0x41, 0x62, 0x63, 0x64};
    EXPECT_TRUE(isPrintable(content));

    // Add a control character (not printable).
    content.push_back('\a');
    EXPECT_FALSE(isPrintable(content));
}

}  // namespace