2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
#include <AK/TestSuite.h>
|
2019-08-02 10:23:03 +03:00
|
|
|
|
2020-03-22 12:12:55 +03:00
|
|
|
#include <AK/FlyString.h>
|
2019-09-06 16:34:26 +03:00
|
|
|
#include <AK/String.h>
|
2020-03-22 12:12:55 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
2019-06-14 07:42:21 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(construct_empty)
|
2019-06-14 07:42:21 +03:00
|
|
|
{
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(String().is_null());
|
|
|
|
EXPECT(String().is_empty());
|
|
|
|
EXPECT(!String().characters());
|
2019-06-14 07:42:21 +03:00
|
|
|
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(!String("").is_null());
|
|
|
|
EXPECT(String("").is_empty());
|
2019-07-16 11:08:39 +03:00
|
|
|
EXPECT(String("").characters() != nullptr);
|
2019-06-14 08:40:36 +03:00
|
|
|
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(String("").impl() == String::empty().impl());
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 07:42:21 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(construct_contents)
|
|
|
|
{
|
2019-06-14 07:42:21 +03:00
|
|
|
String test_string = "ABCDEF";
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(!test_string.is_empty());
|
|
|
|
EXPECT(!test_string.is_null());
|
2019-12-09 19:45:40 +03:00
|
|
|
EXPECT_EQ(test_string.length(), 6u);
|
|
|
|
EXPECT_EQ(test_string.length(), strlen(test_string.characters()));
|
2019-07-16 11:08:39 +03:00
|
|
|
EXPECT(test_string.characters() != nullptr);
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(!strcmp(test_string.characters(), "ABCDEF"));
|
2019-06-14 07:42:21 +03:00
|
|
|
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string == "ABCDEF");
|
|
|
|
EXPECT(test_string != "ABCDE");
|
|
|
|
EXPECT(test_string != "ABCDEFG");
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(compare)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
2019-07-11 13:58:27 +03:00
|
|
|
EXPECT("a" < String("b"));
|
|
|
|
EXPECT(!("a" > String("b")));
|
|
|
|
EXPECT("b" > String("a"));
|
|
|
|
EXPECT(!("b" < String("b")));
|
|
|
|
EXPECT("a" >= String("a"));
|
|
|
|
EXPECT(!("a" >= String("b")));
|
|
|
|
EXPECT("a" <= String("a"));
|
|
|
|
EXPECT(!("b" <= String("a")));
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-07-11 13:58:27 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(index_access)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
2019-06-14 18:52:51 +03:00
|
|
|
EXPECT_EQ(test_string[0], 'A');
|
|
|
|
EXPECT_EQ(test_string[1], 'B');
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(starts_with)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string.starts_with("AB"));
|
2020-02-15 03:04:00 +03:00
|
|
|
EXPECT(test_string.starts_with('A'));
|
|
|
|
EXPECT(!test_string.starts_with('B'));
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string.starts_with("ABCDEF"));
|
|
|
|
EXPECT(!test_string.starts_with("DEF"));
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(ends_with)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string.ends_with("EF"));
|
2020-02-15 03:04:00 +03:00
|
|
|
EXPECT(test_string.ends_with('F'));
|
|
|
|
EXPECT(!test_string.ends_with('E'));
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string.ends_with("ABCDEF"));
|
|
|
|
EXPECT(!test_string.ends_with("ABC"));
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 08:40:36 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(copy_string)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
2019-06-14 08:40:36 +03:00
|
|
|
auto test_string_copy = test_string;
|
2019-06-14 18:52:51 +03:00
|
|
|
EXPECT_EQ(test_string, test_string_copy);
|
|
|
|
EXPECT_EQ(test_string.characters(), test_string_copy.characters());
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 08:40:36 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(move_string)
|
|
|
|
{
|
|
|
|
String test_string = "ABCDEF";
|
|
|
|
auto test_string_copy = test_string;
|
2019-06-14 08:40:36 +03:00
|
|
|
auto test_string_move = move(test_string_copy);
|
2019-06-14 18:52:51 +03:00
|
|
|
EXPECT_EQ(test_string, test_string_move);
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(test_string_copy.is_null());
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(repeated)
|
|
|
|
{
|
2019-06-14 18:52:51 +03:00
|
|
|
EXPECT_EQ(String::repeated('x', 0), "");
|
|
|
|
EXPECT_EQ(String::repeated('x', 1), "x");
|
|
|
|
EXPECT_EQ(String::repeated('x', 2), "xx");
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(to_int)
|
|
|
|
{
|
2019-06-14 18:36:17 +03:00
|
|
|
bool ok;
|
|
|
|
EXPECT(String("123").to_int(ok) == 123 && ok);
|
|
|
|
EXPECT(String("-123").to_int(ok) == -123 && ok);
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 18:36:17 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(to_lowercase)
|
|
|
|
{
|
2019-06-14 18:36:17 +03:00
|
|
|
EXPECT(String("ABC").to_lowercase() == "abc");
|
2019-07-16 11:08:39 +03:00
|
|
|
}
|
2019-06-14 08:40:36 +03:00
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_CASE(to_uppercase)
|
|
|
|
{
|
|
|
|
EXPECT(String("AbC").to_uppercase() == "ABC");
|
2019-06-14 07:42:21 +03:00
|
|
|
}
|
2019-07-16 11:08:39 +03:00
|
|
|
|
2020-03-22 12:12:55 +03:00
|
|
|
TEST_CASE(flystring)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
FlyString a("foo");
|
|
|
|
FlyString b("foo");
|
|
|
|
EXPECT_EQ(a.impl(), b.impl());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
String a = "foo";
|
|
|
|
FlyString b = a;
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append('f');
|
|
|
|
builder.append("oo");
|
|
|
|
FlyString c = builder.to_string();
|
|
|
|
EXPECT_EQ(a.impl(), b.impl());
|
|
|
|
EXPECT_EQ(a.impl(), c.impl());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-01 22:27:39 +03:00
|
|
|
TEST_CASE(replace)
|
|
|
|
{
|
|
|
|
String test_string = "Well, hello Friends!";
|
|
|
|
u32 replacements = test_string.replace("Friends", "Testers");
|
|
|
|
EXPECT(replacements == 1);
|
|
|
|
EXPECT(test_string == "Well, hello Testers!");
|
|
|
|
|
|
|
|
replacements = test_string.replace("ell", "e're", true);
|
|
|
|
EXPECT(replacements == 2);
|
|
|
|
EXPECT(test_string == "We're, he'reo Testers!");
|
|
|
|
|
|
|
|
replacements = test_string.replace("!", " :^)");
|
|
|
|
EXPECT(replacements == 1);
|
|
|
|
EXPECT(test_string == "We're, he'reo Testers :^)");
|
|
|
|
|
|
|
|
test_string = String("111._.111._.111");
|
|
|
|
replacements = test_string.replace("111", "|||", true);
|
|
|
|
EXPECT(replacements == 3);
|
|
|
|
EXPECT(test_string == "|||._.|||._.|||");
|
|
|
|
|
|
|
|
replacements = test_string.replace("|||", "111");
|
|
|
|
EXPECT(replacements == 1);
|
|
|
|
EXPECT(test_string == "111._.|||._.|||");
|
|
|
|
}
|
|
|
|
|
2019-07-16 11:08:39 +03:00
|
|
|
TEST_MAIN(String)
|