1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
//#include "ags/shared/debugging/assert.h"
// File not present??
#include "common/scummsys.h"
#include "ags/shared/core/platform.h"
#include "common/std/vector.h"
#include "ags/shared/util/path.h"
#include "ags/shared/util/string.h"
#include "ags/shared/debugging/debug_manager.h"
namespace AGS3 {
using namespace AGS::Shared;
void Test_Path() {
assert(Path::IsSameOrSubDir(".", "dir1/") == true);
assert(Path::IsSameOrSubDir(".", "dir1/dir2/dir3/") == true);
assert(Path::IsSameOrSubDir(".", "dir1/../") == true);
assert(Path::IsSameOrSubDir(".", "dir1/dir2/../../") == true);
assert(Path::IsSameOrSubDir(".", "dir1/../dir2/../dir3/") == true);
assert(Path::IsSameOrSubDir(".", "..dir/") == true);
assert(Path::IsSameOrSubDir(".", "../") == false);
assert(Path::IsSameOrSubDir(".", "../") == false);
assert(Path::IsSameOrSubDir(".", "/dir1/") == false);
assert(Path::IsSameOrSubDir(".", "dir1/../../") == false);
assert(Path::IsSameOrSubDir(".", "dir1/../dir2/../../dir3/") == false);
}
void Test_String() {
// Test string's internal work
#if defined(AGS_PLATFORM_TEST) && AGS_PLATFORM_TEST
{
String s1 = "abcdefghijklmnop";
String s2 = s1;
String s3 = s1;
assert(s1.GetRefCount() == 3);
assert(s1.GetBuffer() == s2.GetBuffer());
assert(s2.GetBuffer() == s3.GetBuffer());
size_t cap1 = s1.GetCapacity();
assert(cap1 == s1.GetLength());
s2.TruncateToLeft(10);
assert(cap1 == s2.GetCapacity());
s3.TruncateToRight(10);
assert(cap1 == s3.GetCapacity());
assert(s1.GetRefCount() == 1);
s2.AppendChar('z');
assert(cap1 == s2.GetCapacity());
s3.Append("1234");
assert(cap1 == s3.GetCapacity());
s3.Append("1234567890123");
assert(27 == s3.GetCapacity());
s3.Append("1234567890123");
assert(40 == s3.GetCapacity());
s3.Append("1234567890123");
assert(60 == s3.GetCapacity());
String s4 = "12345678901234567890";
const char *cstr = s4.GetCStr();
s4.ClipLeft(10);
assert(s4.GetCStr() == cstr + 10);
s4.Prepend("12345");
assert(s4.GetCStr() == cstr + 5);
s4.Append("12345");
assert(s4.GetCStr() == cstr);
assert(strcmp(s4, "12345123456789012345") == 0);
}
#endif
// Test Compare
{
String s1 = "abcdabcdabcd";
String s2 = "abcdbfghijklmn";
int cmp1 = s1.Compare(s2);
int cmp2 = s1.CompareLeft("abcd");
int cmp3 = s1.CompareLeft("abcdxxx");
int cmp4 = s1.CompareLeft("abcdxxx", 4);
int cmp5 = s1.CompareMid(s2, 2, 4);
int cmp6 = s1.CompareMid(s2, 8, 4);
int cmp7 = s1.CompareMid(s2, 8, 9);
int cmp8 = s1.CompareLeft("abcdabcdabcdxxxx");
int cmp9 = s1.CompareMid("ab", 8);
int cmp10 = s1.CompareMid("ab", 8, 4);
int cmp11 = s1.CompareRight("abcd");
int cmp12 = s1.CompareRight("bcdxxx", 3);
int cmp13 = s1.CompareRight("abc", 4);
int cmp14 = s1.CompareRight("abcdxxxx");
assert(cmp1 < 0);
assert(cmp2 == 0);
assert(cmp3 < 0);
assert(cmp4 == 0);
assert(cmp5 > 0);
assert(cmp6 == 0);
assert(cmp7 < 0);
assert(cmp8 < 0);
assert(cmp9 == 0);
assert(cmp10 > 0);
assert(cmp11 == 0);
assert(cmp12 == 0);
assert(cmp13 > 0);
assert(cmp14 < 0);
}
// Test FindChar
{
String s1 = "findsomethinginhere";
String s2 = "stringtofindsomethinginside";
String s3 = "findsomethinginherex";
String s4 = "xstringtofindsomethinginside";
String s5;
size_t find1 = s1.FindChar('o');
size_t find2 = s2.FindCharReverse('o');
size_t find3 = s1.FindChar('x');
size_t find4 = s2.FindCharReverse('x');
size_t find5 = s3.FindChar('x');
size_t find6 = s4.FindCharReverse('x');
size_t find7 = s5.FindChar('x');
size_t find8 = s5.FindCharReverse('x');
size_t find9 = s1.FindChar('i', 2);
size_t find10 = s1.FindCharReverse('i', 12);
assert(find1 == 5LLU);
assert(find2 == 13LLU);
assert(find3 == -1LLU);
assert(find4 == -1LLU);
assert(find5 == 19LLU);
assert(find6 == 0LLU);
assert(find7 == -1LLU);
assert(find8 == -1LLU);
assert(find9 == 10LLU);
assert(find10 == 10LLU);
}
// Test GetAt
{
String s1 = "abcdefghijklmnop";
String s2;
char c1 = s1.GetAt(0);
char c2 = s1.GetAt(15);
char c3 = s1.GetAt(16);
char c4 = s2.GetAt(0);
assert(c1 == 'a');
assert(c2 == 'p');
assert(c3 == 0);
assert(c4 == 0);
}
// Test ToInt
{
String s1;
String s2 = "100";
String s3 = "202aaa";
String s4 = "aaa333";
int i1 = s1.ToInt();
int i2 = s2.ToInt();
int i3 = s3.ToInt();
int i4 = s4.ToInt();
assert(i1 == 0);
assert(i2 == 100);
assert(i3 == 202);
assert(i4 == 0);
}
// Test Left/Right/Mid
{
String s1 = "this is a string to be split";
String s2 = s1.Left(4);
String s3 = s1.Left(100);
String s4 = s1.Mid(10);
String s5 = s1.Mid(10, 6);
String s6 = s1.Mid(0, 200);
String s7 = s1.Right(5);
String s8 = s1.Right(100);
String s9 = s1.Left(0);
String s10 = s1.Mid((size_t) - 1, 0);
String s11 = s1.Right(0);
assert(strcmp(s2, "this") == 0);
assert(strcmp(s3, "this is a string to be split") == 0);
assert(strcmp(s4, "string to be split") == 0);
assert(strcmp(s5, "string") == 0);
assert(strcmp(s6, "this is a string to be split") == 0);
assert(strcmp(s7, "split") == 0);
assert(strcmp(s8, "this is a string to be split") == 0);
assert(strcmp(s9, "") == 0);
assert(strcmp(s10, "") == 0);
assert(strcmp(s11, "") == 0);
}
// Test Section
{
String s = "_123_567_";
size_t from;
size_t to;
assert(s.FindSection('_', 0, 0, true, true, from, to));
assert(from == 0 && to == 0);
assert(s.FindSection('_', 0, 0, false, true, from, to));
assert(from == 0 && to == 0);
assert(s.FindSection('_', 0, 0, true, false, from, to));
assert(from == 0 && to == 1);
assert(s.FindSection('_', 0, 0, false, false, from, to));
assert(from == 0 && to == 1);
assert(s.FindSection('_', 3, 3, true, true, from, to));
assert(from == 9 && to == 9);
assert(s.FindSection('_', 3, 3, false, true, from, to));
assert(from == 8 && to == 9);
assert(s.FindSection('_', 3, 3, true, false, from, to));
assert(from == 9 && to == 9);
assert(s.FindSection('_', 3, 3, false, false, from, to));
assert(from == 8 && to == 9);
assert(s.FindSection('_', 1, 1, true, true, from, to));
assert(from == 1 && to == 4);
assert(s.FindSection('_', 1, 1, false, true, from, to));
assert(from == 0 && to == 4);
assert(s.FindSection('_', 1, 1, true, false, from, to));
assert(from == 1 && to == 5);
assert(s.FindSection('_', 1, 1, false, false, from, to));
assert(from == 0 && to == 5);
}
// Test Append
{
String s1 = "a string to enlarge - ";
s1.Append("make it bigger");
assert(strcmp(s1, "a string to enlarge - make it bigger") == 0);
s1.AppendChar('!');
assert(strcmp(s1, "a string to enlarge - make it bigger!") == 0);
s1.AppendChar(' ');
assert(strcmp(s1, "a string to enlarge - make it bigger! ") == 0);
s1.Append("much much bigger!");
assert(strcmp(s1, "a string to enlarge - make it bigger! much much bigger!") == 0);
}
// Test Clip
{
String str1 = "long truncateable string";
String str2 = str1;
String str3 = str1;
String str4 = str1;
String str5 = str1;
str1.ClipLeft(4);
str2.ClipRight(6);
str3.ClipMid(5, 12);
str4.ClipMid(5, 0);
str5.ClipMid(0);
assert(strcmp(str1, " truncateable string") == 0);
assert(strcmp(str2, "long truncateable ") == 0);
assert(strcmp(str3, "long string") == 0);
assert(strcmp(str4, "long truncateable string") == 0);
assert(strcmp(str5, "") == 0);
}
// Test ClipSection
{
String str1 = "C:\\Games\\AGS\\MyNewGame";
String str2 = str1;
String str3 = str1;
String str4 = str1;
String str5 = str1;
String str6 = str1;
String str7 = str1;
String str8 = str1;
String str9 = str1;
String str10 = str1;
String str11 = str1;
str1.ClipLeftSection('\\');
str2.ClipLeftSection('\\', false);
str3.ClipRightSection('\\');
str4.ClipRightSection('\\', false);
str5.ClipSection('\\', 1, 2);
str6.ClipSection('\\', 1, 2, false, false);
str7.ClipSection('|', 1, 2);
str8.ClipSection('\\', 0, 2);
str9.ClipSection('\\', 1, 3);
str10.ClipSection('\\', 3, 1);
str11.ClipSection('\\', 0, 4);
assert(strcmp(str1, "Games\\AGS\\MyNewGame") == 0);
assert(strcmp(str2, "\\Games\\AGS\\MyNewGame") == 0);
assert(strcmp(str3, "C:\\Games\\AGS") == 0);
assert(strcmp(str4, "C:\\Games\\AGS\\") == 0);
assert(strcmp(str5, "C:MyNewGame") == 0);
assert(strcmp(str6, "C:\\\\MyNewGame") == 0);
assert(strcmp(str7, "C:\\Games\\AGS\\MyNewGame") == 0);
assert(strcmp(str8, "MyNewGame") == 0);
assert(strcmp(str9, "C:") == 0);
assert(strcmp(str10, "C:\\Games\\AGS\\MyNewGame") == 0);
assert(strcmp(str11, "") == 0);
}
// Test making new string
{
String s1 = "we have some string here";
assert(strcmp(s1, "we have some string here") == 0);
s1.Empty();
assert(strcmp(s1, "") == 0);
s1.FillString('z', 10);
assert(strcmp(s1, "zzzzzzzzzz") == 0);
s1.FillString('a', 0);
assert(strcmp(s1, "") == 0);
s1.Format("this %d is %9ld a %x formatted %0.2f string %s", 1, 2, 100, 22.55F, "abcd");
assert(strcmp(s1, "this 1 is 2 a 64 formatted 22.55 string abcd") == 0);
s1.SetString("some string");
assert(strcmp(s1, "some string") == 0);
s1.SetString("some string", 4);
assert(strcmp(s1, "some") == 0);
}
// Test Upper/Lower case
{
String s1 = "ThIs StRiNg Is TwIsTeD";
String s2 = s1;
String s3 = s1;
s2.MakeLower();
s3.MakeUpper();
assert(strcmp(s2, "this string is twisted") == 0);
assert(strcmp(s3, "THIS STRING IS TWISTED") == 0);
}
// Test Prepend
{
String s1 = "- a string to enlarge";
s1.Prepend("make it bigger ");
assert(strcmp(s1, "make it bigger - a string to enlarge") == 0);
s1.PrependChar('!');
assert(strcmp(s1, "!make it bigger - a string to enlarge") == 0);
s1.PrependChar(' ');
assert(strcmp(s1, " !make it bigger - a string to enlarge") == 0);
s1.Prepend("much much bigger!");
assert(strcmp(s1, "much much bigger! !make it bigger - a string to enlarge") == 0);
}
// Test ReplaceMid
{
String s1 = "we need to replace PRECISELY THIS PART in this string";
String s2 = s1;
String new_long = "WITH A NEW TAD LONGER SUBSTRING";
String new_short = "SMALL STRING";
s1.ReplaceMid(19, 19, new_long);
assert(strcmp(s1, "we need to replace WITH A NEW TAD LONGER SUBSTRING in this string") == 0);
s2.ReplaceMid(19, 19, new_short);
assert(strcmp(s2, "we need to replace SMALL STRING in this string") == 0);
String s3 = "insert new string here: ";
s3.ReplaceMid(s3.GetLength(), 0, "NEW STRING");
assert(strcmp(s3, "insert new string here: NEW STRING") == 0);
}
// Test SetAt
{
String s1 = "strimg wiyh typos";
s1.SetAt((size_t) - 1, 'a');
assert(strcmp(s1, "strimg wiyh typos") == 0);
s1.SetAt(100, 'a');
assert(strcmp(s1, "strimg wiyh typos") == 0);
s1.SetAt(1, 0);
assert(strcmp(s1, "strimg wiyh typos") == 0);
s1.SetAt(4, 'n');
s1.SetAt(9, 't');
assert(strcmp(s1, "string with typos") == 0);
}
// Test Trim
{
String str1 = "\t This string is quite long and should be cut a little bit\r\n ";
String str2 = str1;
String str3 = str1;
String str4 = str1;
String str5 = "There's nothing to trim here";
str1.TrimLeft();
str2.TrimRight();
str3.Trim();
str4.Trim('|');
str5.Trim();
assert(strcmp(str1, "This string is quite long and should be cut a little bit\r\n ") == 0);
assert(strcmp(str2, "\t This string is quite long and should be cut a little bit") == 0);
assert(strcmp(str3, "This string is quite long and should be cut a little bit") == 0);
assert(strcmp(str4, "\t This string is quite long and should be cut a little bit\r\n ") == 0);
assert(strcmp(str5, "There's nothing to trim here") == 0);
}
// Test Truncate
{
String str1 = "long truncateable string";
String str2 = str1;
String str3 = str1;
String str4 = str1;
String str5 = str1;
str1.TruncateToLeft(4);
str2.TruncateToRight(6);
str3.TruncateToMid(5, 12);
str4.TruncateToMid(5, 0);
str5.TruncateToMid(0);
assert(strcmp(str1, "long") == 0);
assert(strcmp(str2, "string") == 0);
assert(strcmp(str3, "truncateable") == 0);
assert(strcmp(str4, "") == 0);
assert(strcmp(str5, "long truncateable string") == 0);
}
// Test TruncateToSection
{
String str1 = "C:\\Games\\AGS\\MyNewGame";
String str2 = str1;
String str3 = str1;
String str4 = str1;
String str5 = str1;
String str6 = str1;
String str7 = str1;
String str8 = str1;
String str9 = str1;
String str10 = str1;
String str11 = str1;
String str12 = str1;
str1.TruncateToLeftSection('\\');
str2.TruncateToLeftSection('\\', false);
str3.TruncateToRightSection('\\');
str4.TruncateToRightSection('\\', false);
str5.TruncateToSection('\\', 1, 2);
str6.TruncateToSection('\\', 1, 2, false, false);
str7.TruncateToSection('|', 1, 3);
str8.TruncateToSection('\\', 0, 2);
str9.TruncateToSection('\\', 1, 3);
str10.TruncateToSection('\\', 3, 1);
str11.TruncateToSection('\\', 3, 3);
str12.TruncateToSection('\\', 3, 3, false, false);
assert(strcmp(str1, "C:") == 0);
assert(strcmp(str2, "C:\\") == 0);
assert(strcmp(str3, "MyNewGame") == 0);
assert(strcmp(str4, "\\MyNewGame") == 0);
assert(strcmp(str5, "Games\\AGS") == 0);
assert(strcmp(str6, "\\Games\\AGS\\") == 0);
assert(strcmp(str7, "") == 0);
assert(strcmp(str8, "C:\\Games\\AGS") == 0);
assert(strcmp(str9, "Games\\AGS\\MyNewGame") == 0);
assert(strcmp(str10, "") == 0);
assert(strcmp(str11, "MyNewGame") == 0);
assert(strcmp(str12, "\\MyNewGame") == 0);
}
// Test Split
{
String str1 = "C:\\Games\\AGS\\MyNewGame\\";
std::vector<String> result = str1.Split('\\');
assert(result.size() == 5);
assert(strcmp(result[0], "C:") == 0);
assert(strcmp(result[1], "Games") == 0);
assert(strcmp(result[2], "AGS") == 0);
assert(strcmp(result[3], "MyNewGame") == 0);
assert(strcmp(result[4], "") == 0);
String str2 = "test,,,test";
result = str2.Split(',');
assert(result.size() == 4);
assert(strcmp(result[0], "test") == 0);
assert(strcmp(result[1], "") == 0);
assert(strcmp(result[2], "") == 0);
assert(strcmp(result[3], "test") == 0);
String str3 = ",,test,,";
result = str3.Split(',');
assert(result.size() == 5);
assert(strcmp(result[0], "") == 0);
assert(strcmp(result[1], "") == 0);
assert(strcmp(result[2], "test") == 0);
assert(strcmp(result[3], "") == 0);
assert(strcmp(result[4], "") == 0);
}
// Test Wrap
#if defined(AGS_PLATFORM_TEST) && AGS_PLATFORM_TEST
{
const char *cstr = "This is a string literal";
String str1 = String::Wrapper(cstr);
String str2 = str1;
assert(str1.GetCStr() == cstr);
assert(str2.GetCStr() == cstr);
assert(str1.GetRefCount() == 0);
assert(str2.GetRefCount() == 0);
str2.SetAt(0, 'A');
assert(str2.GetCStr() != cstr);
assert(str2.GetRefCount() == 1);
}
#endif
}
} // namespace AGS3
|