mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
9920d17342
This is simply meant to be a more efficient implementation in the case that we only need to check a single character.
140 lines
4.1 KiB
C++
140 lines
4.1 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <AK/TestSuite.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
TEST_CASE(construct_empty)
|
|
{
|
|
EXPECT(String().is_null());
|
|
EXPECT(String().is_empty());
|
|
EXPECT(!String().characters());
|
|
|
|
EXPECT(!String("").is_null());
|
|
EXPECT(String("").is_empty());
|
|
EXPECT(String("").characters() != nullptr);
|
|
|
|
EXPECT(String("").impl() == String::empty().impl());
|
|
}
|
|
|
|
TEST_CASE(construct_contents)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
EXPECT(!test_string.is_empty());
|
|
EXPECT(!test_string.is_null());
|
|
EXPECT_EQ(test_string.length(), 6u);
|
|
EXPECT_EQ(test_string.length(), strlen(test_string.characters()));
|
|
EXPECT(test_string.characters() != nullptr);
|
|
EXPECT(!strcmp(test_string.characters(), "ABCDEF"));
|
|
|
|
EXPECT(test_string == "ABCDEF");
|
|
EXPECT(test_string != "ABCDE");
|
|
EXPECT(test_string != "ABCDEFG");
|
|
}
|
|
|
|
TEST_CASE(compare)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
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")));
|
|
}
|
|
|
|
TEST_CASE(index_access)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
EXPECT_EQ(test_string[0], 'A');
|
|
EXPECT_EQ(test_string[1], 'B');
|
|
}
|
|
|
|
TEST_CASE(starts_with)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
EXPECT(test_string.starts_with("AB"));
|
|
EXPECT(test_string.starts_with('A'));
|
|
EXPECT(!test_string.starts_with('B'));
|
|
EXPECT(test_string.starts_with("ABCDEF"));
|
|
EXPECT(!test_string.starts_with("DEF"));
|
|
}
|
|
|
|
TEST_CASE(ends_with)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
EXPECT(test_string.ends_with("EF"));
|
|
EXPECT(test_string.ends_with('F'));
|
|
EXPECT(!test_string.ends_with('E'));
|
|
EXPECT(test_string.ends_with("ABCDEF"));
|
|
EXPECT(!test_string.ends_with("ABC"));
|
|
}
|
|
|
|
TEST_CASE(copy_string)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
auto test_string_copy = test_string;
|
|
EXPECT_EQ(test_string, test_string_copy);
|
|
EXPECT_EQ(test_string.characters(), test_string_copy.characters());
|
|
}
|
|
|
|
TEST_CASE(move_string)
|
|
{
|
|
String test_string = "ABCDEF";
|
|
auto test_string_copy = test_string;
|
|
auto test_string_move = move(test_string_copy);
|
|
EXPECT_EQ(test_string, test_string_move);
|
|
EXPECT(test_string_copy.is_null());
|
|
}
|
|
|
|
TEST_CASE(repeated)
|
|
{
|
|
EXPECT_EQ(String::repeated('x', 0), "");
|
|
EXPECT_EQ(String::repeated('x', 1), "x");
|
|
EXPECT_EQ(String::repeated('x', 2), "xx");
|
|
}
|
|
|
|
TEST_CASE(to_int)
|
|
{
|
|
bool ok;
|
|
EXPECT(String("123").to_int(ok) == 123 && ok);
|
|
EXPECT(String("-123").to_int(ok) == -123 && ok);
|
|
}
|
|
|
|
TEST_CASE(to_lowercase)
|
|
{
|
|
EXPECT(String("ABC").to_lowercase() == "abc");
|
|
}
|
|
|
|
TEST_CASE(to_uppercase)
|
|
{
|
|
EXPECT(String("AbC").to_uppercase() == "ABC");
|
|
}
|
|
|
|
TEST_MAIN(String)
|