mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	 35c0a6c54d
			
		
	
	
		35c0a6c54d
		
	
	
	
	
		
			
			As many macros as possible are moved to Macros.h, while the macros to create a test case are moved to TestCase.h. TestCase is now the only user-facing header for creating a test case. TestSuite and its helpers have moved into a .cpp file. Instead of requiring a TEST_MAIN macro to be instantiated into the test file, a TestMain.cpp file is provided instead that will be linked against each test. This has the side effect that, if we wanted to have test cases split across multiple files, it's as simple as adding them all to the same executable. The test main should be portable to kernel mode as well, so if there's a set of tests that should be run in self-test mode in kernel space, we can accomodate that. A new serenity_test CMake function streamlines adding a new test with arguments for the test source file, subdirectory under /usr/Tests to install the test application and an optional list of libraries to link against the test application. To accomodate future test where the provided TestMain.cpp is not suitable (e.g. test-js), a CUSTOM_MAIN parameter can be passed to the function to not link against the boilerplate main function.
		
			
				
	
	
		
			237 lines
		
	
	
	
		
			6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			237 lines
		
	
	
	
		
			6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibTest/TestCase.h>
 | |
| 
 | |
| #include <AK/FlyString.h>
 | |
| #include <AK/String.h>
 | |
| #include <AK/StringBuilder.h>
 | |
| #include <cstring>
 | |
| 
 | |
| 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"));
 | |
|     EXPECT(test_string.starts_with("abc", CaseSensitivity::CaseInsensitive));
 | |
|     EXPECT(!test_string.starts_with("abc", CaseSensitivity::CaseSensitive));
 | |
| }
 | |
| 
 | |
| 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"));
 | |
|     EXPECT(test_string.ends_with("def", CaseSensitivity::CaseInsensitive));
 | |
|     EXPECT(!test_string.ends_with("def", CaseSensitivity::CaseSensitive));
 | |
| }
 | |
| 
 | |
| 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)
 | |
| {
 | |
|     EXPECT_EQ(String("123").to_int().value(), 123);
 | |
|     EXPECT_EQ(String("-123").to_int().value(), -123);
 | |
| }
 | |
| 
 | |
| TEST_CASE(to_lowercase)
 | |
| {
 | |
|     EXPECT(String("ABC").to_lowercase() == "abc");
 | |
| }
 | |
| 
 | |
| TEST_CASE(to_uppercase)
 | |
| {
 | |
|     EXPECT(String("AbC").to_uppercase() == "ABC");
 | |
| }
 | |
| 
 | |
| 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());
 | |
|     }
 | |
| }
 | |
| 
 | |
| 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._.|||._.|||");
 | |
| }
 | |
| 
 | |
| TEST_CASE(substring)
 | |
| {
 | |
|     String test = "abcdef";
 | |
|     EXPECT_EQ(test.substring(0, 6), test);
 | |
|     EXPECT_EQ(test.substring(0, 3), "abc");
 | |
|     EXPECT_EQ(test.substring(3, 3), "def");
 | |
|     EXPECT_EQ(test.substring(3, 0), "");
 | |
|     EXPECT_EQ(test.substring(6, 0), "");
 | |
| }
 | |
| 
 | |
| TEST_CASE(split)
 | |
| {
 | |
|     String test = "foo bar baz";
 | |
|     auto parts = test.split(' ');
 | |
|     EXPECT_EQ(parts.size(), 3u);
 | |
|     EXPECT_EQ(parts[0], "foo");
 | |
|     EXPECT_EQ(parts[1], "bar");
 | |
|     EXPECT_EQ(parts[2], "baz");
 | |
| 
 | |
|     EXPECT_EQ(parts[0].characters()[3], '\0');
 | |
|     EXPECT_EQ(parts[1].characters()[3], '\0');
 | |
|     EXPECT_EQ(parts[2].characters()[3], '\0');
 | |
| 
 | |
|     test = "a    b";
 | |
| 
 | |
|     parts = test.split(' ');
 | |
|     EXPECT_EQ(parts.size(), 2u);
 | |
|     EXPECT_EQ(parts[0], "a");
 | |
|     EXPECT_EQ(parts[1], "b");
 | |
| 
 | |
|     parts = test.split(' ', true);
 | |
|     EXPECT_EQ(parts.size(), 5u);
 | |
|     EXPECT_EQ(parts[0], "a");
 | |
|     EXPECT_EQ(parts[1], "");
 | |
|     EXPECT_EQ(parts[2], "");
 | |
|     EXPECT_EQ(parts[3], "");
 | |
|     EXPECT_EQ(parts[4], "b");
 | |
| 
 | |
|     test = "axxbx";
 | |
|     EXPECT_EQ(test.split('x').size(), 2u);
 | |
|     EXPECT_EQ(test.split('x', true).size(), 4u);
 | |
|     EXPECT_EQ(test.split_view('x').size(), 2u);
 | |
|     EXPECT_EQ(test.split_view('x', true).size(), 4u);
 | |
| }
 | |
| 
 | |
| TEST_CASE(builder_zero_initial_capacity)
 | |
| {
 | |
|     StringBuilder builder(0);
 | |
|     builder.append("");
 | |
|     auto built = builder.build();
 | |
|     EXPECT_EQ(built.is_null(), false);
 | |
|     EXPECT_EQ(built.length(), 0u);
 | |
| }
 | |
| 
 | |
| TEST_CASE(sprintf)
 | |
| {
 | |
|     char buf1[128];
 | |
|     int ret1 = sprintf(buf1, "%+d", 12);
 | |
|     EXPECT_EQ(ret1, 3);
 | |
| 
 | |
|     char buf2[128];
 | |
|     int ret2 = sprintf(buf2, "%+d", -12);
 | |
|     EXPECT_EQ(ret2, 3);
 | |
| 
 | |
|     EXPECT_EQ(String(buf1), String("+12"));
 | |
|     EXPECT_EQ(String(buf2), String("-12"));
 | |
| }
 |