mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
1b2322284f
* add freezing and unfreezing of peers * add rejoin packet * revise handling of temporary invited connections * rename "peer kill" packet to "peer leave" packet * test rejoining in conference test * use custom clock in conference test
127 lines
3.8 KiB
C
127 lines
3.8 KiB
C
#include <stdlib.h> // calloc, free
|
|
|
|
#include "check_compat.h"
|
|
#include "../testing/misc_tools.h"
|
|
#include "../toxcore/Messenger.h"
|
|
#include "../toxcore/mono_time.h"
|
|
|
|
static bool all_connected(uint32_t tox_count, Tox **toxes)
|
|
{
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
if (tox_self_get_connection_status(toxes[i]) == TOX_CONNECTION_NONE) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool all_friends_connected(uint32_t tox_count, Tox **toxes)
|
|
{
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
const size_t friend_count = tox_self_get_friend_list_size(toxes[i]);
|
|
|
|
for (size_t j = 0; j < friend_count; j++) {
|
|
if (tox_friend_get_connection_status(toxes[i], j, nullptr) == TOX_CONNECTION_NONE) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void iterate_all_wait(uint32_t tox_count, Tox **toxes, State *state, uint32_t wait)
|
|
{
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
tox_iterate(toxes[i], &state[i]);
|
|
state[i].clock += wait;
|
|
}
|
|
|
|
/* Also actually sleep a little, to allow for local network processing */
|
|
c_sleep(20);
|
|
}
|
|
|
|
static uint64_t get_state_clock_callback(Mono_Time *mono_time, void *user_data)
|
|
{
|
|
const State *state = (const State *)user_data;
|
|
return state->clock;
|
|
}
|
|
|
|
static void run_auto_test(uint32_t tox_count, void test(Tox **toxes, State *state), bool chain)
|
|
{
|
|
printf("initialising %u toxes\n", tox_count);
|
|
Tox **toxes = (Tox **)calloc(tox_count, sizeof(Tox *));
|
|
State *state = (State *)calloc(tox_count, sizeof(State));
|
|
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
state[i].index = i;
|
|
toxes[i] = tox_new_log(nullptr, nullptr, &state[i].index);
|
|
ck_assert_msg(toxes[i], "failed to create %u tox instances", i + 1);
|
|
|
|
// TODO(iphydf): Don't rely on toxcore internals.
|
|
Mono_Time *mono_time = (*(Messenger **)toxes[i])->mono_time;
|
|
|
|
state[i].clock = current_time_monotonic(mono_time);
|
|
mono_time_set_current_time_callback(mono_time, get_state_clock_callback, &state[i]);
|
|
}
|
|
|
|
if (chain) {
|
|
printf("each tox adds adjacent toxes as friends\n");
|
|
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
for (uint32_t j = i - 1; j != i + 3; j += 2) {
|
|
if (j >= tox_count) {
|
|
continue;
|
|
}
|
|
|
|
uint8_t public_key[TOX_PUBLIC_KEY_SIZE];
|
|
tox_self_get_public_key(toxes[j], public_key);
|
|
tox_friend_add_norequest(toxes[i], public_key, nullptr);
|
|
}
|
|
}
|
|
} else {
|
|
printf("toxes all add each other as friends\n");
|
|
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
for (uint32_t j = 0; j < tox_count; j++) {
|
|
if (i != j) {
|
|
uint8_t public_key[TOX_PUBLIC_KEY_SIZE];
|
|
tox_self_get_public_key(toxes[j], public_key);
|
|
tox_friend_add_norequest(toxes[i], public_key, nullptr);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
printf("bootstrapping all toxes off toxes[0]\n");
|
|
uint8_t dht_key[TOX_PUBLIC_KEY_SIZE];
|
|
tox_self_get_dht_id(toxes[0], dht_key);
|
|
const uint16_t dht_port = tox_self_get_udp_port(toxes[0], nullptr);
|
|
|
|
for (uint32_t i = 1; i < tox_count; i++) {
|
|
tox_bootstrap(toxes[i], "localhost", dht_port, dht_key, nullptr);
|
|
}
|
|
|
|
do {
|
|
iterate_all_wait(tox_count, toxes, state, ITERATION_INTERVAL);
|
|
} while (!all_connected(tox_count, toxes));
|
|
|
|
printf("toxes are online\n");
|
|
|
|
do {
|
|
iterate_all_wait(tox_count, toxes, state, ITERATION_INTERVAL);
|
|
} while (!all_friends_connected(tox_count, toxes));
|
|
|
|
printf("tox clients connected\n");
|
|
|
|
test(toxes, state);
|
|
|
|
for (uint32_t i = 0; i < tox_count; i++) {
|
|
tox_kill(toxes[i]);
|
|
}
|
|
|
|
free(state);
|
|
free(toxes);
|
|
}
|