12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program 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 <https://www.gnu.org/licenses/>.
- */
- #ifndef TestFramework_H
- #define TestFramework_H
- #include "switch/EncodingScheme.h"
- #include "net/NetCore.h"
- #include "util/Linker.h"
- Linker_require("test/TestFramework.c")
- struct TestFramework
- {
- struct Allocator* alloc;
- struct Random* rand;
- struct EventBase* eventBase;
- struct Log* logger;
- #ifndef SUBNODE
- struct Pathfinder* pathfinder;
- #endif
- struct SubnodePathfinder* subnodePathfinder;
- struct Iface* tunIf;
- struct NetCore* nc;
- struct EncodingScheme* scheme;
- /** The last message which this node sent. */
- struct Message* lastMsg;
- /**
- * A backup of the last message which this node sent.
- * Used to check if the framework alters the message after sending it.
- */
- struct Message* lastMsgBackup;
- uint8_t* publicKey;
- uint8_t* ip;
- Identity
- };
- #define TestFramework_KEY_SIZE 8
- struct TestFramework* TestFramework_setUp(char* privateKey,
- struct Allocator* allocator,
- struct EventBase* base,
- struct Random* rand,
- struct Log* logger);
- void TestFramework_linkNodes(struct TestFramework* client,
- struct TestFramework* server,
- bool beacon);
- void TestFramework_craftIPHeader(struct Message* msg, uint8_t srcAddr[16], uint8_t destAddr[16]);
- /** Check if the last message sent was altered after having been sent. */
- void TestFramework_assertLastMessageUnaltered(struct TestFramework* tf);
- int TestFramework_peerCount(struct TestFramework* node);
- int TestFramework_sessionCount(struct TestFramework* node);
- #endif
|