etl/test/test_string_u16_external_buffer.cpp
2025-12-16 09:15:26 +00:00

5873 lines
196 KiB
C++

/******************************************************************************
The MIT License(MIT)
Embedded Template Library.
https://github.com/ETLCPP/etl
https://www.etlcpp.com
Copyright(c) 2020 John Wellbelove
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files(the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions :
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
******************************************************************************/
#include "unit_test_framework.h"
#include <string>
#include <array>
#include <algorithm>
#include <atomic>
#include "etl/u16string.h"
#include "etl/fnv_1.h"
#undef STR
#define STR(x) u##x
namespace
{
bool compares_agree(int result1, int result2)
{
return ((result1 < 0) && (result2 < 0)) ||
((result1 == 0) && (result2 == 0)) ||
((result1 > 0) && (result2 > 0));
}
////***********************************
//std::ostream& operator << (std::ostream& os, const etl::iu16string::value_type& c)
//{
// os << uint16_t(c);
// return os;
//}
////***********************************
//std::ostream& operator << (std::ostream& os, const etl::iu16string::value_type* c)
//{
// os << (void*)c;
// return os;
//}
SUITE(test_string_char16_t_external_buffer)
{
static constexpr size_t SIZE = 11;
static constexpr size_t SIZE_L = 52;
static constexpr size_t SIZE_S = 4;
using Text = etl::u16string_ext;
using IText = etl::iu16string;
using TextL = etl::u16string<SIZE_L>;
using TextSTD = std::u16string;
using value_t = Text::value_type;
using TextBuffer = std::array<IText::value_type, SIZE + 1>;
using TextBufferL = std::array<IText::value_type, SIZE_L + 1>;
using TextBufferS = std::array<IText::value_type, SIZE_S + 1>;
using View = etl::u16string_view;
TextSTD initial_text;
TextSTD less_text;
TextSTD greater_text;
TextSTD shorter_text;
TextSTD different_text;
TextSTD insert_text;
TextSTD longer_text;
TextSTD short_text;
const value_t* pinitial_text = STR("Hello World");
value_t array_text[12];
value_t* p_text = array_text;
//*************************************************************************
template <typename T1, typename T2>
bool Equal(const T1& compare_text, const T2& text)
{
return (compare_text.size() == text.size()) && std::equal(text.begin(), text.end(), compare_text.begin());
}
//*************************************************************************
struct SetupFixture
{
SetupFixture()
{
initial_text = STR("Hello World");
insert_text = STR("Insert");
less_text = STR("Hello Vorld");
greater_text = STR("Hello Xorld");
shorter_text = STR("Hello Worl");
different_text = STR("Byee Planet");
longer_text = STR("Hello World There");
short_text = STR("Hello");
std::copy(pinitial_text, pinitial_text + etl::strlen(pinitial_text), array_text);
}
};
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_default_constructor)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
CHECK_EQUAL(text.size(), size_t(0));
CHECK(text.empty());
CHECK_EQUAL(SIZE, text.capacity());
CHECK_EQUAL(SIZE, text.max_size());
CHECK(text.begin() == text.end());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_default_constructor_use_buffer_and_size)
{
size_t length = etl::strlen(p_text);
Text text(p_text, length + 1);
CHECK_EQUAL(0U, text.size());
CHECK(text.empty());
CHECK_EQUAL(length, text.capacity());
CHECK_EQUAL(length, text.max_size());
CHECK(text.begin() == text.end());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_default_constructor_use_buffer_text_and_size)
{
Text text(p_text, p_text, etl::strlen(p_text) + 1);
CHECK_EQUAL(text.size(), etl::strlen(p_text));
CHECK(!text.empty());
CHECK_EQUAL(etl::strlen(p_text), text.capacity());
CHECK_EQUAL(etl::strlen(p_text), text.max_size());
CHECK(text.begin() != text.end());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_default_constructor_use_array_buffer)
{
Text text(array_text, ETL_OR_STD17::size(array_text));
CHECK_EQUAL(0U, text.size());
CHECK(text.empty());
CHECK_EQUAL(ETL_OR_STD17::size(array_text) - 1, text.capacity());
CHECK_EQUAL(ETL_OR_STD17::size(array_text) - 1, text.max_size());
CHECK(text.begin() == text.end());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_default_constructor_use_array_buffer_text)
{
Text text(array_text, array_text, ETL_OR_STD17::size(array_text));
CHECK_EQUAL(text.size(), etl::strlen(array_text));
CHECK(!text.empty());
CHECK_EQUAL(ETL_OR_STD17::size(array_text) - 1, text.capacity());
CHECK_EQUAL(ETL_OR_STD17::size(array_text) - 1, text.max_size());
CHECK(text.begin() != text.end());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST(test_iterator_comparison_empty)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
CHECK(text.begin() == text.end());
CHECK(text.cbegin() == text.cend());
CHECK(text.rbegin() == text.rend());
CHECK(text.crbegin() == text.crend());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_size_value)
{
const size_t INITIAL_SIZE = 5UL;
const value_t INITIAL_VALUE = STR('A');
TextBuffer buffer{0};
TextSTD compare_text(INITIAL_SIZE, INITIAL_VALUE);
Text text(INITIAL_SIZE, INITIAL_VALUE, buffer.data(), buffer.size());
CHECK(text.size() == INITIAL_SIZE);
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_size_excess)
{
TextBuffer buffer{0};
Text text(buffer.size() + 1, STR('A'), buffer.data(), buffer.size());
CHECK_EQUAL(buffer.size() - 1, text.size());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_char_pointer)
{
TextBuffer buffer{0};
TextSTD compare_text(initial_text.c_str());
Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_char_pointer_shorter_string)
{
TextSTD compare_text(shorter_text.c_str());
TextBuffer buffer{0};
Text text(shorter_text.c_str(), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_char_pointer_excess)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(longer_text.c_str(), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_char_pointer_size)
{
TextSTD compare_text(SIZE, STR('A'));
TextBuffer buffer{0};
Text text(SIZE, STR('A'), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_char_pointer_size_excess)
{
TextSTD compare_text(SIZE, STR('A'));
TextBuffer buffer{0};
Text text(SIZE + 1, STR('A'), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_size_char)
{
TextSTD compare_text(initial_text.c_str(), initial_text.size() / 2);
TextBuffer buffer{0};
Text text(initial_text.c_str(), initial_text.size() / 2, buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_size_char_excess)
{
TextSTD compare_text(initial_text.c_str(), initial_text.size());
TextBuffer buffer{0};
Text text(longer_text.c_str(), longer_text.size(), buffer.data(), buffer.size());
CHECK(!text.empty());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_range)
{
TextSTD compare_text(initial_text.begin(), initial_text.end());
TextBuffer buffer{0};
Text text(compare_text.begin(), compare_text.end(), buffer.data(), buffer.size());
CHECK(text.size() == SIZE);
CHECK(!text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_range_excess)
{
TextBuffer buffer{0};
Text text(longer_text.begin(), longer_text.end(), buffer.data(), buffer.size());
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
CHECK(text.size() == SIZE);
CHECK(!text.empty());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_literal)
{
TextBuffer buffer{0};
Text text(STR("Hello World"), buffer.data(), buffer.size());
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
CHECK(text.size() == SIZE);
CHECK(!text.empty());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_etl_string_view)
{
View view(initial_text.data(), initial_text.size());
TextBuffer buffer{0};
Text text(view, buffer.data(), buffer.size());
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
CHECK(text.size() == SIZE);
CHECK(!text.empty());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_range_16bit)
{
TextBuffer buffer{0};
Text text(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
CHECK_EQUAL(SIZE, text.size());
CHECK_FALSE(text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_range_16bit_const)
{
const View u16View{STR("16-bit")};
TextBuffer buffer{0};
Text text(u16View.begin(), u16View.end(), buffer.data(), buffer.size());
bool is_equal = Equal(u16View, text);
CHECK(is_equal);
CHECK_EQUAL(u16View.size(), text.size());
CHECK_FALSE(text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_range_8bit)
{
std::string text8Bit{"8-bit"};
TextBuffer buffer{0};
Text text(text8Bit.begin(), text8Bit.end(), buffer.data(), buffer.size());
bool is_equal = Equal(text8Bit, text);
CHECK(is_equal);
CHECK_EQUAL(text8Bit.size(), text.size());
CHECK_FALSE(text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_constructor_from_range_8bit_const)
{
std::string const text8Bit{"8-bit"};
TextBuffer buffer{0};
Text text(text8Bit.begin(), text8Bit.end(), buffer.data(), buffer.size());
bool is_equal = Equal(text8Bit, text);
CHECK(is_equal);
CHECK_EQUAL(text8Bit.size(), text.size());
CHECK_FALSE(text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_constructor)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(text, buffer2.data(), buffer2.size());
CHECK(text2 == text);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(!text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_constructor_i)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
IText& itext = text;
TextBuffer buffer2{0};
Text text2(itext, buffer2.data(), buffer2.size());
CHECK(text2 == text);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(!text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_constructor_excess)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBufferL bufferl{0};
Text textl(longer_text.c_str(), bufferl.data(), bufferl.size());
TextBuffer buffer2{0};
Text text2(textl, buffer2.data(), buffer2.size());
CHECK(text2 == text);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text2.is_truncated());
#else
CHECK_FALSE(text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_constructor_from_truncated)
{
TextBuffer buffer{0};
Text text(longer_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(text, buffer2.data(), buffer2.size());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text2.is_truncated());
#else
CHECK_FALSE(text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_construct_position_length)
{
TextSTD compare_text(initial_text.c_str());
TextSTD compare_text2(compare_text, 2, 4);
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(text, buffer2.data(), buffer2.size(), 2, 4);
bool is_equal = Equal(compare_text2, text2);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(!text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_construct_position_length_excess)
{
TextSTD compare_text(longer_text.c_str());
TextSTD compare_text2(compare_text, 2, 11);
TextBufferL bufferl{0};
Text textl(longer_text.c_str(), bufferl.data(), bufferl.size());
TextBuffer buffer{0};
Text text2(textl, buffer.data(), buffer.size(), 2, 12);
bool is_equal = Equal(compare_text2, text2);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text2.is_truncated());
#else
CHECK_FALSE(text2.is_truncated());
#endif
}
#if ETL_HAS_INITIALIZER_LIST
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_construct_initializer_list)
{
TextSTD compare_text = { STR('H'), STR('e'), STR('l') , STR('l') , STR('o') };
std::initializer_list<Text::value_type> il = { STR('H'), STR('e'), STR('l') , STR('l') , STR('o') };
TextBuffer buffer{0};
Text text(il, buffer.data(), buffer.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_construct_initializer_list_excess)
{
TextSTD compare_text = { STR('H'), STR('e'), STR('l'), STR('l'), STR('o'), STR(' '),
STR('W'), STR('o'), STR('r'), STR('l'), STR('d') };
std::initializer_list<Text::value_type> il = { STR('H'), STR('e'), STR('l'), STR('l'), STR('o'), STR(' '),
STR('W'), STR('o'), STR('r'), STR('l'), STR('d'), STR(' '),
STR('T'), STR('h'), STR('e'), STR('r'), STR('e') };
TextBuffer buffer{0};
Text text(il, buffer.data(), buffer.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
#endif
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment)
{
TextBuffer buffer{0};
Text text(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text other_text(buffer2.data(), buffer2.size());
other_text = text;
bool is_equal = Equal(text, other_text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
CHECK_FALSE(other_text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_excess)
{
TextBuffer buffer{0};
Text text(longer_text.begin(), longer_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text other_text(buffer2.data(), buffer2.size());
other_text = text;
bool is_equal = Equal(text, other_text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
CHECK_TRUE(other_text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
CHECK_FALSE(other_text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_iterface)
{
TextBuffer buffer{0};
Text text1(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(buffer2.data(), buffer2.size());
IText& itext1 = text1;
IText& itext2 = text2;
itext2 = itext1;
bool is_equal = Equal(text1, text2);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(!text1.is_truncated());
CHECK(!text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_iterface_excess)
{
TextBuffer buffer{0};
Text text1(longer_text.begin(), longer_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(buffer2.data(), buffer2.size());
IText& itext1 = text1;
IText& itext2 = text2;
itext2 = itext1;
bool is_equal = Equal(text1, text2);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text1.is_truncated());
CHECK_TRUE(text2.is_truncated());
#else
CHECK_FALSE(text1.is_truncated());
CHECK_FALSE(text2.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_self_assignment)
{
TextBuffer buffer{0};
Text text(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text other_text(text, buffer2.data(), buffer2.size());
#include "etl/private/diagnostic_self_assign_overloaded_push.h"
other_text = other_text;
#include "etl/private/diagnostic_pop.h"
bool is_equal = Equal(text, other_text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
CHECK_FALSE(other_text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_self_assignment_excess)
{
TextBuffer buffer{0};
Text text(longer_text.begin(), longer_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text other_text(text, buffer2.data(), buffer2.size());
#include "etl/private/diagnostic_self_assign_overloaded_push.h"
other_text = other_text;
#include "etl/private/diagnostic_pop.h"
bool is_equal = Equal(text, other_text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
CHECK_TRUE(other_text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
CHECK_FALSE(other_text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_from_literal)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text = STR("Hello World");
bool is_equal = Equal(TextSTD(STR("Hello World")), text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_from_literal_excess)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text = STR("Hello World There");
bool is_equal = Equal(TextSTD(STR("Hello World")), text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_from_literal_via_interface)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
IText& itext = text;
itext = STR("Hello World");
bool is_equal = Equal(TextSTD(STR("Hello World")), itext);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(!itext.is_truncated());
#else
CHECK_FALSE(itext.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_from_literal_via_interface_excess)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
IText& itext = text;
itext = STR("Hello World There");
bool is_equal = Equal(TextSTD(STR("Hello World")), itext);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(itext.is_truncated());
#else
CHECK_FALSE(itext.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assignment_from_view)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text = View(STR("Hello World"));
bool is_equal = Equal(TextSTD(STR("Hello World")), text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_begin)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text constText(initial_text.c_str(), buffer2.data(), buffer2.size());
CHECK_EQUAL(&text[0], text.begin());
CHECK_EQUAL(&constText[0], constText.begin());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_end)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text constText(initial_text.c_str(), buffer2.data(), buffer2.size());
CHECK_EQUAL(text.begin() + text.size(), text.end());
CHECK_EQUAL(constText.begin() + constText.size(), constText.end());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_up)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = 8;
TextBuffer buffer{0};
Text text(initial_text.c_str(), INITIAL_SIZE, buffer.data(), buffer.size());
text.resize(NEW_SIZE);
CHECK_EQUAL(text.size(), NEW_SIZE);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_up_value)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = 8;
const value_t INITIAL_VALUE = STR('A');
TextBuffer buffer{0};
Text text(INITIAL_SIZE, INITIAL_VALUE, buffer.data(), buffer.size());
text.resize(NEW_SIZE, INITIAL_VALUE);
std::array<value_t, NEW_SIZE> compare_text;
compare_text.fill(INITIAL_VALUE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_excess)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = SIZE + 1;
TextBuffer buffer{0};
Text text(INITIAL_SIZE, STR('A'), buffer.data(), buffer.size());
text.resize(NEW_SIZE, STR('A'));
CHECK_EQUAL(SIZE, text.size());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_down)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = 2;
TextBuffer buffer{0};
Text text(INITIAL_SIZE, STR('A'), buffer.data(), buffer.size());
text.resize(NEW_SIZE);
CHECK_EQUAL(text.size(), NEW_SIZE);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_down_value)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = 2;
const value_t INITIAL_VALUE = STR('A');
TextBuffer buffer{0};
Text text(INITIAL_SIZE, INITIAL_VALUE, buffer.data(), buffer.size());
text.resize(NEW_SIZE, INITIAL_VALUE);
CHECK_EQUAL(text.size(), NEW_SIZE);
std::array<value_t, NEW_SIZE> compare_text;
compare_text.fill(INITIAL_VALUE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_uninitialized_resize_up)
{
const size_t INITIAL_SIZE = 5UL;
const size_t NEW_SIZE = 8;
const value_t INITIAL_VALUE = STR('A');
const value_t FILL_VALUE = STR('B');
TextBuffer buffer{0};
Text text(INITIAL_SIZE, INITIAL_VALUE, buffer.data(), buffer.size());
Text::pointer pbegin = &text.front();
Text::pointer pend = &text.back() + 1;
Text::pointer pmax = pbegin + text.max_size();
// Fill free space with a pattern.
std::fill(pend, pmax, FILL_VALUE);
text.uninitialized_resize(NEW_SIZE);
std::array<value_t, NEW_SIZE> compare_text;
compare_text.fill(FILL_VALUE);
std::fill(compare_text.begin(), compare_text.begin() + INITIAL_SIZE, INITIAL_VALUE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_EQUAL(text.size(), NEW_SIZE);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_uninitialized_resize_up_excess)
{
const size_t INITIAL_SIZE = 5;
const size_t NEW_SIZE = SIZE + 1;
TextBuffer buffer{0};
Text text(INITIAL_SIZE, STR('A'), buffer.data(), buffer.size());
text.uninitialized_resize(NEW_SIZE);
CHECK_EQUAL(text.size(), SIZE);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_uninitialized_resize_down)
{
const size_t INITIAL_SIZE = 5UL;
const size_t NEW_SIZE = 2;
const value_t INITIAL_VALUE = STR('A');
const value_t FILL_VALUE = STR('B');
TextBuffer buffer{0};
Text text(INITIAL_SIZE, INITIAL_VALUE, buffer.data(), buffer.size());
Text::pointer pbegin = &text.front();
Text::pointer pend = &text.back() + 1;
Text::pointer pmax = pbegin + text.max_size();
// Fill free space with a pattern.
std::fill(pend, pmax, FILL_VALUE);
text.uninitialized_resize(NEW_SIZE);
std::array<value_t, NEW_SIZE> compare_text;
compare_text.fill(INITIAL_VALUE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_EQUAL(text.size(), NEW_SIZE);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_and_overwrite_up)
{
const size_t INITIAL_SIZE = 5UL;
const size_t NEW_SIZE = 8UL;
TextBuffer buffer{0};
Text text(initial_text.c_str(), INITIAL_SIZE, buffer.data(), buffer.size());
// Overwrite from index 1 to one less than the new size and set to that size.
text.resize_and_overwrite(NEW_SIZE, [](Text::pointer p, size_t n) noexcept
{
size_t i = 1;
while (i < (n - 1))
{
p[i] = '1' + Text::value_type(i);
++i;
}
return i;
});
CHECK_EQUAL(NEW_SIZE - 1, text.size());
CHECK_TRUE(Equal(TextSTD(STR("H234567")), text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_and_overwrite_down)
{
const size_t INITIAL_SIZE = 5UL;
const size_t NEW_SIZE = 3UL;
TextBuffer buffer{0};
Text text(initial_text.c_str(), INITIAL_SIZE, buffer.data(), buffer.size());
// Overwrite from index 1 to one less than the new size and set to that size.
text.resize_and_overwrite(NEW_SIZE, [](Text::pointer p, size_t n)
{
size_t i = 1;
while (i < (n - 1))
{
p[i] = '1' + Text::value_type(i);
++i;
}
return i;
});
CHECK_EQUAL(NEW_SIZE - 1, text.size());
CHECK_TRUE(Equal(TextSTD(STR("H2")), text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_resize_and_overwrite_up_excess)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), initial_text.size(), buffer.data(), buffer.size());
CHECK_THROW(text.resize_and_overwrite(text.capacity() + 1, [](Text::pointer /*p*/, size_t n) { return n; }), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_empty_full)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.resize(text.max_size(), STR('A'));
CHECK(!text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_empty_half)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.resize(text.max_size() / 2, STR('A'));
CHECK(!text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_empty_empty)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
CHECK(text.empty());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_full_full)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.resize(text.max_size(), STR('A'));
CHECK(text.full());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_full_half)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.resize(text.max_size() / 2, STR('A'));
CHECK(!text.full());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_full_empty)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
CHECK(!text.full());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_index)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
for (size_t i = 0UL; i < text.size(); ++i)
{
CHECK_EQUAL(text[i], compare_text[i]);
}
CHECK_FALSE(text.is_truncated());
CHECK_THROW(text[text.size()], etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_index_const)
{
const TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
const Text text(initial_text.c_str(), buffer.data(), buffer.size());
for (size_t i = 0UL; i < text.size(); ++i)
{
CHECK_EQUAL(text[i], compare_text[i]);
}
CHECK_FALSE(text.is_truncated());
CHECK_THROW(text[text.size()], etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_at)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
for (size_t i = 0UL; i < text.size(); ++i)
{
CHECK_EQUAL(text.at(i), compare_text.at(i));
}
CHECK_FALSE(text.is_truncated());
CHECK_THROW(text.at(text.size()), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_at_const)
{
const TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
const Text text(initial_text.c_str(), buffer.data(), buffer.size());
for (size_t i = 0UL; i < text.size(); ++i)
{
CHECK_EQUAL(text.at(i), compare_text.at(i));
}
CHECK_FALSE(text.is_truncated());
CHECK_THROW(text.at(text.size()), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_front)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK(text.front() == compare_text.front());
CHECK_FALSE(text.is_truncated());
TextBuffer buffer2{0};
Text emptyText(buffer2.data(), buffer2.size());
CHECK_THROW(emptyText.front(), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_front_const)
{
const TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
const Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK(text.front() == compare_text.front());
CHECK_FALSE(text.is_truncated());
TextBuffer buffer2{0};
const Text emptyText(buffer2.data(), buffer2.size());
CHECK_THROW(emptyText.front(), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_back)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK(text.back() == compare_text.back());
CHECK_FALSE(text.is_truncated());
TextBuffer buffer2{0};
Text emptyText(buffer2.data(), buffer2.size());
CHECK_THROW(emptyText.back(), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_back_const)
{
const TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
const Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK(text.back() == compare_text.back());
CHECK_FALSE(text.is_truncated());
TextBuffer buffer2{0};
const Text emptyText(buffer2.data(), buffer2.size());
CHECK_THROW(emptyText.back(), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_data)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(compare_text.begin(), compare_text.end(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.data(),
text.data() + text.size(),
compare_text.begin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_data_const)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
const Text text(compare_text.begin(), compare_text.end(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.data(),
text.data() + text.size(),
compare_text.begin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_string)
{
TextSTD compare_input(initial_text.c_str());
TextBuffer buffer{0};
Text input(initial_text.c_str(), buffer.data(), buffer.size());
TextSTD compare_text;
TextBuffer buffer2{0};
Text text(buffer2.data(), buffer2.size());
compare_text.assign(compare_input);
text.assign(input);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_self_assign_string)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
text.assign(text);
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_view)
{
TextSTD compare_input(initial_text.c_str());
TextBuffer buffer{0};
Text input(initial_text.c_str(), buffer.data(), buffer.size());
View view(input);
TextSTD compare_text;
TextBuffer buffer2{0};
Text text(buffer2.data(), buffer2.size());
compare_text.assign(compare_input);
text.assign(view);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_string_excess)
{
TextSTD compare_input(initial_text.c_str());
TextBufferL bufferl{0};
Text input(longer_text.c_str(), bufferl.data(), bufferl.size());
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
compare_text.assign(compare_input);
text.assign(input);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_pointer)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.c_str());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_pointer_excess)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(longer_text.c_str());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_pointer_length)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.c_str(), initial_text.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_pointer_length_excess)
{
TextSTD compare_text(longer_text.c_str());
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(longer_text.c_str(), longer_text.size());
compare_text.resize(text.max_size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_range)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(compare_text.begin(), compare_text.end());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_range_excess)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(longer_text.begin(), longer_text.end());
CHECK_EQUAL(initial_text.size(), text.size());
bool is_equal = Equal(initial_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_range_8bit)
{
std::string text8Bit{"8-bit"};
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(text8Bit.begin(), text8Bit.end());
bool is_equal = Equal(text8Bit, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
CHECK_EQUAL(text8Bit.size(), text.size());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_range_8bit_const)
{
std::string const text8Bit{"8-bit"};
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(text8Bit.begin(), text8Bit.end());
bool is_equal = Equal(text8Bit, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
CHECK_EQUAL(text8Bit.size(), text.size());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_size_value)
{
const size_t INITIAL_SIZE = 5;
const value_t INITIAL_VALUE = STR('A');
std::array<value_t, INITIAL_SIZE> compare_text;
compare_text.fill(INITIAL_VALUE);
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(INITIAL_SIZE, INITIAL_VALUE);
CHECK(text.size() == INITIAL_SIZE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_assign_size_value_excess)
{
const size_t INITIAL_SIZE = SIZE;
const size_t EXCESS_SIZE = SIZE + 1;
const value_t INITIAL_VALUE = STR('A');
std::array<value_t, INITIAL_SIZE> compare_text;
compare_text.fill(INITIAL_VALUE);
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(EXCESS_SIZE, INITIAL_VALUE);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_push_back)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
for (size_t i = 0UL; i < SIZE; ++i)
{
compare_text.push_back(STR('A') + value_t(i));
}
for (size_t i = 0UL; i < SIZE; ++i)
{
text.push_back(STR('A') + value_t(i));
}
CHECK_EQUAL(etl::strlen(compare_text.data()), etl::strlen(text.data()));
CHECK_EQUAL(compare_text.size(), text.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_push_back_excess)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
for (size_t i = 0UL; i < SIZE; ++i)
{
compare_text.push_back(STR('A') + value_t(i));
}
for (size_t i = 0UL; i < SIZE; ++i)
{
text.push_back(STR('A') + value_t(i));
CHECK_FALSE(text.is_truncated());
}
text.push_back(STR('A') + value_t(SIZE));
CHECK_EQUAL(etl::strlen(compare_text.data()), etl::strlen(text.data()));
CHECK_EQUAL(compare_text.size(), text.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_pop_back)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
compare_text.pop_back();
compare_text.pop_back();
text.pop_back();
text.pop_back();
CHECK_EQUAL(compare_text.size(), text.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_value)
{
const size_t INITIAL_SIZE = 5;
const value_t INITIAL_VALUE = STR('A');
for (size_t offset = 0; offset <= INITIAL_SIZE; ++offset)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
compare_text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
text.insert(text.begin() + offset, INITIAL_VALUE);
compare_text.insert(compare_text.begin() + offset, INITIAL_VALUE);
CHECK_EQUAL(compare_text.size(), text.size());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_value_outofbounds)
{
const size_t INITIAL_SIZE = 5;
const value_t INITIAL_VALUE = STR('A');
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
TextBuffer buffer2{0};
Text text2(buffer2.data(), buffer2.size());
CHECK_THROW(text.insert(text2.cbegin(), INITIAL_VALUE), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_value_excess)
{
TextSTD compare_text(initial_text.begin(), initial_text.end());
TextBuffer buffer{0};
Text text(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
const value_t INITIAL_VALUE = STR('A');
size_t offset = 2UL;
text.insert(text.cbegin() + offset, INITIAL_VALUE);
compare_text.insert(compare_text.cbegin() + offset, INITIAL_VALUE);
compare_text.erase(compare_text.cend() - 1);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = 0;
text.insert(text.cbegin() + offset, STR('A'));
compare_text.insert(compare_text.cbegin() + offset, STR('A'));
compare_text.erase(compare_text.cend() - 1);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = text.size();
text.insert(text.cbegin() + offset, STR('A'));
compare_text.insert(compare_text.cbegin() + offset, STR('A'));
compare_text.erase(compare_text.cend() - 1);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_n_value)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
const size_t INITIAL_SIZE = 5UL;
const size_t INSERT_SIZE = 3UL;
const value_t INITIAL_VALUE = STR('A');
for (size_t offset = 0UL; offset <= INITIAL_SIZE; ++offset)
{
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
compare_text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
text.insert(text.begin() + offset, INSERT_SIZE, INITIAL_VALUE);
compare_text.insert(compare_text.begin() + offset, INSERT_SIZE, INITIAL_VALUE);
CHECK_FALSE(text.is_truncated());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_n_value_outofbounds)
{
const size_t INITIAL_SIZE = 5UL;
const size_t INSERT_SIZE = 3UL;
const value_t INITIAL_VALUE = STR('A');
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
TextBuffer buffer2{0};
Text text2(buffer2.data(), buffer2.size());
CHECK_THROW(text.insert(text2.cbegin(), INSERT_SIZE, INITIAL_VALUE), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_n_value_excess)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
const size_t INSERT_SIZE = 4UL;
const value_t INSERT_VALUE = STR('A');
size_t offset = 0UL;
compare_text.assign(initial_text.cbegin(), initial_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
compare_text.insert(compare_text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
compare_text.erase(compare_text.cend() - INSERT_SIZE, compare_text.cend());
text.insert(text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = 2;
compare_text.assign(initial_text.cbegin(), initial_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
compare_text.insert(compare_text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
compare_text.erase(compare_text.cend() - INSERT_SIZE, compare_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
text.insert(text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = 4;
compare_text.assign(initial_text.cbegin(), initial_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
compare_text.insert(compare_text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
compare_text.erase(compare_text.cend() - INSERT_SIZE, compare_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
text.insert(text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = text.size();
compare_text.assign(initial_text.cbegin(), initial_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
compare_text.insert(compare_text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
compare_text.erase(compare_text.cend() - INSERT_SIZE, compare_text.cend());
text.assign(initial_text.cbegin(), initial_text.cend());
text.insert(text.cbegin() + offset, INSERT_SIZE, INSERT_VALUE);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_range)
{
const size_t INITIAL_SIZE = 5UL;
for (size_t offset = 0UL; offset <= INITIAL_SIZE; ++offset)
{
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.cbegin(), initial_text.cbegin() + INITIAL_SIZE);
compare_text.assign(initial_text.cbegin(), initial_text.cbegin() + INITIAL_SIZE);
text.insert(text.cbegin() + offset, insert_text.cbegin(), insert_text.cend());
compare_text.insert(compare_text.cbegin() + offset, insert_text.cbegin(), insert_text.cend());
CHECK_FALSE(text.is_truncated());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_range_outofbounds)
{
const size_t INITIAL_SIZE = 5UL;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
TextBuffer buffer2{0};
Text text2(buffer2.data(), buffer2.size());
CHECK_THROW(text.insert(text2.cbegin(), insert_text.cbegin(), insert_text.cend()), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_range_swapped_iterators)
{
const size_t INITIAL_SIZE = 5UL;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(initial_text.begin(), initial_text.begin() + INITIAL_SIZE);
CHECK_THROW(text.insert(text.cbegin(), insert_text.cend(), insert_text.cbegin()), etl::string_iterator);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_range_excess)
{
const size_t INITIAL_SIZE = 5UL;
const value_t INITIAL_VALUE = STR('A');
TextSTD compare_text;
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
size_t offset = 0UL;
compare_text.assign(INITIAL_SIZE, INITIAL_VALUE);
text.assign(INITIAL_SIZE, INITIAL_VALUE);
compare_text.insert(compare_text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
compare_text.resize(initial_text.size());
text.insert(text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = 2;
compare_text.assign(INITIAL_SIZE, INITIAL_VALUE);
text.assign(INITIAL_SIZE, INITIAL_VALUE);
compare_text.insert(compare_text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
compare_text.resize(initial_text.size());
text.insert(text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
is_equal = Equal(compare_text, text);
CHECK(is_equal);
offset = 4;
compare_text.assign(INITIAL_SIZE, INITIAL_VALUE);
text.assign(INITIAL_SIZE, INITIAL_VALUE);
compare_text.insert(compare_text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
compare_text.resize(initial_text.size());
text.insert(text.cbegin() + offset, initial_text.cbegin(), initial_text.cend());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
CHECK_EQUAL(compare_text.size(), text.size());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_position_range_self)
{
size_t length = SIZE_L / 2;
for (size_t offset = 10UL; offset < length; ++offset)
{
TextSTD compare_text = STR("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
TextBufferL bufferl{0};
Text text(bufferl.data(), bufferl.size());
text = STR("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
text.insert(text.cbegin() + offset, text.cbegin() + 5, text.cbegin() + 10);
compare_text.insert(compare_text.cbegin() + offset, compare_text.cbegin() + 5, compare_text.cbegin() + 10);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_size_t_position_string)
{
for (size_t offset = 0UL; offset <= short_text.size(); ++offset)
{
TextSTD compare_text(short_text.cbegin(), short_text.cend());
TextBuffer buffer{0};
buffer.fill(0);
Text text(short_text.begin(), short_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text insert(insert_text.begin(), insert_text.end(), buffer2.data(), buffer2.size());
text.insert(offset, insert);
compare_text.insert(offset, insert_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_size_t_position_view)
{
for (size_t offset = 0UL; offset <= short_text.size(); ++offset)
{
TextSTD compare_text(short_text.cbegin(), short_text.cend());
TextBuffer buffer{0};
buffer.fill(0);
Text text(short_text.begin(), short_text.end(), buffer.data(), buffer.size());
View view(insert_text.data(), insert_text.size());
text.insert(offset, view);
compare_text.insert(offset, insert_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_size_t_position_string_excess)
{
for (size_t offset = 0UL; offset <= initial_text.size(); ++offset)
{
TextSTD compare_text(initial_text.cbegin(), initial_text.cend());
TextBuffer buffer{0};
Text text(initial_text.begin(), initial_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text insert(insert_text.begin(), insert_text.end(), buffer2.data(), buffer2.size());
text.insert(offset, insert);
compare_text.insert(offset, insert_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_size_t_position_string_from_truncated)
{
for (size_t offset = 0UL; offset <= short_text.size(); ++offset)
{
TextSTD compare_text(short_text.cbegin(), short_text.cend());
TextBuffer buffer{0};
Text text(short_text.begin(), short_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text insert(longer_text.begin(), longer_text.end(), buffer2.data(), buffer2.size());
insert.erase(insert.cbegin(), insert.cend());
insert.append(insert_text.cbegin(), insert_text.cend());
text.insert(offset, insert);
compare_text.insert(offset, insert_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_insert_size_t_position_string_subpos_sunlen)
{
TextSTD compare_text(short_text.cbegin(), short_text.cend());
TextBuffer buffer{0};
Text text(short_text.begin(), short_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text insert(insert_text.begin(), insert_text.end(), buffer2.data(), buffer2.size());
text.insert(0, insert, 0, insert.size());
compare_text.insert(0, insert_text, 0, insert_text.size());
compare_text.resize(std::min(compare_text.size(), SIZE));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
compare_text.assign(short_text.cbegin(), short_text.cend());
text.assign(short_text.cbegin(), short_text.cend());
text.insert(2, insert, 2, insert.size() - 2);
compare_text.insert(2, insert_text, 2, insert_text.size() - 2);
compare_text.resize(std::min(compare_text.size(), SIZE));
CHECK_EQUAL(compare_text.size(), text.size());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
compare_text.assign(short_text.cbegin(), short_text.cend());
text.assign(short_text.cbegin(), short_text.cend());
text.insert(short_text.size(), insert, 0, insert.size());
compare_text.insert(short_text.size(), insert_text, 0, insert_text.size());
compare_text.resize(std::min(compare_text.size(), SIZE));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_string)
{
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text append(insert_text.c_str(), buffer2.data(), buffer2.size());
// Non-overflow.
compare_text.append(insert_text);
text.append(append);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
append.assign(initial_text.c_str());
compare_text.append(initial_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(append);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_view)
{
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
View view(insert_text.data(), insert_text.size());
// Non-overflow.
compare_text.append(insert_text);
text.append(view);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
view.assign(initial_text.data(), initial_text.size());
compare_text.append(initial_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(view);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_truncated_string)
{
#include "etl/private/diagnostic_array_bounds_push.h"
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextBufferS buffers{0};
Text append(short_text.c_str(), buffers.data(), buffers.size());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(append.is_truncated());
#else
CHECK_FALSE(append.is_truncated());
#endif
text.append(append);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_string_to_self)
{
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
// Non-overflow.
compare_text.append(compare_text);
text.append(text);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(shorter_text.c_str());
text.assign(shorter_text.c_str());
compare_text.append(compare_text);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(text);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_string_subpos_sublen)
{
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text append(insert_text.c_str(), buffer2.data(), buffer2.size());
// Whole string.
compare_text.append(insert_text, 0, TextSTD::npos);
text.append(append, 0, Text::npos);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Partial string.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
append.assign(initial_text.c_str());
compare_text.append(short_text, 1, 3);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(append, 1, 3);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
append.assign(initial_text.c_str());
compare_text.append(initial_text, 1, initial_text.size());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(append, 1, append.size());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_truncated_string_subpos_sublen)
{
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextBufferS buffer2{0};
Text append(short_text.c_str(), buffer2.data(), buffer2.size());
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK(append.is_truncated());
#else
CHECK_FALSE(append.is_truncated());
#endif
text.append(append, 1, 2);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_c_string)
{
// Non-overflow.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
// Whole string.
compare_text.append(insert_text.c_str());
text.append(insert_text.c_str());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.append(initial_text.c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(initial_text.c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_n_c)
{
// Non-overflow.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
// Non-overflow.
compare_text.append(5, STR('A'));
text.append(5, STR('A'));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.append(SIZE, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(SIZE, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_append_range)
{
// Non-overflow.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text append(insert_text.c_str(), buffer2.data(), buffer2.size());
compare_text.append(insert_text.begin(), insert_text.end());
text.append(append.begin(), append.end());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
append.assign(initial_text.c_str());
compare_text.append(initial_text.begin(), initial_text.end());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.append(append.begin(), append.end());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_string)
{
// Non-overflow short text, npos.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, TextL(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, TextL(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_view)
{
// Non-overflow short text, npos.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace")));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, View(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, View(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 2, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 2, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_string)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace")));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 9, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 9, TextL(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_view)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, View(STR("Replace")));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 9, TextSTD(STR("Replace")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 9, View(STR("Replace")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, View(STR("Replace with some text")));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_string_subposition_sublength)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, 4, TextSTD(STR("Replace")), 1, 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace")), 1, 5);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")), 1, 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")), 1, 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")), 1, 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, TextL(STR("Replace")), 1, 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")), 1, 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")), 1, 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_view_subposition_sublength)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, 4, TextSTD(STR("Replace")), 1, 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, View(STR("Replace")), 1, 5);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")), 1, 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, View(STR("Replace with some text")), 1, 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace with some text")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")), 1, 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, View(STR("Replace")), 1, 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")), 1, 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, View(STR("Replace with some text")), 1, 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")), 1, TextSTD::npos);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, View(STR("Replace with some text")), 1, Text::npos);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_pointer)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, 4, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace")).c_str());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, TextL(STR("Replace")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_pointer)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace")).c_str());
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 9, TextSTD(STR("Replace")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 9, TextL(STR("Replace")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")).c_str());
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")).c_str());
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_pointer_n)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, 4, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace")).c_str(), 5);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")).c_str(), 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, TextL(STR("Replace")).c_str(), 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace")).c_str(), 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 4, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_pointer_n)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace")).c_str(), 5);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
#include "etl/private/diagnostic_array_bounds_push.h"
#include "etl/private/diagnostic_stringop_overread_push.h"
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
#include "etl/private/diagnostic_pop.h"
#include "etl/private/diagnostic_pop.h"
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 9, TextSTD(STR("Replace")).c_str(), 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 9, TextL(STR("Replace")).c_str(), 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
#include "etl/private/diagnostic_array_bounds_push.h"
#include "etl/private/diagnostic_stringop_overread_push.h"
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, TextSTD(STR("Replace with some text")).c_str(), 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, TextL(STR("Replace with some text")).c_str(), 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
#include "etl/private/diagnostic_pop.h"
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_position_length_n_c)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(2, 4, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, 7, STR('A'));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, 7, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, 4, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow short text, npos.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(2, TextSTD::npos, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 7, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 7, 7, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Non-overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, 7, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, 4, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, 4, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Overflow, npos.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(2, TextSTD::npos, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(2, Text::npos, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_n_c)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, 7, STR('A'));
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 9, 7, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 9, 7, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, 15, STR('A'));
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, 15, STR('A'));
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_replace_first_last_first_last)
{
// Non-overflow short text.
TextSTD compare_text(short_text.c_str());
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
TextSTD replace(STR("Replace"));
TextSTD replace_long(STR("Replace with some text"));
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, replace.begin() + 1, replace.begin() + 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, replace.begin() + 1, replace.begin() + 5);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow short text.
compare_text.assign(short_text.c_str());
text.assign(short_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, replace_long.begin() + 1, replace_long.begin() + 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, replace_long.begin() + 1, replace_long.begin() + 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
// Non-overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 7, replace.begin() + 1, replace.begin() + 5);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 7, replace_long.begin() + 1, replace_long.begin() + 5);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
// Overflow.
compare_text.assign(initial_text.c_str());
text.assign(initial_text.c_str());
compare_text.replace(compare_text.begin() + 2, compare_text.begin() + 4, replace_long.begin() + 1, replace_long.begin() + 15);
compare_text.resize(std::min(compare_text.size(), SIZE));
text.replace(text.begin() + 2, text.begin() + 4, replace_long.begin() + 1, replace_long.begin() + 15);
is_equal = Equal(compare_text, text);
CHECK(is_equal);
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_erase_single)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
compare_text.erase(compare_text.begin() + 2);
text.erase(text.begin() + 2);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_erase_single_outofbounds)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK_THROW(text.erase(text.end()), etl::string_out_of_bounds);
CHECK_THROW(text.erase(text.cend()), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_erase_single_position_outofbounds)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
CHECK_THROW(text.erase(text.size() + 1), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_erase_range)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
compare_text.erase(compare_text.begin() + 2, compare_text.begin() + 4);
text.erase(text.begin() + 2, text.begin() + 4);
bool is_equal = Equal(compare_text, text);
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_erase_range_outofbounds)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(initial_text.c_str(), buffer2.data(), buffer2.size());
CHECK_THROW(text.erase(text2.begin(), text2.end()), etl::string_out_of_bounds);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_clear)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
text.clear();
CHECK_EQUAL(text.size(), size_t(0));
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_iterator)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.begin(), text.end(), compare_text.begin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_const_iterator)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.cbegin(), text.cend(), compare_text.cbegin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_reverse_iterator)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.rbegin(), text.rend(), compare_text.rbegin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_const_reverse_iterator)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
bool is_equal = std::equal(text.crbegin(), text.crend(), compare_text.crbegin());
CHECK(is_equal);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_equal)
{
TextBuffer buffer{0};
const Text initial1(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial2(initial_text.c_str(), buffer2.data(), buffer2.size());
CHECK(initial1 == initial2);
TextBuffer buffer3;
const Text different(different_text.c_str(), buffer3.data(), buffer3.size());
CHECK(!(initial1 == different));
TextBuffer buffer4;
const Text shorter(shorter_text.c_str(), buffer4.data(), buffer4.size());
CHECK(!(shorter == initial1));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_not_equal)
{
TextBuffer buffer{0};
const Text initial1(initial_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial2(initial_text.c_str(), buffer2.data(), buffer2.size());
CHECK(!(initial1 != initial2));
TextBuffer buffer3;
const Text different(different_text.begin(), different_text.end(), buffer3.data(), buffer3.size());
CHECK(initial1 != different);
TextBuffer buffer4;
const Text shorter(shorter_text.begin(), shorter_text.end(), buffer4.data(), buffer4.size());
CHECK(shorter != initial1);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_less_than)
{
TextBuffer buffer{0};
const Text less(less_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial(initial_text.c_str(), buffer2.data(), buffer2.size());
// String-String
CHECK((less < initial) == (less_text < initial_text));
CHECK((initial < less) == (initial_text < less_text));
TextBuffer buffer3;
const Text greater(greater_text.c_str(), buffer3.data(), buffer3.size());
CHECK((greater < initial) == (greater_text < initial_text));
CHECK((initial < greater) == (initial_text < greater_text));
TextBuffer buffer4;
const Text shorter(shorter_text.c_str(), buffer4.data(), buffer4.size());
CHECK((shorter < initial) == (shorter_text < initial_text));
CHECK((initial < shorter) == (initial_text < shorter_text));
CHECK((initial < initial) == (initial_text < initial_text));
CHECK((initial < initial) == (initial_text < initial_text));
// String-Pointer Pointer-String
CHECK((less < pinitial_text) == (less_text < pinitial_text));
CHECK((pinitial_text < less) == (pinitial_text < less_text));
CHECK((greater < pinitial_text) == (greater_text < pinitial_text));
CHECK((pinitial_text < greater) == (pinitial_text < greater_text));
CHECK((shorter < pinitial_text) == (shorter_text < pinitial_text));
CHECK((pinitial_text < shorter) == (pinitial_text < shorter_text));
CHECK((initial < pinitial_text) == (initial_text < pinitial_text));
CHECK((pinitial_text < initial) == (pinitial_text < initial_text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_less_than_or_equal)
{
TextBuffer buffer{0};
const Text less(less_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial(initial_text.c_str(), buffer2.data(), buffer2.size());
// String-String
CHECK((less <= initial) == (less_text <= initial_text));
CHECK((initial <= less) == (initial_text <= less_text));
TextBuffer buffer3;
const Text greater(greater_text.c_str(), buffer3.data(), buffer3.size());
CHECK((greater <= initial) == (greater_text <= initial_text));
CHECK((initial <= greater) == (initial_text <= greater_text));
TextBuffer buffer4;
const Text shorter(shorter_text.c_str(), buffer4.data(), buffer4.size());
CHECK((shorter <= initial) == (shorter_text <= initial_text));
CHECK((initial <= shorter) == (initial_text <= shorter_text));
CHECK((initial <= initial) == (initial_text <= initial_text));
CHECK((initial <= initial) == (initial_text <= initial_text));
// String-Pointer Pointer-String
CHECK((less <= pinitial_text) == (less_text <= pinitial_text));
CHECK((pinitial_text <= less) == (pinitial_text <= less_text));
CHECK((greater <= pinitial_text) == (greater_text <= pinitial_text));
CHECK((pinitial_text <= greater) == (pinitial_text <= greater_text));
CHECK((shorter <= pinitial_text) == (shorter_text <= pinitial_text));
CHECK((pinitial_text <= shorter) == (pinitial_text <= shorter_text));
CHECK((initial <= pinitial_text) == (initial_text <= pinitial_text));
CHECK((pinitial_text <= initial) == (pinitial_text <= initial_text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_greater_than)
{
TextBuffer buffer{0};
const Text less(less_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial(initial_text.c_str(), buffer2.data(), buffer2.size());
// String-String
CHECK((less > initial) == (less_text > initial_text));
CHECK((initial > less) == (initial_text > less_text));
TextBuffer buffer3;
const Text greater(greater_text.c_str(), buffer3.data(), buffer3.size());
CHECK((greater > initial) == (greater_text > initial_text));
CHECK((initial > greater) == (initial_text > greater_text));
TextBuffer buffer4;
const Text shorter(shorter_text.c_str(), buffer4.data(), buffer4.size());
CHECK((shorter > initial) == (shorter_text > initial_text));
CHECK((initial > shorter) == (initial_text > shorter_text));
CHECK((initial > initial) == (initial_text > initial_text));
CHECK((initial > initial) == (initial_text > initial_text));
// String-Pointer Pointer-String
CHECK((less > pinitial_text) == (less_text > pinitial_text));
CHECK((pinitial_text > less) == (pinitial_text > less_text));
CHECK((greater > pinitial_text) == (greater_text > pinitial_text));
CHECK((pinitial_text > greater) == (pinitial_text > greater_text));
CHECK((shorter > pinitial_text) == (shorter_text > pinitial_text));
CHECK((pinitial_text > shorter) == (pinitial_text > shorter_text));
CHECK((initial > pinitial_text) == (initial_text > pinitial_text));
CHECK((pinitial_text > initial) == (pinitial_text > initial_text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_greater_than_or_equal)
{
TextBuffer buffer{0};
const Text less(less_text.begin(), less_text.end(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
const Text initial(initial_text.begin(), initial_text.end(), buffer2.data(), buffer2.size());
// String-String
CHECK((less >= initial) == (less_text >= initial_text));
CHECK((initial >= less) == (initial_text >= less_text));
TextBuffer buffer3;
const Text greater(greater_text.begin(), greater_text.end(), buffer3.data(), buffer3.size());
CHECK((greater >= initial) == (greater_text >= initial_text));
CHECK((initial >= greater) == (initial_text >= greater_text));
TextBuffer buffer4;
const Text shorter(shorter_text.begin(), shorter_text.end(), buffer4.data(), buffer4.size());
CHECK((shorter >= initial) == (shorter_text >= initial_text));
CHECK((initial >= shorter) == (initial_text > shorter_text));
CHECK((initial >= initial) == (initial_text >= initial_text));
CHECK((initial >= initial) == (initial_text >= initial_text));
// String-Pointer Pointer-String
CHECK((less >= pinitial_text) == (less_text >= pinitial_text));
CHECK((pinitial_text >= less) == (pinitial_text >= less_text));
CHECK((greater >= pinitial_text) == (greater_text >= pinitial_text));
CHECK((pinitial_text >= greater) == (pinitial_text >= greater_text));
CHECK((shorter >= pinitial_text) == (shorter_text >= pinitial_text));
CHECK((pinitial_text >= shorter) == (pinitial_text >= shorter_text));
CHECK((initial >= pinitial_text) == (initial_text >= pinitial_text));
CHECK((pinitial_text >= initial) == (pinitial_text >= initial_text));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
value_t buffer1[SIZE];
value_t buffer2[SIZE];
size_t length1 = compare_text.copy(buffer1, 5, 2);
buffer1[length1] = STR('\0');
size_t length2 = text.copy(buffer2, 5, 2);
buffer2[length2] = STR('\0');
CHECK_EQUAL(length1, length2);
CHECK_FALSE(text.is_truncated());
bool is_equal = std::equal(buffer1,
buffer1 + length1,
buffer2);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_start_pos_too_large)
{
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
value_t buffer1[SIZE];
size_t length1 = text.copy(buffer1, 5, SIZE);
CHECK_EQUAL(0U, length1);
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_count_equals_npos)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
value_t buffer1[SIZE];
value_t buffer2[SIZE];
size_t length1 = compare_text.copy(buffer1, TextSTD::npos, 2);
buffer1[length1] = STR('\0');
size_t length2 = text.copy(buffer2, Text::npos, 2);
buffer2[length2] = STR('\0');
CHECK_EQUAL(length1, length2);
CHECK_FALSE(text.is_truncated());
bool is_equal = std::equal(buffer1,
buffer1 + length1,
buffer2);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_copy_count_too_large)
{
TextSTD compare_text(initial_text.c_str());
TextBuffer buffer{0};
Text text(initial_text.c_str(), buffer.data(), buffer.size());
value_t buffer1[SIZE];
value_t buffer2[SIZE];
size_t length1 = compare_text.copy(buffer1, SIZE, 2);
buffer1[length1] = STR('\0');
size_t length2 = text.copy(buffer2, SIZE, 2);
buffer2[length2] = STR('\0');
CHECK_EQUAL(length1, length2);
CHECK_FALSE(text.is_truncated());
bool is_equal = std::equal(buffer1,
buffer1 + length1,
buffer2);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_string)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_needle(STR("needle"));
TextBuffer buffer{0};
Text needle(STR("needle"), buffer.data(), buffer.size());
TextSTD compare_haystack(the_haystack);
TextBufferL buffer2{0};
Text haystack(the_haystack, buffer2.data(), buffer2.size());
size_t position1 = 0;
size_t position2 = 0;
position1 = compare_haystack.find(compare_needle, position1);
position2 = haystack.find(needle, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.find(compare_needle, position1 + 1);
position2 = haystack.find(needle, position2 + 1);
CHECK_EQUAL(position1, position2);
position2 = haystack.find(needle, position2 + 1);
CHECK_EQUAL(Text::npos, position2);
Text pin(STR("pin"), buffer.data(), buffer.size());
position2 = haystack.find(pin);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_view)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_needle(STR("needle"));
View needle_view(STR("needle"));
TextSTD compare_haystack(the_haystack);
TextBufferL buffer2{0};
Text haystack(the_haystack, buffer2.data(), buffer2.size());
size_t position1 = 0UL;
size_t position2 = 0UL;
position1 = compare_haystack.find(compare_needle, position1);
position2 = haystack.find(needle_view, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.find(compare_needle, position1 + 1);
position2 = haystack.find(needle_view, position2 + 1);
CHECK_EQUAL(position1, position2);
position2 = haystack.find(needle_view, position2 + 1);
CHECK_EQUAL(TextL::npos, position2);
View pin_view(STR("pin"));
position2 = haystack.find(pin_view);
CHECK_EQUAL(TextL::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_pointer)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
const value_t needle[] = STR("needle");
TextSTD compare_haystack(the_haystack);
TextBufferL buffer{0};
Text haystack(the_haystack, buffer.data(), buffer.size());
size_t position1 = 0;
size_t position2 = 0;
position1 = compare_haystack.find(needle, position1);
position2 = haystack.find(needle, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.find(needle, position1 + 1);
position2 = haystack.find(needle, position2 + 1);
CHECK_EQUAL(position1, position2);
position2 = haystack.find(needle, position2 + 1);
CHECK_EQUAL(IText::npos, position2);
const value_t *pin = STR("pin");
position2 = haystack.find(pin);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_char_pointer_n)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
const value_t needle[] = STR("needle");
TextSTD compare_haystack(the_haystack);
TextBufferL buffer{0};
Text haystack(the_haystack, buffer.data(), buffer.size());
size_t position1 = 0;
size_t position2 = 0;
position1 = compare_haystack.find(needle, position1, 3);
position2 = haystack.find(needle, position2, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.find(needle, position1 + 1, 3);
position2 = haystack.find(needle, position2 + 1, 3);
CHECK_EQUAL(position1, position2);
position2 = haystack.find(needle, position2 + 1, 3);
CHECK_EQUAL(IText::npos, position2);
const value_t *pin = STR("pin");
position2 = haystack.find(pin, 0, 3);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_contains_string)
{
TextBufferL buffer1{0};
TextBuffer buffer2{0};
TextBuffer buffer3{0};
TextBuffer buffer4{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
Text needle(STR("needle"), buffer2.data(), buffer2.size());
Text pin(STR("pin"), buffer3.data(), buffer3.size());
Text excess(STR("A really gigantic pin or needle that's really really big"), buffer4.data(), buffer4.size());
CHECK_TRUE(haystack.contains(needle));
CHECK_FALSE(haystack.contains(pin));
CHECK_FALSE(haystack.contains(excess));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_contains_view)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.contains(View(STR("needle"))));
CHECK_FALSE(haystack.contains(View(STR("pin"))));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_contains_pointer)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.contains(STR("needle")));
CHECK_FALSE(haystack.contains(STR("pin")));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_contains_char)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.contains(STR('l')));
CHECK_FALSE(haystack.contains(STR('p')));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_starts_with_string)
{
TextBufferL buffer1{0};
TextBuffer buffer2{0};
TextBuffer buffer3{0};
TextBuffer buffer4{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
Text start(STR("A haystack"), buffer2.data(), buffer2.size());
Text not_start(STR("a needle"), buffer3.data(), buffer3.size());
Text excess(STR("Really gigantic text that's really really big"), buffer4.data(), buffer4.size());
CHECK_TRUE(haystack.starts_with(start));
CHECK_FALSE(haystack.starts_with(not_start));
CHECK_FALSE(haystack.starts_with(excess));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_starts_with_view)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.starts_with(View(STR("A haystack"))));
CHECK_FALSE(haystack.starts_with(View(STR("a needle"))));
CHECK_FALSE(haystack.starts_with(View(STR("Really gigantic text that's really really big"))));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_starts_with_pointer)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.starts_with(STR("A haystack")));
CHECK_FALSE(haystack.starts_with(STR("a needle")));
CHECK_FALSE(haystack.starts_with(STR("Really gigantic text that's really really big")));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_starts_with_char)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.starts_with(haystack[0]));
CHECK_FALSE(haystack.starts_with(haystack[1]));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_ends_with_string)
{
TextBufferL buffer1{0};
TextBuffer buffer2{0};
TextBuffer buffer3{0};
TextBuffer buffer4{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
Text end(STR("else"), buffer2.data(), buffer2.size());
Text not_end(STR("needle"), buffer3.data(), buffer3.size());
Text excess(STR("Really gigantic text that's really really big"), buffer4.data(), buffer4.size());
CHECK_TRUE(haystack.ends_with(end));
CHECK_FALSE(haystack.ends_with(not_end));
CHECK_FALSE(haystack.ends_with(excess));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_ends_with_view)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.ends_with(View(STR("else"))));
CHECK_FALSE(haystack.ends_with(View(STR("needle"))));
CHECK_FALSE(haystack.ends_with(View(STR("Really gigantic text that's really really big"))));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_ends_with_pointer)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.ends_with(STR("else")));
CHECK_FALSE(haystack.ends_with(STR("needle")));
CHECK_FALSE(haystack.ends_with(STR("Really gigantic text that's really really big")));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_ends_with_char)
{
TextBufferL buffer1{0};
Text haystack(STR("A haystack with a needle and nothing else"), buffer1.data(), buffer1.size());
CHECK_TRUE(haystack.ends_with(haystack[haystack.size() - 1]));
CHECK_FALSE(haystack.ends_with(haystack[haystack.size() - 2]));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_rfind_string)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_needle(STR("needle"));
TextBufferL buffer{0};
Text needle(STR("needle"), buffer.data(), buffer.size());
TextSTD compare_haystack(the_haystack);
TextBufferL buffer2{0};
Text haystack(the_haystack, buffer2.data(), buffer2.size());
size_t position1 = TextSTD::npos;
size_t position2 = TextL::npos;
position1 = compare_haystack.rfind(compare_needle, position1);
position2 = haystack.rfind(needle, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.rfind(compare_needle, compare_haystack.size() - 10);
position2 = haystack.rfind(needle, haystack.size() - 10);
CHECK_EQUAL(position1, position2);
TextBufferL buffer3;
Text pin(STR("pin"), buffer3.data(), buffer3.size());
position2 = haystack.rfind(pin);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_rfind_view)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_needle(STR("needle"));
View needle_view(STR("needle"));
TextSTD compare_haystack(the_haystack);
TextL haystack(the_haystack);
size_t position1 = TextSTD::npos;
size_t position2 = TextL::npos;
position1 = compare_haystack.rfind(compare_needle, position1);
position2 = haystack.rfind(needle_view, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.rfind(compare_needle, compare_haystack.size() - 10);
position2 = haystack.rfind(needle_view, haystack.size() - 10);
CHECK_EQUAL(position1, position2);
View pin_view(STR("pin"));
position2 = haystack.rfind(pin_view);
CHECK_EQUAL(TextL::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_rfind_pointer)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_haystack(the_haystack);
TextBufferL buffer{0};
Text haystack(the_haystack, buffer.data(), buffer.size());
const value_t needle[] = STR("needle");
size_t position1 = TextSTD::npos;
size_t position2 = TextL::npos;
position1 = compare_haystack.rfind(needle, position1);
position2 = haystack.rfind(needle, position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.rfind(needle, compare_haystack.size() - 10);
position2 = haystack.rfind(needle, haystack.size() - 10);
CHECK_EQUAL(position1, position2);
TextBufferL buffer2{0};
Text pin(STR("pin"), buffer2.data(), buffer2.size());
position2 = haystack.rfind(pin);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_rfind_pointer_n)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_haystack(the_haystack);
TextBufferL buffer{0};
Text haystack(the_haystack, buffer.data(), buffer.size());
const value_t needle[] = STR("needle");
size_t position1 = TextSTD::npos;
size_t position2 = Text::npos;
position1 = compare_haystack.rfind(needle, position1, 3);
position2 = haystack.rfind(needle, position2, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.rfind(needle, compare_haystack.size() - 10, 3);
position2 = haystack.rfind(needle, haystack.size() - 10, 3);
CHECK_EQUAL(position1, position2);
position2 = haystack.rfind(STR("pin"), 3);
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_rfind_c_position)
{
const value_t the_haystack[] = STR("A haystack with a needle and another needle");
TextSTD compare_haystack(the_haystack);
TextBufferL buffer{0};
Text haystack(the_haystack, buffer.data(), buffer.size());
size_t position1 = TextSTD::npos;
size_t position2 = TextL::npos;
position1 = compare_haystack.rfind(STR('e'), position1);
position2 = haystack.rfind(STR('e'), position2);
CHECK_EQUAL(position1, position2);
position1 = compare_haystack.rfind(STR('e'), compare_haystack.size() - 10);
position2 = haystack.rfind(STR('e'), haystack.size() - 10);
CHECK_EQUAL(position1, position2);
position2 = haystack.rfind(STR('z'));
CHECK_EQUAL(IText::npos, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_string)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(TextSTD(STR("ABCDEF")));
result = text.compare(TextL(STR("ABCDEF")));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(TextSTD(STR("ABCDEE")));
result = text.compare(TextL(STR("ABCDEE")));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(TextSTD(STR("ABCDEG")));
result = text.compare(TextL(STR("ABCDEG")));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(TextSTD(STR("ABCDE")));
result = text.compare(TextL(STR("ABCDE")));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(TextSTD(STR("ABCDEFG")));
result = text.compare(TextL(STR("ABCDEFG")));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_view)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(TextSTD(STR("ABCDEF")));
result = text.compare(View(STR("ABCDEF")));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(TextSTD(STR("ABCDEE")));
result = text.compare(View(STR("ABCDEE")));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(TextSTD(STR("ABCDEG")));
result = text.compare(View(STR("ABCDEG")));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(TextSTD(STR("ABCDE")));
result = text.compare(View(STR("ABCDE")));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(TextSTD(STR("ABCDEFG")));
result = text.compare(View(STR("ABCDEFG")));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_string)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEF")));
result = text.compare(3, 6, TextL(STR("ABCDEF")));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEE")));
result = text.compare(3, 6, TextL(STR("ABCDEE")));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEG")));
result = text.compare(3, 6, TextL(STR("ABCDEG")));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDE")));
result = text.compare(3, 6, TextL(STR("ABCDE")));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEFG")));
result = text.compare(3, 6, TextL(STR("ABCDEFG")));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_view)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEF")));
result = text.compare(3, 6, View(STR("ABCDEF")));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEE")));
result = text.compare(3, 6, View(STR("ABCDEE")));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEG")));
result = text.compare(3, 6, View(STR("ABCDEG")));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDE")));
result = text.compare(3, 6, View(STR("ABCDE")));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, TextSTD(STR("ABCDEFG")));
result = text.compare(3, 6, View(STR("ABCDEFG")));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_string_subposition_sublength)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEFbb")), 2, 6);
result = text.compare(3, 6, TextL(STR("aaABCDEFbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEEbb")), 2, 6);
result = text.compare(3, 6, TextL(STR("aaABCDEEbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEGbb")), 2, 6);
result = text.compare(3, 6, TextL(STR("aaABCDEGbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEbb")), 2, 5);
result = text.compare(3, 6, TextL(STR("aaABCDEbb")), 2, 5);
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEFGbb")), 2, 7);
result = text.compare(3, 6, TextL(STR("aaABCDEFGbb")), 2, 7);
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_view_subposition_sublength)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEFbb")), 2, 6);
result = text.compare(3, 6, View(STR("aaABCDEFbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEEbb")), 2, 6);
result = text.compare(3, 6, View(STR("aaABCDEEbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEGbb")), 2, 6);
result = text.compare(3, 6, View(STR("aaABCDEGbb")), 2, 6);
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEbb")), 2, 5);
result = text.compare(3, 6, View(STR("aaABCDEbb")), 2, 5);
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, TextSTD(STR("aaABCDEFGbb")), 2, 7);
result = text.compare(3, 6, View(STR("aaABCDEFGbb")), 2, 7);
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_c_string)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(STR("ABCDEF"));
result = text.compare(STR("ABCDEF"));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(STR("ABCDEE"));
result = text.compare(STR("ABCDEE"));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(STR("ABCDEG"));
result = text.compare(STR("ABCDEG"));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(STR("ABCDE"));
result = text.compare(STR("ABCDE"));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(STR("ABCDEFG"));
result = text.compare(STR("ABCDEFG"));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_c_string)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, STR("ABCDEF"));
result = text.compare(3, 6, STR("ABCDEF"));
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, STR("ABCDEE"));
result = text.compare(3, 6, STR("ABCDEE"));
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, STR("ABCDEG"));
result = text.compare(3, 6, STR("ABCDEG"));
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, STR("ABCDE"));
result = text.compare(3, 6, STR("ABCDE"));
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, STR("ABCDEFG"));
result = text.compare(3, 6, STR("ABCDEFG"));
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_compare_position_length_c_string_n)
{
TextSTD compare_text(STR("xxxABCDEFyyy"));
TextBuffer buffer{0};
Text text(STR("xxxABCDEFyyy"), buffer.data(), buffer.size());
int compare_result;
int result;
// Equal.
compare_result = compare_text.compare(3, 6, STR("ABCDEFbb"), 6);
result = text.compare(3, 6, STR("ABCDEFbb"), 6);
CHECK(compares_agree(compare_result, result));
// Less.
compare_result = compare_text.compare(3, 6, STR("ABCDEEbb"), 6);
result = text.compare(3, 6, STR("ABCDEEbb"), 6);
CHECK(compares_agree(compare_result, result));
// Greater.
compare_result = compare_text.compare(3, 6, STR("ABCDEGbb"), 6);
result = text.compare(3, 6, STR("ABCDEGbb"), 6);
CHECK(compares_agree(compare_result, result));
// Shorter.
compare_result = compare_text.compare(3, 6, STR("ABCDEbb"), 5);
result = text.compare(3, 6, STR("ABCDEbb"), 5);
CHECK(compares_agree(compare_result, result));
// Longer.
compare_result = compare_text.compare(3, 6, STR("ABCDEFGbb"), 7);
result = text.compare(3, 6, STR("ABCDEFGbb"), 7);
CHECK(compares_agree(compare_result, result));
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_of_string_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")));
size_t position2 = text.find_first_of(TextL(STR("ZCXF")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(TextSTD(STR("WXYZ")));
position2 = text.find_first_of(TextL(STR("WXYZ")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")), 3);
position2 = text.find_first_of(TextL(STR("ZCXF")), 3);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")), 100);
position2 = text.find_first_of(TextL(STR("ZCXF")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_of_view_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")));
size_t position2 = text.find_first_of(View(STR("ZCXF")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(TextSTD(STR("WXYZ")));
position2 = text.find_first_of(View(STR("WXYZ")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")), 3);
position2 = text.find_first_of(View(STR("ZCXF")), 3);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_of(TextSTD(STR("ZCXF")), 100);
position2 = text.find_first_of(View(STR("ZCXF")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_of_pointer_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_of(STR("ZCXF"));
size_t position2 = text.find_first_of(STR("ZCXF"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR("WXYZ"));
position2 = text.find_first_of(STR("WXYZ"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR("ZCXF"), 3);
position2 = text.find_first_of(STR("ZCXF"), 3);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_of(STR("ZCXF"), 100);
position2 = text.find_first_of(STR("ZCXF"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_of_pointer_position_n)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_of(STR("ZCXF"), 0, 4);
size_t position2 = text.find_first_of(STR("ZCXF"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR("WXYZ"), 0, 4);
position2 = text.find_first_of(STR("WXYZ"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR("ZCXF"), 1, 3);
position2 = text.find_first_of(STR("ZCXF"), 1, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR("ZCXF"), 3, 3);
position2 = text.find_first_of(STR("ZCXF"), 3, 3);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_of(STR("ZCXF"), 100);
position2 = text.find_first_of(STR("ZCXF"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_of_character_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_of(STR('C'));
size_t position2 = text.find_first_of(STR('C'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR('Z'));
position2 = text.find_first_of(STR('Z'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR('F'), 3);
position2 = text.find_first_of(STR('F'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR('C'), 3);
position2 = text.find_first_of(STR('C'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_of(STR('C'), compare_text.size());
position2 = text.find_first_of(STR('C'), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_of(STR('C'), 100);
position2 = text.find_first_of(STR('C'), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_of_string_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")));
size_t position2 = text.find_last_of(TextL(STR("ZCXE")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("WXYZ")), 3);
position2 = text.find_last_of(TextL(STR("WXYZ")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), 5);
position2 = text.find_last_of(TextL(STR("ZCXE")), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), compare_text.size());
position2 = text.find_last_of(TextL(STR("ZCXE")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), 100);
position2 = text.find_last_of(TextL(STR("ZCXE")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_of_view_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")));
size_t position2 = text.find_last_of(View(STR("ZCXE")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("WXYZ")), 3);
position2 = text.find_last_of(View(STR("WXYZ")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), 5);
position2 = text.find_last_of(View(STR("ZCXE")), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), compare_text.size());
position2 = text.find_last_of(View(STR("ZCXE")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_of(TextSTD(STR("ZCXE")), 100);
position2 = text.find_last_of(View(STR("ZCXE")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_of_pointer_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_of(STR("ZCXE"));
size_t position2 = text.find_last_of(STR("ZCXE"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("WXYZ"), 3);
position2 = text.find_last_of(STR("WXYZ"), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), 5);
position2 = text.find_last_of(STR("ZCXE"), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), 6);
position2 = text.find_last_of(STR("ZCXE"), 6);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), compare_text.size());
position2 = text.find_last_of(STR("ZCXE"), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_of(STR("ZCXE"), 100);
position2 = text.find_last_of(STR("ZCXE"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_of_pointer_position_n)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_of(STR("AZCXE"), 0, 4);
size_t position2 = text.find_last_of(STR("AZCXE"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("WXYZ"), 4, 3);
position2 = text.find_last_of(STR("WXYZ"), 4, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), 5, 3);
position2 = text.find_last_of(STR("ZCXE"), 5, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), 1, 3);
position2 = text.find_last_of(STR("ZCXE"), 1, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR("ZCXE"), compare_text.size(), 4);
position2 = text.find_last_of(STR("ZCXE"), text.size(), 4);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_of(STR("ZCXE"), 100, 4);
position2 = text.find_last_of(STR("ZCXE"), 100, 4);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_of_character_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_of(STR('C'));
size_t position2 = text.find_last_of(STR('C'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR('Z'));
position2 = text.find_last_of(STR('Z'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR('F'), compare_text.size());
position2 = text.find_last_of(STR('F'), text.size());
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR('C'), 3);
position2 = text.find_last_of(STR('C'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_of(STR('C'), compare_text.size());
position2 = text.find_last_of(STR('C'), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_of(STR('C'), 100);
position2 = text.find_last_of(STR('C'), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_not_of_string_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")));
size_t position2 = text.find_first_not_of(TextL(STR("ZAXB")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")));
position2 = text.find_first_not_of(TextL(STR("ZAXB")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), 3);
position2 = text.find_first_not_of(TextL(STR("ZAXB")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), compare_text.size());
position2 = text.find_first_not_of(TextL(STR("ZAXB")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), 100);
position2 = text.find_first_not_of(TextL(STR("ZAXB")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_not_of_view_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")));
size_t position2 = text.find_first_not_of(View(STR("ZAXB")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")));
position2 = text.find_first_not_of(View(STR("ZAXB")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), 3);
position2 = text.find_first_not_of(View(STR("ZAXB")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), compare_text.size());
position2 = text.find_first_not_of(View(STR("ZAXB")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_not_of(TextSTD(STR("ZAXB")), 100);
position2 = text.find_first_not_of(View(STR("ZAXB")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_not_of_pointer_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_not_of(STR("ZAXB"));
size_t position2 = text.find_first_not_of(STR("ZAXB"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"));
position2 = text.find_first_not_of(STR("ZAXB"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), 3);
position2 = text.find_first_not_of(STR("ZAXB"), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), compare_text.size());
position2 = text.find_first_not_of(STR("ZAXB"), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_not_of(STR("ZAXB"), 100);
position2 = text.find_first_not_of(STR("ZAXB"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_not_of_pointer_position_n)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_not_of(STR("ZAXB"), 0, 4);
size_t position2 = text.find_first_not_of(STR("ZAXB"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), 0, 4);
position2 = text.find_first_not_of(STR("ZAXB"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), 1, 3);
position2 = text.find_first_not_of(STR("ZAXB"), 1, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), 3, 3);
position2 = text.find_first_not_of(STR("ZAXB"), 3, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR("ZAXB"), compare_text.size(), 3);
position2 = text.find_first_not_of(STR("ZAXB"), text.size(), 3);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_not_of(STR("ZAXB"), 100);
position2 = text.find_first_not_of(STR("ZAXB"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_first_not_of_character_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_first_not_of(STR('A'));
size_t position2 = text.find_first_not_of(STR('A'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR('B'));
position2 = text.find_first_not_of(STR('B'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR('C'), 3);
position2 = text.find_first_not_of(STR('C'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR('D'), 3);
position2 = text.find_first_not_of(STR('D'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_first_not_of(STR('C'), compare_text.size());
position2 = text.find_first_not_of(STR('C'), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_first_not_of(STR('C'), 100);
position2 = text.find_first_not_of(STR('C'), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_not_of_string_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")));
size_t position2 = text.find_last_not_of(TextL(STR("ZEXD")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 3);
position2 = text.find_last_not_of(TextL(STR("ZEXD")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 5);
position2 = text.find_last_not_of(TextL(STR("ZEXD")), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), compare_text.size());
position2 = text.find_last_not_of(TextL(STR("ZEXD")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 100);
position2 = text.find_last_not_of(TextL(STR("ZEXD")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_not_of_view_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")));
size_t position2 = text.find_last_not_of(View(STR("ZEXD")));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 3);
position2 = text.find_last_not_of(View(STR("ZEXD")), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 5);
position2 = text.find_last_not_of(View(STR("ZEXD")), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), compare_text.size());
position2 = text.find_last_not_of(View(STR("ZEXD")), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_not_of(TextSTD(STR("ZEXD")), 100);
position2 = text.find_last_not_of(View(STR("ZEXD")), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_not_of_pointer_position)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_not_of(STR("ZEXD"));
size_t position2 = text.find_last_not_of(STR("ZEXD"));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), 3);
position2 = text.find_last_not_of(STR("ZEXD"), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), 5);
position2 = text.find_last_not_of(STR("ZEXD"), 5);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), compare_text.size());
position2 = text.find_last_not_of(STR("ZEXD"), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_not_of(STR("ZEXD"), 100);
position2 = text.find_last_not_of(STR("ZEXD"), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_not_of_pointer_position_n)
{
TextSTD compare_text(STR("ABCDEFABCDE"));
TextBuffer buffer{0};
Text text(STR("ABCDEFABCDE"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_not_of(STR("ZEXD"), 0, 4);
size_t position2 = text.find_last_not_of(STR("ZEXD"), 0, 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), 5, 3);
position2 = text.find_last_not_of(STR("ZEXD"), 5, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), 1, 3);
position2 = text.find_last_not_of(STR("ZEXD"), 1, 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), compare_text.size(), 4);
position2 = text.find_last_not_of(STR("ZEXD"), text.size(), 4);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR("ZEXD"), 100, 4);
position2 = text.find_last_not_of(STR("ZEXD"), 100, 4);
CHECK_EQUAL(position1, position2);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_find_last_not_of_character_position)
{
TextSTD compare_text(STR("ABCDEF"));
TextBuffer buffer{0};
Text text(STR("ABCDEF"), buffer.data(), buffer.size());
size_t position1 = compare_text.find_last_not_of(STR('F'));
size_t position2 = text.find_last_not_of(STR('F'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR('Z'));
position2 = text.find_last_not_of(STR('Z'));
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR('A'), compare_text.size());
position2 = text.find_last_not_of(STR('A'), text.size());
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR('C'), 3);
position2 = text.find_last_not_of(STR('C'), 3);
CHECK_EQUAL(position1, position2);
position1 = compare_text.find_last_not_of(STR('C'), compare_text.size());
position2 = text.find_last_not_of(STR('C'), text.size());
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_array_bounds_push.h"
position1 = compare_text.find_last_not_of(STR('C'), 100);
position2 = text.find_last_not_of(STR('C'), 100);
CHECK_EQUAL(position1, position2);
#include "etl/private/diagnostic_pop.h"
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_hash)
{
// Test with actual string type.
TextBuffer buffer{0};
Text text(STR("ABCDEFHIJKL"), buffer.data(), buffer.size());
size_t hash = etl::hash<Text>()(text);
size_t compare_hash = etl::private_hash::generic_hash<size_t>(reinterpret_cast<const uint8_t*>(text.data()), reinterpret_cast<const uint8_t*>(text.data_end()));
CHECK_EQUAL(compare_hash, hash);
// Test with interface string type.
IText& itext = text;
hash = etl::hash<IText>()(itext);
CHECK_EQUAL(compare_hash, hash);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_memcpy_repair)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(STR("ABCDEF"));
char buffer2[sizeof(Text)];
// Will not copy the buffer!
memcpy(&buffer2, (const void*)&text, sizeof(text));
Text& rtext(*reinterpret_cast<Text*>(buffer2));
rtext.repair();
CHECK(!rtext.empty());
CHECK(!rtext.full());
bool is_equal = Equal(text, rtext);
CHECK(is_equal);
text = STR("GHIJKL");
is_equal = Equal(text, rtext);
CHECK(is_equal);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_memcpy_repair_virtual)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.assign(STR("ABCDEF"));
char buffer2[sizeof(Text)];
// Will not copy the buffer!
memcpy(&buffer2, (const void*)&text, sizeof(text));
IText& itext(*reinterpret_cast<IText*>(buffer2));
itext.repair();
CHECK(!itext.empty());
CHECK(!itext.full());
bool is_equal = Equal(text, itext);
CHECK(is_equal);
text = STR("GHIJKL");
is_equal = Equal(text, itext);
CHECK(is_equal);
}
#if ETL_HAS_STRING_TRUNCATION_CHECKS
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_truncate_over_many_operations)
{
TextBuffer buffer{0};
Text text(short_text.c_str(), buffer.data(), buffer.size());
CHECK_FALSE(text.is_truncated());
text.insert(3, initial_text.c_str());
CHECK_TRUE(text.is_truncated());
while (text.size() != 0)
{
text.pop_back();
CHECK_TRUE(text.is_truncated());
}
text.clear();
CHECK_FALSE(text.is_truncated());
text.assign(longer_text.c_str());
CHECK_TRUE(text.is_truncated());
text.assign(short_text.c_str());
CHECK_FALSE(text.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_add_from_truncated)
{
TextBuffer buffer{0};
Text text1(short_text.c_str(), buffer.data(), buffer.size());
TextBufferS buffers{0};
Text text2(short_text.c_str(), buffers.data(), buffers.size());
CHECK(!text1.is_truncated());
CHECK_TRUE(text2.is_truncated());
// text2 has the truncate flag set.
text1 += text2;
CHECK(text1.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_add_to_truncated)
{
TextBuffer buffer{0};
Text text1(longer_text.c_str(), buffer.data(), buffer.size());
TextBuffer buffer2{0};
Text text2(short_text.c_str(), buffer2.data(), buffer2.size());
CHECK(text1.is_truncated());
CHECK(!text2.is_truncated());
// Clear text but not the truncate flag.
text1.erase(text1.begin(), text1.end());
// text1 still has the truncate flag set.
text1 += text2;
CHECK(text1.is_truncated());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_clear_truncated)
{
TextBuffer buffer{0};
Text text(longer_text.c_str(), buffer.data(), buffer.size());
CHECK_TRUE(text.is_truncated());
text.clear_truncated();
CHECK_FALSE(text.is_truncated());
}
#endif
#if ETL_HAS_STRING_CLEAR_AFTER_USE
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_destructor)
{
char buffer[sizeof(Text)];
std::fill_n(buffer, sizeof(Text), 0);
TextBuffer buffer2{0};
::new (buffer) Text(STR("ABCDEF"), buffer2.data(), buffer2.size());
Text& text = *reinterpret_cast<Text*>(buffer);
text.set_secure();
CHECK(TextL(STR("ABCDEF")) == text);
Text::pointer pb = text.begin();
Text::pointer pe = text.end();
// Destroy the text object.
std::atomic_signal_fence(std::memory_order_seq_cst);
text.~Text();
std::atomic_signal_fence(std::memory_order_seq_cst);
// Check there no non-zero values in the string.
CHECK(std::find_if(pb, pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_assign)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.set_secure();
text.assign(STR("ABCDEF"));
Text::pointer pe = text.end();
text.assign(STR("ABC"));
CHECK(std::find_if(text.end(), pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_resize_down)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.set_secure();
text.assign(STR("ABCDEF"));
Text::pointer pe = text.end();
text.resize(text.size() - 3U);
CHECK(std::find_if(text.end(), pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_erase)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.set_secure();
text.assign(STR("ABCDEF"));
Text::pointer pb = text.begin();
Text::pointer pe = text.end();
text.erase(pb + 2, pb + 5);
// Check there no non-zero values in the remainder of the string.
CHECK(std::find_if(text.end(), pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_replace)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.set_secure();
text.assign(STR("ABCDEF"));
Text::pointer pb = text.begin();
Text::pointer pe = text.end();
text.replace(pb + 1, pb + 4, STR("G"));
// Check there no non-zero values in the remainder of the string.
CHECK(std::find_if(text.end(), pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_after_clear)
{
TextBuffer buffer{0};
Text text(buffer.data(), buffer.size());
text.set_secure();
text.assign(STR("ABCDEF"));
Text::pointer pb = text.begin();
Text::pointer pe = text.end();
text.clear();
// Check there no non-zero values in the remainder of the string.
CHECK(std::find_if(pb, pe, [](Text::value_type x) { return x != 0; }) == pe);
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_secure_flag_after_copy)
{
TextBuffer buffer1{0};
Text text1(STR("Hello World"), buffer1.data(), buffer1.size());
text1.set_secure();
TextBuffer buffer2{0};
Text text2(text1, buffer2.data(), buffer2.size());
TextBuffer buffer3;
Text text3(buffer3.data(), buffer3.size());
text3 = text1;
TextBuffer buffer4;
Text text4(text1, buffer4.data(), buffer4.size(), 6U, 2U);
CHECK(text2.is_secure());
CHECK(text3.is_secure());
CHECK(text4.is_secure());
}
#endif
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_initialize_free_space_empty_string)
{
TextBuffer buffer1{0};
TextBuffer buffer2{0};
Text text(buffer1.data(), buffer1.size());
Text empty(buffer2.data(), buffer2.size());
text.initialize_free_space();
CHECK(text.empty());
CHECK(text == empty);
for (size_t i = text.size(); i < text.max_size(); ++i)
{
CHECK_EQUAL(0, text.data()[i]);
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_initialize_free_space_part_filled_string)
{
TextBuffer buffer1{0};
TextBuffer buffer2{0};
Text initial(STR("ABC"), buffer1.data(), buffer1.size());
Text empty(buffer2.data(), buffer2.size());
Text text(initial, buffer2.data(), buffer2.size());
text.initialize_free_space();
CHECK(text == initial);
CHECK(text != empty);
for (size_t i = text.size(); i < text.max_size(); ++i)
{
CHECK_EQUAL(0, text.data()[i]);
}
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_update_after_c_string_max_size)
{
TextBuffer buffer1{0};
Text text(buffer1.data(), buffer1.size());
text.initialize_free_space();
std::fill(text.data(), text.data() + text.max_size(), STR('A'));
text.trim_to_terminator();
CHECK_FALSE(text.is_truncated());
CHECK_EQUAL(text.max_size(), text.size());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_update_after_c_string_shorter_size)
{
TextBuffer buffer1{0};
Text text(buffer1.data(), buffer1.size());
text.initialize_free_space();
std::fill(text.data(), text.data() + text.max_size() - 1, STR('A'));
text.trim_to_terminator();
CHECK_FALSE(text.is_truncated());
CHECK_EQUAL(text.max_size() - 1, text.size());
}
//*************************************************************************
TEST_FIXTURE(SetupFixture, test_update_after_c_string_greater_size)
{
TextBuffer buffer1{0};
Text text(buffer1.data(), buffer1.size());
text.initialize_free_space();
std::fill(text.data(), text.data() + text.max_size() + 1, STR('A')); // Overwrites to terminating null.
text.trim_to_terminator();
#if ETL_HAS_STRING_TRUNCATION_CHECKS
CHECK_TRUE(text.is_truncated());
#else
CHECK_FALSE(text.is_truncated());
#endif
CHECK_EQUAL(text.max_size(), text.size());
}
}
}