]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/testsuite.cpp
m_rline Fix memory leak when zlineonmatch was true and the zline existed, simplify...
[user/henk/code/inspircd.git] / src / testsuite.cpp
index ff83b2fa84e52fe66734d19b4d02ba7aae02a7a9..59e6102e7bcc6ea09d849dbadeeb827c8e5d4f04 100644 (file)
@@ -1,16 +1,24 @@
-/*        +------------------------------------+
- *        | Inspire Internet Relay Chat Daemon |
- *        +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2009 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
+ *   Copyright (C) 2008 Dennis Friis <peavey@inspircd.org>
  *
- * This program is free but copyrighted software; see
- *               the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd 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, version 2.
  *
- * ---------------------------------------------------
+ * 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/>.
  */
 
+
 /* $Core */
 
 #include "inspircd.h"
@@ -41,7 +49,7 @@ class TestSuiteThread : public Thread
        }
 };
 
-TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
+TestSuite::TestSuite()
 {
        cout << "\n\n*** STARTING TESTSUITE ***\n";
 
@@ -56,6 +64,8 @@ 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 << "(8) UID generation tests\n";
 
                cout << endl << "(X) Exit test suite\n";
 
@@ -73,12 +83,16 @@ TestSuite::TestSuite(InspIRCd* Instance) : ServerInstance(Instance)
                        case '2':
                                cout << "Enter module filename to load: ";
                                cin >> modname;
-                               cout << (Instance->Modules->Load(modname.c_str()) ? "\nSUCCESS!\n" : "\nFAILURE\n");
+                               cout << (ServerInstance->Modules->Load(modname.c_str()) ? "\nSUCCESS!\n" : "\nFAILURE\n");
                                break;
                        case '3':
                                cout << "Enter module filename to unload: ";
                                cin >> modname;
-                               cout << (Instance->Modules->Unload(modname.c_str()) ? "\nSUCCESS!\n" : "\nFAILURE\n");
+                               {
+                                       Module* m = ServerInstance->Modules->Find(modname);
+                                       cout << (ServerInstance->Modules->Unload(m) ? "\nSUCCESS!\n" : "\nFAILURE\n");
+                                       ServerInstance->AtomicActions.Run();
+                               }
                                break;
                        case '4':
                                cout << (DoThreadTests() ? "\nSUCCESS!\n" : "\nFAILURE\n");
@@ -89,6 +103,12 @@ 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 '8':
+                               cout << (DoGenerateUIDTests() ? "\nSUCCESS!\n" : "\nFAILURE\n");
+                               break;
                        case 'X':
                                return;
                                break;
@@ -183,7 +203,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 +242,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;
@@ -230,7 +287,7 @@ bool TestSuite::DoThreadTests()
        cout << "Creating new ThreadEngine class...\n";
        try
        {
-               te = new ThreadEngine(ServerInstance);
+               te = new ThreadEngine;
        }
        catch (...)
        {
@@ -274,6 +331,79 @@ bool TestSuite::DoThreadTests()
        return true;
 }
 
+bool TestSuite::DoGenerateUIDTests()
+{
+       bool success = RealGenerateUIDTests();
+
+       // Reset the UID generation state so running the tests multiple times won't mess things up
+       for (unsigned int i = 0; i < 3; i++)
+               ServerInstance->current_uid[i] = ServerInstance->Config->sid[i];
+       for (unsigned int i = 3; i < UUID_LENGTH-1; i++)
+               ServerInstance->current_uid[i] = '9';
+
+       ServerInstance->current_uid[UUID_LENGTH-1] = '\0';
+
+       return success;
+}
+
+bool TestSuite::RealGenerateUIDTests()
+{
+       std::string first_uid = ServerInstance->GetUID();
+       if (first_uid.length() != UUID_LENGTH-1)
+       {
+               cout << "GENERATEUID: Generated UID is " << first_uid.length() << " characters long instead of " << UUID_LENGTH-1 << endl;
+               return false;
+       }
+
+       if (ServerInstance->current_uid[UUID_LENGTH-1] != '\0')
+       {
+               cout << "GENERATEUID: The null terminator is missing from the end of current_uid" << endl;
+               return false;
+       }
+
+       // The correct UID when generating one for the first time is ...AAAAAA
+       std::string correct_uid = ServerInstance->Config->sid + std::string(UUID_LENGTH - 4, 'A');
+       if (first_uid != correct_uid)
+       {
+               cout << "GENERATEUID: Generated an invalid first UID: " << first_uid << " instead of " << correct_uid << endl;
+               return false;
+       }
+
+       // Set current_uid to be ...Z99999
+       ServerInstance->current_uid[3] = 'Z';
+       for (unsigned int i = 4; i < UUID_LENGTH-1; i++)
+               ServerInstance->current_uid[i] = '9';
+
+       // Store the UID we'll be incrementing so we can display what's wrong later if necessary
+       std::string before_increment(ServerInstance->current_uid);
+       std::string generated_uid = ServerInstance->GetUID();
+
+       // Correct UID after incrementing ...Z99999 is ...0AAAAA
+       correct_uid = ServerInstance->Config->sid + "0" + std::string(UUID_LENGTH - 5, 'A');
+
+       if (generated_uid != correct_uid)
+       {
+               cout << "GENERATEUID: Generated an invalid UID after incrementing " << before_increment << ": " << generated_uid << " instead of " << correct_uid << endl;
+               return false;
+       }
+
+       // Set current_uid to be ...999999 to see if it rolls over correctly
+       for (unsigned int i = 3; i < UUID_LENGTH-1; i++)
+               ServerInstance->current_uid[i] = '9';
+
+       before_increment.assign(ServerInstance->current_uid);
+       generated_uid = ServerInstance->GetUID();
+
+       // Correct UID after rolling over is the first UID we've generated (...AAAAAA)
+       if (generated_uid != first_uid)
+       {
+               cout << "GENERATEUID: Generated an invalid UID after incrementing " << before_increment << ": " << generated_uid << " instead of " << first_uid << endl;
+               return false;
+       }
+
+       return true;
+}
+
 TestSuite::~TestSuite()
 {
        cout << "\n\n*** END OF TEST SUITE ***\n";