Green Sky
b1fe064484
73d9b845a3 cleanup: Remove old type-ordered event getters. b0840cc02d feat: add ngc events 7df9a51349 refactor: Make event dispatch ordered by receive time. bcb6592af5 test: Add C++ classes wrapping system interfaces. 4cea4f9ca4 fix: Make all the fuzzers work again, and add a test for protodump. c4e209ea1d refactor: Factor out malloc+memcpy into memdup. 87bcc4322d fix: Remove fatal error for non-erroneous case REVERT: 6d634674a9 cleanup: Remove old type-ordered event getters. REVERT: d1d48d1dfc feat: add ngc events REVERT: 994ffecc6b refactor: Make event dispatch ordered by receive time. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 73d9b845a310c3f56d2d6d77ed56b93d84256d6e
94 lines
3.2 KiB
C++
94 lines
3.2 KiB
C++
#ifndef C_TOXCORE_TOXCORE_NETWORK_TEST_UTIL_H
|
|
#define C_TOXCORE_TOXCORE_NETWORK_TEST_UTIL_H
|
|
|
|
#include <iosfwd>
|
|
|
|
#include "crypto_core.h"
|
|
#include "network.h"
|
|
#include "test_util.hh"
|
|
|
|
struct Network_Class {
|
|
static Network_Funcs const vtable;
|
|
Network const self;
|
|
|
|
operator Network const *() const { return &self; }
|
|
|
|
Network_Class(Network_Class const &) = default;
|
|
Network_Class()
|
|
: self{&vtable, this}
|
|
{
|
|
}
|
|
|
|
virtual ~Network_Class();
|
|
virtual net_close_cb close = 0;
|
|
virtual net_accept_cb accept = 0;
|
|
virtual net_bind_cb bind = 0;
|
|
virtual net_listen_cb listen = 0;
|
|
virtual net_recvbuf_cb recvbuf = 0;
|
|
virtual net_recv_cb recv = 0;
|
|
virtual net_recvfrom_cb recvfrom = 0;
|
|
virtual net_send_cb send = 0;
|
|
virtual net_sendto_cb sendto = 0;
|
|
virtual net_socket_cb socket = 0;
|
|
virtual net_socket_nonblock_cb socket_nonblock = 0;
|
|
virtual net_getsockopt_cb getsockopt = 0;
|
|
virtual net_setsockopt_cb setsockopt = 0;
|
|
virtual net_getaddrinfo_cb getaddrinfo = 0;
|
|
virtual net_freeaddrinfo_cb freeaddrinfo = 0;
|
|
};
|
|
|
|
/**
|
|
* Base test Network class that just forwards to system_network. Can be
|
|
* subclassed to override individual (or all) functions.
|
|
*/
|
|
class Test_Network : public Network_Class {
|
|
const Network *net = REQUIRE_NOT_NULL(system_network());
|
|
|
|
int close(void *obj, int sock) override;
|
|
int accept(void *obj, int sock) override;
|
|
int bind(void *obj, int sock, const Network_Addr *addr) override;
|
|
int listen(void *obj, int sock, int backlog) override;
|
|
int recvbuf(void *obj, int sock) override;
|
|
int recv(void *obj, int sock, uint8_t *buf, size_t len) override;
|
|
int recvfrom(void *obj, int sock, uint8_t *buf, size_t len, Network_Addr *addr) override;
|
|
int send(void *obj, int sock, const uint8_t *buf, size_t len) override;
|
|
int sendto(void *obj, int sock, const uint8_t *buf, size_t len, const Network_Addr *addr) override;
|
|
int socket(void *obj, int domain, int type, int proto) override;
|
|
int socket_nonblock(void *obj, int sock, bool nonblock) override;
|
|
int getsockopt(void *obj, int sock, int level, int optname, void *optval, size_t *optlen) override;
|
|
int setsockopt(void *obj, int sock, int level, int optname, const void *optval, size_t optlen) override;
|
|
int getaddrinfo(void *obj, int family, Network_Addr **addrs) override;
|
|
int freeaddrinfo(void *obj, Network_Addr *addrs) override;
|
|
};
|
|
|
|
template <>
|
|
struct Deleter<Networking_Core> : Function_Deleter<Networking_Core, kill_networking> { };
|
|
|
|
IP_Port random_ip_port(const Random *rng);
|
|
|
|
class increasing_ip_port {
|
|
uint8_t start_;
|
|
const Random *rng_;
|
|
|
|
public:
|
|
explicit increasing_ip_port(uint8_t start, const Random *rng)
|
|
: start_(start)
|
|
, rng_(rng)
|
|
{
|
|
}
|
|
|
|
IP_Port operator()();
|
|
};
|
|
|
|
bool operator==(Family const &a, Family const &b);
|
|
|
|
bool operator==(IP4 const &a, IP4 const &b);
|
|
bool operator==(IP6 const &a, IP6 const &b);
|
|
bool operator==(IP const &a, IP const &b);
|
|
bool operator==(IP_Port const &a, IP_Port const &b);
|
|
|
|
std::ostream &operator<<(std::ostream &out, IP const &v);
|
|
std::ostream &operator<<(std::ostream &out, IP_Port const &v);
|
|
|
|
#endif // C_TOXCORE_TOXCORE_NETWORK_TEST_UTIL_H
|