X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Ftestsuite.cpp;h=d9921a7b826b4527d1e3bd7a003cd40f840ba8bc;hb=36cb60f872712e8e5a59df74b5b36177addc4248;hp=ff83b2fa84e52fe66734d19b4d02ba7aae02a7a9;hpb=157cd2d7c7e40541be48a5392fb1da3e961fa3d7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/testsuite.cpp b/src/testsuite.cpp index ff83b2fa8..d9921a7b8 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -56,6 +56,7 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) cout << "(4) Threading tests\n"; cout << "(5) Wildcard and CIDR tests\n"; cout << "(6) Comma sepstream tests\n"; + cout << "(7) Space sepstream tests\n"; cout << endl << "(X) Exit test suite\n"; @@ -89,6 +90,9 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance) case '6': cout << (DoCommaSepStreamTests() ? "\nSUCCESS!\n" : "\nFAILURE\n"); break; + case '7': + cout << (DoSpaceSepStreamTests() ? "\nSUCCESS!\n" : "\nFAILURE\n"); + break; case 'X': return; break; @@ -183,7 +187,7 @@ bool TestSuite::DoWildTests() } -#define STREQUALTEST(x, y) cout << "commasepstreamtoken(\"" << x << ",\"" << y "\") " << ((passed = (x == y)) ? "SUCCESS\n" : "FAILURE\n") +#define STREQUALTEST(x, y) cout << "==(\"" << x << ",\"" << y "\") " << ((passed = (x == y)) ? "SUCCESS\n" : "FAILURE\n") bool TestSuite::DoCommaSepStreamTests() { @@ -222,6 +226,43 @@ bool TestSuite::DoCommaSepStreamTests() return true; } +bool TestSuite::DoSpaceSepStreamTests() +{ + bool passed = false; + + irc::spacesepstream list("this is a space stream"); + std::string item; + int idx = 0; + + while (list.GetToken(item)) + { + idx++; + + switch (idx) + { + case 1: + STREQUALTEST(item, "this"); + break; + case 2: + STREQUALTEST(item, "is"); + break; + case 3: + STREQUALTEST(item, "a"); + break; + case 4: + STREQUALTEST(item, "space"); + break; + case 5: + STREQUALTEST(item, "stream"); + break; + default: + cout << "SPACESEPSTREAM: FAILURE: Got an index too many! " << idx << " items\n"; + break; + } + } + return true; +} + bool TestSuite::DoThreadTests() { std::string anything;