toxcore/auto_tests/tcp_relay_test.c

45 lines
1.0 KiB
C
Raw Normal View History

#include <stdio.h>
#include "../testing/misc_tools.h"
#include "check_compat.h"
2018-02-19 01:50:50 +08:00
typedef struct State {
uint32_t index;
uint64_t clock;
} State;
#include "run_auto_test.h"
2018-02-19 01:50:50 +08:00
int main(void)
{
setvbuf(stdout, nullptr, _IONBF, 0);
struct Tox_Options *opts = tox_options_new(nullptr);
tox_options_set_udp_enabled(opts, false);
Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr);
tox_options_free(opts);
bootstrap_toxes_live_network(&tox_tcp, 1, true);
2018-02-19 01:50:50 +08:00
printf("Waiting for connection");
do {
2018-02-19 01:50:50 +08:00
printf(".");
fflush(stdout);
tox_iterate(tox_tcp, nullptr);
c_sleep(ITERATION_INTERVAL);
} while (tox_self_get_connection_status(tox_tcp) == TOX_CONNECTION_NONE);
2018-02-19 01:50:50 +08:00
const Tox_Connection status = tox_self_get_connection_status(tox_tcp);
ck_assert_msg(status == TOX_CONNECTION_TCP,
"expected TCP connection, but got %d", status);
printf("Connection (TCP): %d\n", status);
2018-02-19 01:50:50 +08:00
tox_kill(tox_tcp);
(void)run_auto_test;
2018-02-19 01:50:50 +08:00
return 0;
}