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
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <string>
// basic_string<charT,traits,Allocator>&
// insert(size_type pos, string_view sv); // constexpr since C++20
#include <string>
#include <stdexcept>
#include <cassert>
#include "test_macros.h"
#include "min_allocator.h"
template <class S, class SV>
TEST_CONSTEXPR_CXX20 void
test(S s, typename S::size_type pos, SV sv, S expected)
{
const typename S::size_type old_size = s.size();
S s0 = s;
if (pos <= old_size)
{
s.insert(pos, sv);
LIBCPP_ASSERT(s.__invariants());
assert(s == expected);
}
#ifndef TEST_HAS_NO_EXCEPTIONS
else if (!TEST_IS_CONSTANT_EVALUATED)
{
try
{
s.insert(pos, sv);
assert(false);
}
catch (std::out_of_range&)
{
assert(pos > old_size);
assert(s == s0);
}
}
#endif
}
template <class S>
TEST_CONSTEXPR_CXX20 void test_string() {
typedef std::string_view SV;
test(S(""), 0, SV(""), S(""));
test(S(""), 0, SV("12345"), S("12345"));
test(S(""), 0, SV("1234567890"), S("1234567890"));
test(S(""), 0, SV("12345678901234567890"), S("12345678901234567890"));
test(S(""), 1, SV(""), S("can't happen"));
test(S(""), 1, SV("12345"), S("can't happen"));
test(S(""), 1, SV("1234567890"), S("can't happen"));
test(S(""), 1, SV("12345678901234567890"), S("can't happen"));
test(S("abcde"), 0, SV(""), S("abcde"));
test(S("abcde"), 0, SV("12345"), S("12345abcde"));
test(S("abcde"), 0, SV("1234567890"), S("1234567890abcde"));
test(S("abcde"), 0, SV("12345678901234567890"), S("12345678901234567890abcde"));
test(S("abcde"), 1, SV(""), S("abcde"));
test(S("abcde"), 1, SV("12345"), S("a12345bcde"));
test(S("abcde"), 1, SV("1234567890"), S("a1234567890bcde"));
test(S("abcde"), 1, SV("12345678901234567890"), S("a12345678901234567890bcde"));
test(S("abcde"), 2, SV(""), S("abcde"));
test(S("abcde"), 2, SV("12345"), S("ab12345cde"));
test(S("abcde"), 2, SV("1234567890"), S("ab1234567890cde"));
test(S("abcde"), 2, SV("12345678901234567890"), S("ab12345678901234567890cde"));
test(S("abcde"), 4, SV(""), S("abcde"));
test(S("abcde"), 4, SV("12345"), S("abcd12345e"));
test(S("abcde"), 4, SV("1234567890"), S("abcd1234567890e"));
test(S("abcde"), 4, SV("12345678901234567890"), S("abcd12345678901234567890e"));
test(S("abcde"), 5, SV(""), S("abcde"));
test(S("abcde"), 5, SV("12345"), S("abcde12345"));
test(S("abcde"), 5, SV("1234567890"), S("abcde1234567890"));
test(S("abcde"), 5, SV("12345678901234567890"), S("abcde12345678901234567890"));
test(S("abcde"), 6, SV(""), S("can't happen"));
test(S("abcde"), 6, SV("12345"), S("can't happen"));
test(S("abcde"), 6, SV("1234567890"), S("can't happen"));
test(S("abcde"), 6, SV("12345678901234567890"), S("can't happen"));
test(S("abcdefghij"), 0, SV(""), S("abcdefghij"));
test(S("abcdefghij"), 0, SV("12345"), S("12345abcdefghij"));
test(S("abcdefghij"), 0, SV("1234567890"), S("1234567890abcdefghij"));
test(S("abcdefghij"), 0, SV("12345678901234567890"), S("12345678901234567890abcdefghij"));
test(S("abcdefghij"), 1, SV(""), S("abcdefghij"));
test(S("abcdefghij"), 1, SV("12345"), S("a12345bcdefghij"));
test(S("abcdefghij"), 1, SV("1234567890"), S("a1234567890bcdefghij"));
test(S("abcdefghij"), 1, SV("12345678901234567890"), S("a12345678901234567890bcdefghij"));
test(S("abcdefghij"), 5, SV(""), S("abcdefghij"));
test(S("abcdefghij"), 5, SV("12345"), S("abcde12345fghij"));
test(S("abcdefghij"), 5, SV("1234567890"), S("abcde1234567890fghij"));
test(S("abcdefghij"), 5, SV("12345678901234567890"), S("abcde12345678901234567890fghij"));
test(S("abcdefghij"), 9, SV(""), S("abcdefghij"));
test(S("abcdefghij"), 9, SV("12345"), S("abcdefghi12345j"));
test(S("abcdefghij"), 9, SV("1234567890"), S("abcdefghi1234567890j"));
test(S("abcdefghij"), 9, SV("12345678901234567890"), S("abcdefghi12345678901234567890j"));
test(S("abcdefghij"), 10, SV(""), S("abcdefghij"));
test(S("abcdefghij"), 10, SV("12345"), S("abcdefghij12345"));
test(S("abcdefghij"), 10, SV("1234567890"), S("abcdefghij1234567890"));
test(S("abcdefghij"), 10, SV("12345678901234567890"), S("abcdefghij12345678901234567890"));
test(S("abcdefghij"), 11, SV(""), S("can't happen"));
test(S("abcdefghij"), 11, SV("12345"), S("can't happen"));
test(S("abcdefghij"), 11, SV("1234567890"), S("can't happen"));
test(S("abcdefghij"), 11, SV("12345678901234567890"), S("can't happen"));
test(S("abcdefghijklmnopqrst"), 0, SV(""), S("abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 0, SV("12345"), S("12345abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 0, SV("1234567890"), S("1234567890abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 0, SV("12345678901234567890"), S("12345678901234567890abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 1, SV(""), S("abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 1, SV("12345"), S("a12345bcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 1, SV("1234567890"), S("a1234567890bcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 1, SV("12345678901234567890"), S("a12345678901234567890bcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 10, SV(""), S("abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 10, SV("12345"), S("abcdefghij12345klmnopqrst"));
test(S("abcdefghijklmnopqrst"), 10, SV("1234567890"), S("abcdefghij1234567890klmnopqrst"));
test(S("abcdefghijklmnopqrst"), 10, SV("12345678901234567890"), S("abcdefghij12345678901234567890klmnopqrst"));
test(S("abcdefghijklmnopqrst"), 19, SV(""), S("abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 19, SV("12345"), S("abcdefghijklmnopqrs12345t"));
test(S("abcdefghijklmnopqrst"), 19, SV("1234567890"), S("abcdefghijklmnopqrs1234567890t"));
test(S("abcdefghijklmnopqrst"), 19, SV("12345678901234567890"), S("abcdefghijklmnopqrs12345678901234567890t"));
test(S("abcdefghijklmnopqrst"), 20, SV(""), S("abcdefghijklmnopqrst"));
test(S("abcdefghijklmnopqrst"), 20, SV("12345"), S("abcdefghijklmnopqrst12345"));
test(S("abcdefghijklmnopqrst"), 20, SV("1234567890"), S("abcdefghijklmnopqrst1234567890"));
test(S("abcdefghijklmnopqrst"), 20, SV("12345678901234567890"), S("abcdefghijklmnopqrst12345678901234567890"));
test(S("abcdefghijklmnopqrst"), 21, SV(""), S("can't happen"));
test(S("abcdefghijklmnopqrst"), 21, SV("12345"), S("can't happen"));
test(S("abcdefghijklmnopqrst"), 21, SV("1234567890"), S("can't happen"));
test(S("abcdefghijklmnopqrst"), 21, SV("12345678901234567890"), S("can't happen"));
}
TEST_CONSTEXPR_CXX20 bool test() {
test_string<std::string>();
#if TEST_STD_VER >= 11
test_string<std::basic_string<char, std::char_traits<char>, min_allocator<char>>>();
#endif
{ // test inserting into self
typedef std::string S;
S s_short = "123/";
S s_long = "Lorem ipsum dolor sit amet, consectetur/";
s_short.insert(0, s_short.c_str());
assert(s_short == "123/123/");
s_short.insert(0, s_short.c_str());
assert(s_short == "123/123/123/123/");
s_short.insert(0, s_short.c_str());
assert(s_short == "123/123/123/123/123/123/123/123/");
s_long.insert(0, s_long.c_str());
assert(s_long == "Lorem ipsum dolor sit amet, consectetur/Lorem ipsum dolor sit amet, consectetur/");
}
return true;
}
int main(int, char**)
{
test();
#if TEST_STD_VER > 17
static_assert(test());
#endif
return 0;
}
|