12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049 |
- #include "../Tests.hpp"
- #include "core/data/HashMap.hpp"
- #include "core/utils/ArrayString.hpp"
- #include "core/utils/Error.hpp"
- template class Core::ArrayString<128, char, Core::CharString>;
- template class Core::ArrayString<128, c32, Core::Char32String>;
- using String8 = Core::String8<128>;
- using String32 = Core::String32<128>;
- static String8 build(const char* cs) {
- String8 s;
- CORE_TEST_ERROR(s.append(cs));
- return s;
- }
- static void testEquality8() {
- String8 s = build("test");
- CORE_TEST_TRUE(s == "test");
- CORE_TEST_TRUE(s == build("test"));
- CORE_TEST_TRUE("test" == s);
- CORE_TEST_TRUE(build("test") == s);
- CORE_TEST_FALSE(build("tes2") == s);
- CORE_TEST_TRUE(s == s);
- }
- static void testUnicodeEquality8() {
- const char* cs = "\u0040\u0400\u8000\U00100000";
- String8 s = build(cs);
- CORE_TEST_TRUE(s == cs);
- CORE_TEST_TRUE(s == build(cs));
- CORE_TEST_TRUE(cs == s);
- CORE_TEST_TRUE(build(cs) == s);
- CORE_TEST_TRUE(s == s);
- }
- static void testInequality8() {
- String8 s = build("test");
- CORE_TEST_FALSE(s != "test");
- CORE_TEST_FALSE(s != build("test"));
- CORE_TEST_FALSE("test" != s);
- CORE_TEST_FALSE(build("test") != s);
- CORE_TEST_FALSE(s != s);
- }
- static void testStringAppend8() {
- String8 s = build("test");
- CORE_TEST_ERROR(s.append("22"));
- CORE_TEST_ERROR(s.append("333"));
- CORE_TEST_ERROR(s.append("4444"));
- CORE_TEST_EQUAL(build("test223334444"), s);
- }
- static void testStringAppendOverflow8() {
- Core::String8<6> s;
- CORE_TEST_ERROR(s.append("te"));
- CORE_TEST_EQUAL(Core::ErrorCode::CAPACITY_REACHED, s.append("23334444"));
- CORE_TEST_TRUE(build("te23334444") != s);
- }
- static void testCharacters8() {
- String8 s = build("test");
- CORE_TEST_EQUAL('t', s[0]);
- CORE_TEST_EQUAL('e', s[1]);
- CORE_TEST_EQUAL('s', s[2]);
- CORE_TEST_EQUAL('t', s[3]);
- }
- static void testLength8() {
- String8 s = build("test");
- CORE_TEST_EQUAL(4, s.getLength());
- CORE_TEST_ERROR(s.append("aaa"));
- CORE_TEST_EQUAL(7, s.getLength());
- }
- static void testChar8() {
- String8 s = build("test");
- for(char i = 'a'; i < 'd'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("testabc"), s);
- }
- static void testSignedChar8() {
- String8 s = build("test");
- for(signed char i = 'b'; i < 'e'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("testbcd"), s);
- }
- static void testUnsignedChar8() {
- String8 s = build("test");
- for(unsigned char i = 'c'; i < 'f'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("testcde"), s);
- }
- static void testSignedShort8() {
- String8 s = build("test");
- for(signed short i = 100; i < 103; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test100101102"), s);
- }
- static void testUnsignedShort8() {
- String8 s = build("test");
- for(unsigned short i = 101; i < 104; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test101102103"), s);
- }
- static void testSignedInt8() {
- String8 s = build("test");
- for(signed int i = 102; i < 105; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test102103104"), s);
- }
- static void testUnsignedInt8() {
- String8 s = build("test");
- for(unsigned int i = 103; i < 106; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test103104105"), s);
- }
- static void testSignedLong8() {
- String8 s = build("test");
- for(signed long i = 104; i < 107; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test104105106"), s);
- }
- static void testUnsignedLong8() {
- String8 s = build("test");
- for(unsigned long i = 105; i < 108; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test105106107"), s);
- }
- static void testSignedLongLong8() {
- String8 s = build("test");
- for(signed long long i = 106; i < 109; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test106107108"), s);
- }
- static void testUnsignedLongLong8() {
- String8 s = build("test");
- for(unsigned long long i = 107; i < 110; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test107108109"), s);
- }
- static void testFloat8() {
- String8 s = build("test");
- for(float i = 108; i < 111; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test108.00109.00110.00"), s);
- }
- static void testDouble8() {
- String8 s = build("test");
- for(double i = 109; i < 112; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test109.00110.00111.00"), s);
- }
- static void testLongDouble8() {
- String8 s = build("test");
- for(long double i = 110; i < 113; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build("test110.00111.00112.00"), s);
- }
- static void testBool8() {
- String8 s = build("test");
- CORE_TEST_ERROR(s.append(true));
- CORE_TEST_ERROR(s.append(false));
- CORE_TEST_ERROR(s.append(true));
- CORE_TEST_EQUAL(build("testtruefalsetrue"), s);
- }
- static void testIntOverflow8() {
- Core::String8<4> s;
- CORE_TEST_EQUAL(Core::ErrorCode::CAPACITY_REACHED, s.append(123456));
- String8 o;
- for(size_t i = 0; i < s.getCapacity(); i++) {
- CORE_TEST_ERROR(o.append(i + 1));
- }
- CORE_TEST_TRUE(o == s);
- }
- static void testUnicode8() {
- String8 s;
- CORE_TEST_ERROR(s.append('\u0040'));
- CORE_TEST_ERROR(s.append(L'\u0400'));
- CORE_TEST_ERROR(s.append(L'\u8000'));
- CORE_TEST_ERROR(s.append(U'\U00100000'));
- CORE_TEST_EQUAL(build("\u0040\u0400\u8000\U00100000"), s);
- }
- static void testClear8() {
- String8 s = build("test");
- CORE_TEST_ERROR(s.append(1234));
- s.clear();
- CORE_TEST_ERROR(s.append("wusi"));
- CORE_TEST_ERROR(s.append("1234"));
- CORE_TEST_EQUAL(build("wusi1234"), s);
- }
- static void testAddSelf8() {
- String8 s;
- CORE_TEST_ERROR(s.append("test1"));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_EQUAL(build("test1test1test1test1"), s);
- }
- static void testStartsWith8() {
- String8 s;
- CORE_TEST_ERROR(s.append("0123456789"));
- String8 s2;
- CORE_TEST_ERROR(s2.append("123"));
- String8 s3;
- CORE_TEST_ERROR(s3.append("234"));
- String8 s4;
- CORE_TEST_ERROR(s4.append("789"));
- String8 s5;
- CORE_TEST_ERROR(s5.append("124"));
- String8 s6;
- String8 s7;
- CORE_TEST_ERROR(s7.append("7891"));
- CORE_TEST_FALSE(s.startsWith(s2));
- CORE_TEST_TRUE(s.startsWith(s2, 1));
- CORE_TEST_FALSE(s.startsWith(s3));
- CORE_TEST_TRUE(s.startsWith(s3, 2));
- CORE_TEST_FALSE(s.startsWith(s4));
- CORE_TEST_TRUE(s.startsWith(s4, 7));
- CORE_TEST_FALSE(s.startsWith(s5));
- CORE_TEST_FALSE(s.startsWith(s5, 3));
- CORE_TEST_TRUE(s.startsWith(s6));
- CORE_TEST_TRUE(s.startsWith(s6, 3));
- CORE_TEST_FALSE(s.startsWith(s7));
- CORE_TEST_FALSE(s.startsWith(s7, 7));
- }
- static void testSearch8() {
- String8 s;
- CORE_TEST_ERROR(s.append("0123456789"));
- String8 s2;
- CORE_TEST_ERROR(s2.append("123"));
- String8 s3;
- CORE_TEST_ERROR(s3.append("234"));
- String8 s4;
- CORE_TEST_ERROR(s4.append("789"));
- String8 s5;
- CORE_TEST_ERROR(s5.append("124"));
- String8 s6;
- String8 s7;
- CORE_TEST_ERROR(s7.append("7891"));
- CORE_TEST_EQUAL(1, s.search(s2));
- CORE_TEST_EQUAL(2, s.search(s3));
- CORE_TEST_EQUAL(7, s.search(s4));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s5));
- CORE_TEST_EQUAL(0, s.search(s6));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s7));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s2, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s3, 3));
- CORE_TEST_EQUAL(7, s.search(s4, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s5, 3));
- CORE_TEST_EQUAL(3, s.search(s6, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s7, 3));
- }
- static void testContains8() {
- String8 s;
- CORE_TEST_ERROR(s.append("0123456789"));
- String8 s2;
- CORE_TEST_ERROR(s2.append("123"));
- String8 s3;
- CORE_TEST_ERROR(s3.append("234"));
- String8 s4;
- CORE_TEST_ERROR(s4.append("789"));
- String8 s5;
- CORE_TEST_ERROR(s5.append("124"));
- String8 s6;
- String8 s7;
- CORE_TEST_ERROR(s7.append("7891"));
- CORE_TEST_TRUE(s.contains(s2));
- CORE_TEST_TRUE(s.contains(s3));
- CORE_TEST_TRUE(s.contains(s4));
- CORE_TEST_FALSE(s.contains(s5));
- CORE_TEST_TRUE(s.contains(s6));
- CORE_TEST_FALSE(s.contains(s7));
- }
- static void testSearchChar8() {
- String8 s;
- CORE_TEST_ERROR(s.append("01üää3ä"));
- CORE_TEST_EQUAL(0, s.search('0'));
- CORE_TEST_EQUAL(1, s.search('1'));
- CORE_TEST_EQUAL(8, s.search('3'));
- }
- static void testContainsChar8() {
- String8 s;
- CORE_TEST_ERROR(s.append("01üää3ä"));
- CORE_TEST_TRUE(s.contains('0'));
- CORE_TEST_TRUE(s.contains('1'));
- CORE_TEST_TRUE(s.contains('3'));
- CORE_TEST_FALSE(s.contains('a'));
- }
- static void testSubString8() {
- String8 s;
- CORE_TEST_ERROR(s.append("01üää3ä"));
- String8 sub;
- CORE_TEST_ERROR(s.substring(sub, 0));
- CORE_TEST_STRING("01üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 2));
- CORE_TEST_STRING("üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 4));
- CORE_TEST_STRING("ää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 6));
- CORE_TEST_STRING("ä3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 0, 10));
- CORE_TEST_STRING("01üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 1, 8));
- CORE_TEST_STRING("1üää3", sub);
- CORE_TEST_ERROR(s.substring(sub, 2, 7));
- CORE_TEST_STRING("üää", sub);
- CORE_TEST_ERROR(s.substring(sub, 4, 5));
- CORE_TEST_STRING("ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 4, 2));
- CORE_TEST_STRING("", sub);
- CORE_TEST_ERROR(s.substring(sub, 6, 23));
- CORE_TEST_STRING("ä3ä", sub);
- }
- static void testReplace8() {
- String8 s;
- CORE_TEST_ERROR(s.append("0äääää1üää3ä"));
- String8 search;
- CORE_TEST_ERROR(search.append("ää"));
- String8 replace;
- CORE_TEST_ERROR(replace.append("ABCD"));
- CORE_TEST_ERROR(s.replace(search, replace));
- CORE_TEST_STRING("0ABCDABCDä1üABCD3ä", s);
- }
- static void testReplaceChar8() {
- String8 s;
- CORE_TEST_ERROR(s.append("01YXX3X"));
- s.replace('0', 'A');
- CORE_TEST_STRING("A1YXX3X", s);
- s.replace('1', 'B');
- CORE_TEST_STRING("ABYXX3X", s);
- s.replace('Y', 'C');
- CORE_TEST_STRING("ABCXX3X", s);
- s.replace('X', 'D');
- CORE_TEST_STRING("ABCDD3D", s);
- s.replace('3', 'E');
- CORE_TEST_STRING("ABCDDED", s);
- }
- static void testCastAppendSelf8() {
- String8 s;
- CORE_TEST_ERROR(s.append("abc"));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_ERROR(s.append(static_cast<const char*>(s)));
- CORE_TEST_STRING("abcabcabcabc", s);
- }
- static void testCompareWithShorter8() {
- String8 s;
- CORE_TEST_ERROR(s.append("abc"));
- CORE_TEST_FALSE(s == "ab");
- }
- static void testAppendSignedChar8() {
- const signed char buffer[] = {'a', 'b', 'c', '\0'};
- String8 s;
- CORE_TEST_ERROR(s.append(buffer));
- CORE_TEST_TRUE(s == "abc");
- }
- static void testAppendUnsignedChar8() {
- const unsigned char buffer[] = {'a', 'b', 'c', '\0'};
- String8 s;
- CORE_TEST_ERROR(s.append(buffer));
- CORE_TEST_TRUE(s == "abc");
- }
- static void testAppendError8() {
- String8 s;
- CORE_TEST_ERROR(s.append(Core::ErrorCode::NONE));
- CORE_TEST_STRING("0", s);
- }
- static void testPrint8() {
- String8 s;
- CORE_TEST_ERROR(s.append('\u0040'));
- CORE_TEST_ERROR(s.append(L'\u0400'));
- CORE_TEST_ERROR(s.append(L'\u8000'));
- CORE_TEST_ERROR(s.append(U'\U00100000'));
- CORE_TEST_EQUAL(build("\u0040\u0400\u8000\U00100000"), s);
- s.print();
- }
- static void testKeepHash8() {
- String8 s;
- CORE_TEST_ERROR(s.append("a ## test #### #####"));
- CORE_TEST_ERROR(s.format(1, 2, 3, 4, 5, 6, 7, 8, 9));
- CORE_TEST_STRING("a # test ## ##123456789", s);
- }
- static void testFormatWithoutArguments8() {
- String8 s;
- CORE_TEST_ERROR(s.append("wusi"));
- CORE_TEST_ERROR(s.format());
- CORE_TEST_STRING("wusi", s);
- }
- static void testUnicodeString8() {
- String8 s;
- CORE_TEST_ERROR(s.append(U"_üö§äab"));
- CORE_TEST_STRING("_üö§äab", s);
- }
- static void testInvalidUnicodeString8() {
- String8 s;
- CORE_TEST_EQUAL(Core::ErrorCode::INVALID_CHAR,
- s.append(static_cast<c32>(0xFFFFFFFF)));
- }
- static String32 build(const c32* cs) {
- String32 s;
- CORE_TEST_ERROR(s.append(cs));
- return s;
- }
- static void testEquality32() {
- String32 s = build(U"test");
- CORE_TEST_TRUE(s == U"test");
- CORE_TEST_TRUE(s == build(U"test"));
- CORE_TEST_TRUE(U"test" == s);
- CORE_TEST_TRUE(build(U"test") == s);
- CORE_TEST_FALSE(build(U"tes2") == s);
- CORE_TEST_TRUE(s == s);
- }
- static void testUnicodeEquality32() {
- const c32* cs = U"\u0040\u0400\u8000\U00100000";
- String32 s = build(cs);
- CORE_TEST_TRUE(s == cs);
- CORE_TEST_TRUE(s == build(cs));
- CORE_TEST_TRUE(cs == s);
- CORE_TEST_TRUE(build(cs) == s);
- CORE_TEST_TRUE(s == s);
- }
- static void testInequality32() {
- String32 s = build(U"test");
- CORE_TEST_FALSE(s != U"test");
- CORE_TEST_FALSE(s != build(U"test"));
- CORE_TEST_FALSE(U"test" != s);
- CORE_TEST_FALSE(build(U"test") != s);
- CORE_TEST_FALSE(s != s);
- }
- static void testStringAppend32() {
- String32 s = build(U"test");
- CORE_TEST_ERROR(s.append(U"22"));
- CORE_TEST_ERROR(s.append(U"333"));
- CORE_TEST_ERROR(s.append(U"4444"));
- CORE_TEST_EQUAL(build(U"test223334444"), s);
- }
- static void testStringAppendOverflow32() {
- Core::String32<6> s;
- CORE_TEST_ERROR(s.append(U"te"));
- CORE_TEST_EQUAL(Core::ErrorCode::CAPACITY_REACHED, s.append(U"23334444"));
- CORE_TEST_TRUE(build(U"te23334444") != s);
- }
- static void testCharacters32() {
- String32 s = build(U"test");
- CORE_TEST_EQUAL('t', s[0]);
- CORE_TEST_EQUAL('e', s[1]);
- CORE_TEST_EQUAL('s', s[2]);
- CORE_TEST_EQUAL('t', s[3]);
- }
- static void testLength32() {
- String32 s = build(U"test");
- CORE_TEST_EQUAL(4, s.getLength());
- CORE_TEST_ERROR(s.append(U"aaa"));
- CORE_TEST_EQUAL(7, s.getLength());
- }
- static void testChar32() {
- String32 s = build(U"test");
- for(char i = 'a'; i < 'd'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"testabc"), s);
- }
- static void testSignedChar32() {
- String32 s = build(U"test");
- for(signed char i = 'b'; i < 'e'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"testbcd"), s);
- }
- static void testUnsignedChar32() {
- String32 s = build(U"test");
- for(unsigned char i = 'c'; i < 'f'; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"testcde"), s);
- }
- static void testSignedShort32() {
- String32 s = build(U"test");
- for(signed short i = 100; i < 103; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test100101102"), s);
- }
- static void testUnsignedShort32() {
- String32 s = build(U"test");
- for(unsigned short i = 101; i < 104; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test101102103"), s);
- }
- static void testSignedInt32() {
- String32 s = build(U"test");
- for(signed int i = 102; i < 105; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test102103104"), s);
- }
- static void testUnsignedInt32() {
- String32 s = build(U"test");
- for(unsigned int i = 103; i < 106; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test103104105"), s);
- }
- static void testSignedLong32() {
- String32 s = build(U"test");
- for(signed long i = 104; i < 107; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test104105106"), s);
- }
- static void testUnsignedLong32() {
- String32 s = build(U"test");
- for(unsigned long i = 105; i < 108; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test105106107"), s);
- }
- static void testSignedLongLong32() {
- String32 s = build(U"test");
- for(signed long long i = 106; i < 109; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test106107108"), s);
- }
- static void testUnsignedLongLong32() {
- String32 s = build(U"test");
- for(unsigned long long i = 107; i < 110; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test107108109"), s);
- }
- static void testFloat32() {
- String32 s = build(U"test");
- for(float i = 108; i < 111; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test108.00109.00110.00"), s);
- }
- static void testDouble32() {
- String32 s = build(U"test");
- for(double i = 109; i < 112; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test109.00110.00111.00"), s);
- }
- static void testLongDouble32() {
- String32 s = build(U"test");
- for(long double i = 110; i < 113; i++) {
- CORE_TEST_ERROR(s.append(i));
- }
- CORE_TEST_EQUAL(build(U"test110.00111.00112.00"), s);
- }
- static void testBool32() {
- String32 s = build(U"test");
- CORE_TEST_ERROR(s.append(true));
- CORE_TEST_ERROR(s.append(false));
- CORE_TEST_ERROR(s.append(true));
- CORE_TEST_EQUAL(build(U"testtruefalsetrue"), s);
- }
- static void testIntOverflow32() {
- Core::String32<4> s;
- CORE_TEST_EQUAL(Core::ErrorCode::CAPACITY_REACHED, s.append(123456));
- String32 o;
- for(size_t i = 0; i < s.getCapacity(); i++) {
- CORE_TEST_ERROR(o.append(i + 1));
- }
- CORE_TEST_TRUE(o == s);
- }
- static void testUnicode32() {
- String32 s;
- CORE_TEST_ERROR(s.append('\u0040'));
- CORE_TEST_ERROR(s.append(L'\u0400'));
- CORE_TEST_ERROR(s.append(L'\u8000'));
- CORE_TEST_ERROR(s.append(U'\U00100000'));
- CORE_TEST_EQUAL(build(U"\u0040\u0400\u8000\U00100000"), s);
- }
- static void testClear32() {
- String32 s = build(U"test");
- CORE_TEST_ERROR(s.append(1234));
- s.clear();
- CORE_TEST_ERROR(s.append(U"wusi"));
- CORE_TEST_ERROR(s.append(U"1234"));
- CORE_TEST_EQUAL(build(U"wusi1234"), s);
- }
- static void testAddSelf32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"test1"));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_EQUAL(build(U"test1test1test1test1"), s);
- }
- static void testStartsWith32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"0123456789"));
- String32 s2;
- CORE_TEST_ERROR(s2.append(U"123"));
- String32 s3;
- CORE_TEST_ERROR(s3.append(U"234"));
- String32 s4;
- CORE_TEST_ERROR(s4.append(U"789"));
- String32 s5;
- CORE_TEST_ERROR(s5.append(U"124"));
- String32 s6;
- String32 s7;
- CORE_TEST_ERROR(s7.append(U"7891"));
- CORE_TEST_FALSE(s.startsWith(s2));
- CORE_TEST_TRUE(s.startsWith(s2, 1));
- CORE_TEST_FALSE(s.startsWith(s3));
- CORE_TEST_TRUE(s.startsWith(s3, 2));
- CORE_TEST_FALSE(s.startsWith(s4));
- CORE_TEST_TRUE(s.startsWith(s4, 7));
- CORE_TEST_FALSE(s.startsWith(s5));
- CORE_TEST_FALSE(s.startsWith(s5, 3));
- CORE_TEST_TRUE(s.startsWith(s6));
- CORE_TEST_TRUE(s.startsWith(s6, 3));
- CORE_TEST_FALSE(s.startsWith(s7));
- CORE_TEST_FALSE(s.startsWith(s7, 7));
- }
- static void testSearch32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"0123456789"));
- String32 s2;
- CORE_TEST_ERROR(s2.append(U"123"));
- String32 s3;
- CORE_TEST_ERROR(s3.append(U"234"));
- String32 s4;
- CORE_TEST_ERROR(s4.append(U"789"));
- String32 s5;
- CORE_TEST_ERROR(s5.append(U"124"));
- String32 s6;
- String32 s7;
- CORE_TEST_ERROR(s7.append(U"7891"));
- CORE_TEST_EQUAL(1, s.search(s2));
- CORE_TEST_EQUAL(2, s.search(s3));
- CORE_TEST_EQUAL(7, s.search(s4));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s5));
- CORE_TEST_EQUAL(0, s.search(s6));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s7));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s2, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s3, 3));
- CORE_TEST_EQUAL(7, s.search(s4, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s5, 3));
- CORE_TEST_EQUAL(3, s.search(s6, 3));
- CORE_TEST_EQUAL(SIZE_MAX, s.search(s7, 3));
- }
- static void testContains32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"0123456789"));
- String32 s2;
- CORE_TEST_ERROR(s2.append(U"123"));
- String32 s3;
- CORE_TEST_ERROR(s3.append(U"234"));
- String32 s4;
- CORE_TEST_ERROR(s4.append(U"789"));
- String32 s5;
- CORE_TEST_ERROR(s5.append(U"124"));
- String32 s6;
- String32 s7;
- CORE_TEST_ERROR(s7.append(U"7891"));
- CORE_TEST_TRUE(s.contains(s2));
- CORE_TEST_TRUE(s.contains(s3));
- CORE_TEST_TRUE(s.contains(s4));
- CORE_TEST_FALSE(s.contains(s5));
- CORE_TEST_TRUE(s.contains(s6));
- CORE_TEST_FALSE(s.contains(s7));
- }
- static void testSearchChar32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"01üää3ä"));
- CORE_TEST_EQUAL(0, s.search('0'));
- CORE_TEST_EQUAL(1, s.search('1'));
- CORE_TEST_EQUAL(5, s.search('3'));
- CORE_TEST_EQUAL(2, s.search(U'ü'));
- CORE_TEST_EQUAL(3, s.search(U'ä'));
- CORE_TEST_EQUAL(4, s.search(U'ä', 4));
- CORE_TEST_EQUAL(6, s.search(U'ä', 5));
- }
- static void testContainsChar32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"01üää3ä"));
- CORE_TEST_TRUE(s.contains(U'0'));
- CORE_TEST_TRUE(s.contains(U'1'));
- CORE_TEST_TRUE(s.contains(U'3'));
- CORE_TEST_FALSE(s.contains(U'a'));
- CORE_TEST_TRUE(s.contains(U'0'));
- CORE_TEST_TRUE(s.contains(U'1'));
- CORE_TEST_TRUE(s.contains(U'ü'));
- CORE_TEST_TRUE(s.contains(U'ä'));
- CORE_TEST_FALSE(s.contains(U'ö'));
- }
- static void testSubString32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"01üää3ä"));
- String32 sub;
- CORE_TEST_ERROR(s.substring(sub, 0));
- CORE_TEST_STRING(U"01üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 1));
- CORE_TEST_STRING(U"1üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 2));
- CORE_TEST_STRING(U"üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 3));
- CORE_TEST_STRING(U"ää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 4));
- CORE_TEST_STRING(U"ä3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 0, 6));
- CORE_TEST_STRING(U"01üää3ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 1, 5));
- CORE_TEST_STRING(U"1üää3", sub);
- CORE_TEST_ERROR(s.substring(sub, 2, 4));
- CORE_TEST_STRING(U"üää", sub);
- CORE_TEST_ERROR(s.substring(sub, 3, 3));
- CORE_TEST_STRING(U"ä", sub);
- CORE_TEST_ERROR(s.substring(sub, 4, 2));
- CORE_TEST_STRING(U"", sub);
- CORE_TEST_ERROR(s.substring(sub, 4, 23));
- CORE_TEST_STRING(U"ä3ä", sub);
- }
- static void testReplace32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"0äääää1üää3ä"));
- String32 search;
- CORE_TEST_ERROR(search.append(U"ää"));
- String32 replace;
- CORE_TEST_ERROR(replace.append(U"ABCD"));
- CORE_TEST_ERROR(s.replace(search, replace));
- CORE_TEST_STRING(U"0ABCDABCDä1üABCD3ä", s);
- }
- static void testReplaceChar32() {
- String32 s;
- CORE_TEST_ERROR(s.append(U"01üää3ä"));
- s.replace(U'0', U'A');
- CORE_TEST_STRING(U"A1üää3ä", s);
- s.replace(U'1', U'B');
- CORE_TEST_STRING(U"ABüää3ä", s);
- s.replace(U'ü', U'C');
- CORE_TEST_STRING(U"ABCää3ä", s);
- s.replace(U'ä', U'D');
- CORE_TEST_STRING(U"ABCDD3D", s);
- s.replace(U'3', U'E');
- CORE_TEST_STRING(U"ABCDDED", s);
- }
- static void testCastAppendSelf32() {
- String32 s;
- CORE_TEST_ERROR(s.append("abc"));
- CORE_TEST_ERROR(s.append(s));
- CORE_TEST_ERROR(s.append(static_cast<const c32*>(s)));
- CORE_TEST_STRING("abcabcabcabc", s);
- }
- static void testCompareWithShorter32() {
- String32 s;
- CORE_TEST_ERROR(s.append("abc"));
- CORE_TEST_FALSE(s == U"ab");
- }
- static void testAppendSignedChar32() {
- const signed char buffer[] = {'a', 'b', 'c', '\0'};
- String32 s;
- CORE_TEST_ERROR(s.append(buffer));
- CORE_TEST_TRUE(s == U"abc");
- }
- static void testAppendUnsignedChar32() {
- const unsigned char buffer[] = {'a', 'b', 'c', '\0'};
- String32 s;
- CORE_TEST_ERROR(s.append(buffer));
- CORE_TEST_TRUE(s == U"abc");
- }
- static void testAppendError32() {
- String32 s;
- CORE_TEST_ERROR(s.append(Core::ErrorCode::NONE));
- CORE_TEST_STRING(U"0", s);
- }
- static void testPrint32() {
- String32 s;
- CORE_TEST_ERROR(s.append('\u0040'));
- CORE_TEST_ERROR(s.append(L'\u0400'));
- CORE_TEST_ERROR(s.append(L'\u8000'));
- CORE_TEST_ERROR(s.append(U'\U00100000'));
- CORE_TEST_EQUAL(build(U"\u0040\u0400\u8000\U00100000"), s);
- s.print();
- }
- static void testVariousUnicode32() {
- const unsigned char buffer[] = {0xC0, 0};
- const unsigned char buffer2[] = {0xE0, 0};
- const unsigned char buffer3[] = {0xC3, 0xA4, 0};
- const unsigned char buffer4[] = {0xF0, 0};
- const unsigned char buffer5[] = {0xF0, 0x9F, 0x8F, 0xA3, 0};
- const unsigned char buffer6[] = {0xFF, 0};
- String32 s;
- CORE_TEST_EQUAL(Core::ErrorCode::INVALID_CHAR, s.append(buffer));
- CORE_TEST_EQUAL(Core::ErrorCode::INVALID_CHAR, s.append(buffer2));
- CORE_TEST_EQUAL(Core::ErrorCode::NONE, s.append(buffer3));
- CORE_TEST_EQUAL(Core::ErrorCode::INVALID_CHAR, s.append(buffer4));
- CORE_TEST_EQUAL(Core::ErrorCode::NONE, s.append(buffer5));
- CORE_TEST_EQUAL(Core::ErrorCode::INVALID_CHAR, s.append(buffer6));
- }
- static void testKeepHash32() {
- String32 s;
- CORE_TEST_ERROR(s.append("a ## test #### #####"));
- CORE_TEST_ERROR(s.format(1, 2, 3, 4, 5, 6, 7, 8, 9));
- CORE_TEST_STRING("a # test ## ##123456789", s);
- }
- static void testInvalidPrint32() {
- String32 s;
- CORE_TEST_ERROR(s.append(static_cast<c32>(0xFFFFFFFF)));
- s.printLine();
- }
- static void testConversion() {
- const c32* a = U"öüewfde_§$§%$ädsf";
- const char* b = "öüewfde_§$§%$ädsf";
- String32 sa;
- CORE_TEST_ERROR(sa.append(a));
- String8 sb;
- CORE_TEST_ERROR(sb.append(b));
- String8 sa2;
- CORE_TEST_ERROR(sa2.append(sa));
- String32 sb2;
- CORE_TEST_ERROR(sb2.append(sb));
- CORE_TEST_STRING(a, sa2);
- CORE_TEST_STRING(b, sb2);
- }
- void Core::testArrayString() {
- testEquality8();
- testUnicodeEquality8();
- testInequality8();
- testStringAppend8();
- testStringAppendOverflow8();
- testCharacters8();
- testLength8();
- testChar8();
- testSignedChar8();
- testUnsignedChar8();
- testSignedShort8();
- testUnsignedShort8();
- testSignedInt8();
- testUnsignedInt8();
- testSignedLong8();
- testUnsignedLong8();
- testSignedLongLong8();
- testUnsignedLongLong8();
- testFloat8();
- testDouble8();
- testLongDouble8();
- testBool8();
- testIntOverflow8();
- testUnicode8();
- testClear8();
- testAddSelf8();
- testStartsWith8();
- testSearch8();
- testContains8();
- testSearchChar8();
- testContainsChar8();
- testSubString8();
- testReplace8();
- testReplaceChar8();
- testCastAppendSelf8();
- testCompareWithShorter8();
- testAppendSignedChar8();
- testAppendUnsignedChar8();
- testAppendError8();
- testPrint8();
- testKeepHash8();
- testFormatWithoutArguments8();
- testUnicodeString8();
- testInvalidUnicodeString8();
- testEquality32();
- testUnicodeEquality32();
- testInequality32();
- testStringAppend32();
- testStringAppendOverflow32();
- testCharacters32();
- testLength32();
- testChar32();
- testSignedChar32();
- testUnsignedChar32();
- testSignedShort32();
- testUnsignedShort32();
- testSignedInt32();
- testUnsignedInt32();
- testSignedLong32();
- testUnsignedLong32();
- testSignedLongLong32();
- testUnsignedLongLong32();
- testFloat32();
- testDouble32();
- testLongDouble32();
- testBool32();
- testIntOverflow32();
- testUnicode32();
- testClear32();
- testAddSelf32();
- testStartsWith32();
- testSearch32();
- testContains32();
- testSearchChar32();
- testContainsChar32();
- testSubString32();
- testReplace32();
- testReplaceChar32();
- testCastAppendSelf32();
- testCompareWithShorter32();
- testAppendSignedChar32();
- testAppendUnsignedChar32();
- testAppendError32();
- testPrint32();
- testVariousUnicode32();
- testKeepHash32();
- testInvalidPrint32();
- testConversion();
- }
|