TestFramework.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/NetCore.h"
  18. #include "util/Linker.h"
  19. Linker_require("test/TestFramework.c")
  20. struct TestFramework
  21. {
  22. struct Allocator* alloc;
  23. struct Random* rand;
  24. struct EventBase* eventBase;
  25. struct Log* logger;
  26. struct Pathfinder* pathfinder;
  27. struct Iface* tunIf;
  28. struct NetCore* nc;
  29. /** The last message which this node sent. */
  30. struct Message* lastMsg;
  31. /**
  32. * A backup of the last message which this node sent.
  33. * Used to check if the framework alters the message after sending it.
  34. */
  35. struct Message* lastMsgBackup;
  36. uint8_t* publicKey;
  37. uint8_t* ip;
  38. Identity
  39. };
  40. #define TestFramework_KEY_SIZE 8
  41. struct TestFramework* TestFramework_setUp(char* privateKey,
  42. struct Allocator* allocator,
  43. struct EventBase* base,
  44. struct Random* rand,
  45. struct Log* logger);
  46. void TestFramework_linkNodes(struct TestFramework* client,
  47. struct TestFramework* server,
  48. bool beacon);
  49. void TestFramework_craftIPHeader(struct Message* msg, uint8_t srcAddr[16], uint8_t destAddr[16]);
  50. /** Check if the last message sent was altered after having been sent. */
  51. void TestFramework_assertLastMessageUnaltered(struct TestFramework* tf);
  52. #endif