1
0

TestFramework.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef TestFramework_H
  16. #define TestFramework_H
  17. #include "net/Ducttape.h"
  18. struct TestFramework
  19. {
  20. struct Allocator* alloc;
  21. struct Random* rand;
  22. struct EventBase* eventBase;
  23. struct Log* logger;
  24. struct SwitchCore* switchCore;
  25. struct Ducttape* ducttape;
  26. struct CryptoAuth* cryptoAuth;
  27. struct RouterModule* router;
  28. struct SwitchPinger* switchPinger;
  29. struct InterfaceController* ifController;
  30. /** The last message which this node sent. */
  31. struct Message* lastMsg;
  32. /**
  33. * A backup of the last message which this node sent.
  34. * Used to check if the framework alters the message after sending it.
  35. */
  36. struct Message* lastMsgBackup;
  37. uint8_t* publicKey;
  38. uint8_t* ip;
  39. Identity
  40. };
  41. #define TestFramework_KEY_SIZE 8
  42. struct TestFramework* TestFramework_setUp(char* privateKey,
  43. struct Allocator* allocator,
  44. struct Log* logger);
  45. void TestFramework_linkNodes(struct TestFramework* client, struct TestFramework* server);
  46. void TestFramework_craftIPHeader(struct Message* msg, uint8_t srcAddr[16], uint8_t destAddr[16]);
  47. /** Check if the last message sent was altered after having been sent. */
  48. void TestFramework_assertLastMessageUnaltered(struct TestFramework* tf);
  49. #endif