QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/third_party/quiche/src/quic/platform/api/quic_str_cat.h" |
| 6 | |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 7 | #include <string> |
| 8 | |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 9 | #include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h" |
| 10 | #include "net/third_party/quiche/src/quic/platform/api/quic_test.h" |
| 11 | |
| 12 | namespace quic { |
| 13 | namespace test { |
| 14 | namespace { |
| 15 | |
| 16 | class QuicStrCatTest : public QuicTest {}; |
| 17 | |
| 18 | TEST_F(QuicStrCatTest, Ints) { |
| 19 | const int16_t s = -1; |
| 20 | const uint16_t us = 2; |
| 21 | const int i = -3; |
| 22 | const uint32_t ui = 4; |
| 23 | const int64_t l = -5; |
| 24 | const uint64_t ul = 6; |
| 25 | const ptrdiff_t ptrdiff = -7; |
| 26 | const size_t size = 8; |
| 27 | const intptr_t intptr = -9; |
| 28 | const uintptr_t uintptr = 10; |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 29 | std::string answer; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 30 | answer = QuicStrCat(s, us); |
| 31 | EXPECT_EQ(answer, "-12"); |
| 32 | answer = QuicStrCat(i, ui); |
| 33 | EXPECT_EQ(answer, "-34"); |
| 34 | answer = QuicStrCat(l, ul); |
| 35 | EXPECT_EQ(answer, "-56"); |
| 36 | answer = QuicStrCat(ptrdiff, size); |
| 37 | EXPECT_EQ(answer, "-78"); |
| 38 | answer = QuicStrCat(size, intptr); |
| 39 | EXPECT_EQ(answer, "8-9"); |
| 40 | answer = QuicStrCat(uintptr, 0); |
| 41 | EXPECT_EQ(answer, "100"); |
| 42 | } |
| 43 | |
| 44 | TEST_F(QuicStrCatTest, Basics) { |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 45 | std::string result; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 46 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 47 | std::string strs[] = {"Hello", "Cruel", "World"}; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 48 | |
| 49 | QuicStringPiece pieces[] = {"Hello", "Cruel", "World"}; |
| 50 | |
| 51 | const char* c_strs[] = {"Hello", "Cruel", "World"}; |
| 52 | |
| 53 | int32_t i32s[] = {'H', 'C', 'W'}; |
| 54 | uint64_t ui64s[] = {12345678910LL, 10987654321LL}; |
| 55 | |
| 56 | result = QuicStrCat(false, true, 2, 3); |
| 57 | EXPECT_EQ(result, "0123"); |
| 58 | |
| 59 | result = QuicStrCat(-1); |
| 60 | EXPECT_EQ(result, "-1"); |
| 61 | |
| 62 | result = QuicStrCat(0.5); |
| 63 | EXPECT_EQ(result, "0.5"); |
| 64 | |
| 65 | result = QuicStrCat(strs[1], pieces[2]); |
| 66 | EXPECT_EQ(result, "CruelWorld"); |
| 67 | |
| 68 | result = QuicStrCat(strs[0], ", ", pieces[2]); |
| 69 | EXPECT_EQ(result, "Hello, World"); |
| 70 | |
| 71 | result = QuicStrCat(strs[0], ", ", strs[1], " ", strs[2], "!"); |
| 72 | EXPECT_EQ(result, "Hello, Cruel World!"); |
| 73 | |
| 74 | result = QuicStrCat(pieces[0], ", ", pieces[1], " ", pieces[2]); |
| 75 | EXPECT_EQ(result, "Hello, Cruel World"); |
| 76 | |
| 77 | result = QuicStrCat(c_strs[0], ", ", c_strs[1], " ", c_strs[2]); |
| 78 | EXPECT_EQ(result, "Hello, Cruel World"); |
| 79 | |
| 80 | result = QuicStrCat("ASCII ", i32s[0], ", ", i32s[1], " ", i32s[2], "!"); |
| 81 | EXPECT_EQ(result, "ASCII 72, 67 87!"); |
| 82 | |
| 83 | result = QuicStrCat(ui64s[0], ", ", ui64s[1], "!"); |
| 84 | EXPECT_EQ(result, "12345678910, 10987654321!"); |
| 85 | |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 86 | std::string one = "1"; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 87 | result = QuicStrCat("And a ", one.size(), " and a ", &result[2] - &result[0], |
| 88 | " and a ", one, " 2 3 4", "!"); |
| 89 | EXPECT_EQ(result, "And a 1 and a 2 and a 1 2 3 4!"); |
| 90 | |
| 91 | result = |
| 92 | QuicStrCat("To output a char by ASCII/numeric value, use +: ", '!' + 0); |
| 93 | EXPECT_EQ(result, "To output a char by ASCII/numeric value, use +: 33"); |
| 94 | |
| 95 | float f = 10000.5; |
| 96 | result = QuicStrCat("Ten K and a half is ", f); |
| 97 | EXPECT_EQ(result, "Ten K and a half is 10000.5"); |
| 98 | |
| 99 | double d = 99999.9; |
| 100 | result = QuicStrCat("This double number is ", d); |
| 101 | EXPECT_EQ(result, "This double number is 99999.9"); |
| 102 | |
| 103 | result = |
| 104 | QuicStrCat(1, 22, 333, 4444, 55555, 666666, 7777777, 88888888, 999999999); |
| 105 | EXPECT_EQ(result, "122333444455555666666777777788888888999999999"); |
| 106 | } |
| 107 | |
| 108 | TEST_F(QuicStrCatTest, MaxArgs) { |
vasilvv | c48c871 | 2019-03-11 13:38:16 -0700 | [diff] [blame] | 109 | std::string result; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 110 | // Test 10 up to 26 arguments, the current maximum |
| 111 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a"); |
| 112 | EXPECT_EQ(result, "123456789a"); |
| 113 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b"); |
| 114 | EXPECT_EQ(result, "123456789ab"); |
| 115 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c"); |
| 116 | EXPECT_EQ(result, "123456789abc"); |
| 117 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d"); |
| 118 | EXPECT_EQ(result, "123456789abcd"); |
| 119 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e"); |
| 120 | EXPECT_EQ(result, "123456789abcde"); |
| 121 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f"); |
| 122 | EXPECT_EQ(result, "123456789abcdef"); |
| 123 | result = |
| 124 | QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", "g"); |
| 125 | EXPECT_EQ(result, "123456789abcdefg"); |
| 126 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 127 | "g", "h"); |
| 128 | EXPECT_EQ(result, "123456789abcdefgh"); |
| 129 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 130 | "g", "h", "i"); |
| 131 | EXPECT_EQ(result, "123456789abcdefghi"); |
| 132 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 133 | "g", "h", "i", "j"); |
| 134 | EXPECT_EQ(result, "123456789abcdefghij"); |
| 135 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 136 | "g", "h", "i", "j", "k"); |
| 137 | EXPECT_EQ(result, "123456789abcdefghijk"); |
| 138 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 139 | "g", "h", "i", "j", "k", "l"); |
| 140 | EXPECT_EQ(result, "123456789abcdefghijkl"); |
| 141 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 142 | "g", "h", "i", "j", "k", "l", "m"); |
| 143 | EXPECT_EQ(result, "123456789abcdefghijklm"); |
| 144 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 145 | "g", "h", "i", "j", "k", "l", "m", "n"); |
| 146 | EXPECT_EQ(result, "123456789abcdefghijklmn"); |
| 147 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 148 | "g", "h", "i", "j", "k", "l", "m", "n", "o"); |
| 149 | EXPECT_EQ(result, "123456789abcdefghijklmno"); |
| 150 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 151 | "g", "h", "i", "j", "k", "l", "m", "n", "o", "p"); |
| 152 | EXPECT_EQ(result, "123456789abcdefghijklmnop"); |
| 153 | result = QuicStrCat(1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", |
| 154 | "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q"); |
| 155 | EXPECT_EQ(result, "123456789abcdefghijklmnopq"); |
| 156 | // No limit thanks to C++11's variadic templates |
| 157 | result = QuicStrCat( |
| 158 | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, "a", "b", "c", "d", "e", "f", "g", "h", |
| 159 | "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", |
| 160 | "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", |
| 161 | "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"); |
| 162 | EXPECT_EQ(result, |
| 163 | "12345678910abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"); |
| 164 | } |
| 165 | |
| 166 | } // namespace |
| 167 | } // namespace test |
| 168 | } // namespace quic |