Files
tomato-testing/auto_tests/scenarios/scenario_tox_many_tcp_test.c
Green Sky 565efa4f39 Squashed 'external/toxcore/c-toxcore/' changes from 1828c5356..c9cdae001
c9cdae001 fix(toxav): remove extra copy of video frame on encode
4f6d4546b test: Improve the fake network library.
a2581e700 refactor(toxcore): generate `Friend_Request` and `Dht_Nodes_Response`
2aaa11770 refactor(toxcore): use Tox_Memory in generated events
5c367452b test(toxcore): fix incorrect mutex in tox_scenario_get_time
8f92e710f perf: Add a timed limit of number of cookie requests.
695b6417a test: Add some more simulated network support.
815ae9ce9 test(toxcore): fix thread-safety in scenario framework
6d85c754e test(toxcore): add unit tests for net_crypto
9c22e79cc test(support): add SimulatedEnvironment for deterministic testing
f34fcb195 chore: Update windows Dockerfile to debian stable (trixie).
ece0e8980 fix(group_moderation): allow validating unsorted sanction list signatures
a4fa754d7 refactor: rename struct Packet to struct Net_Packet
d6f330f85 cleanup: Fix some warnings from coverity.
e206bffa2 fix(group_chats): fix sync packets reverting topics
0e4715598 test: Add new scenario testing framework.
668291f44 refactor(toxcore): decouple Network_Funcs from sockaddr via IP_Port
fc4396cef fix: potential division by zero in toxav and unsafe hex parsing
8e8b352ab refactor: Add nullable annotations to struct members.
7740bb421 refactor: decouple net_crypto from DHT
1936d4296 test: add benchmark for toxav audio and video
46bfdc2df fix: correct printf format specifiers for unsigned integers
REVERT: 1828c5356 fix(toxav): remove extra copy of video frame on encode

git-subtree-dir: external/toxcore/c-toxcore
git-subtree-split: c9cdae001341e701fca980c9bb9febfeb95d2902
2026-01-11 14:42:31 +01:00

161 lines
5.1 KiB
C

#include "framework/framework.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define NUM_TOXES 40
#define NUM_FRIEND_PAIRS 50
#define FR_MESSAGE "Gentoo"
#define RELAY_TCP_PORT 33448
typedef struct {
uint32_t expected_friends;
} State;
static void on_friend_request(const Tox_Event_Friend_Request *event, void *user_data)
{
ToxNode *self = (ToxNode *)user_data;
const uint8_t *msg = tox_event_friend_request_get_message(event);
size_t len = tox_event_friend_request_get_message_length(event);
if (len == 6 && memcmp(msg, FR_MESSAGE, 6) == 0) {
tox_friend_add_norequest(tox_node_get_tox(self), tox_event_friend_request_get_public_key(event), nullptr);
}
}
static void peer_script(ToxNode *self, void *ctx)
{
State *state = (State *)ctx;
tox_events_callback_friend_request(tox_node_get_dispatch(self), on_friend_request);
tox_node_log(self, "Waiting for connection to relay...");
tox_node_wait_for_self_connected(self);
tox_node_log(self, "Connected. Expected friends: %u", state->expected_friends);
// Wait until we have the expected number of friends connected via TCP
uint32_t last_connected = 0;
while (1) {
uint32_t connected_friends = 0;
uint32_t total_friends = tox_self_get_friend_list_size(tox_node_get_tox(self));
for (uint32_t i = 0; i < total_friends; ++i) {
if (tox_node_get_friend_connection_status(self, i) == TOX_CONNECTION_TCP) {
connected_friends++;
}
}
if (connected_friends != last_connected) {
tox_node_log(self, "Connected friends: %u/%u", connected_friends, state->expected_friends);
last_connected = connected_friends;
}
if (connected_friends >= state->expected_friends) {
break;
}
tox_scenario_yield(self);
}
tox_node_log(self, "All %u friends connected via TCP.", state->expected_friends);
}
static void relay_script(ToxNode *self, void *ctx)
{
(void)ctx;
ToxScenario *s = tox_node_get_scenario(self);
while (tox_scenario_is_running(self)) {
bool all_finished = true;
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
ToxNode *peer = tox_scenario_get_node(s, i + 1); // Peers start at index 1
if (!tox_node_is_finished(peer)) {
all_finished = false;
break;
}
}
if (all_finished) {
break;
}
tox_scenario_yield(self);
}
}
int main(int argc, char *argv[])
{
ToxScenario *s = tox_scenario_new(argc, argv, 300000);
struct Tox_Options *opts_relay = tox_options_new(nullptr);
tox_options_set_tcp_port(opts_relay, RELAY_TCP_PORT);
ToxNode *relay = tox_scenario_add_node_ex(s, "Relay", relay_script, nullptr, 0, opts_relay);
tox_options_free(opts_relay);
uint8_t relay_dht_id[TOX_PUBLIC_KEY_SIZE];
tox_self_get_dht_id(tox_node_get_tox(relay), relay_dht_id);
uint16_t relay_tcp_port = tox_self_get_tcp_port(tox_node_get_tox(relay), nullptr);
State states[NUM_TOXES] = {0};
ToxNode *nodes[NUM_TOXES];
struct Tox_Options *opts_peer = tox_options_new(nullptr);
tox_options_set_udp_enabled(opts_peer, false);
tox_options_set_local_discovery_enabled(opts_peer, false);
for (int i = 0; i < NUM_TOXES; ++i) {
char alias[16];
snprintf(alias, sizeof(alias), "Tox%d", i);
nodes[i] = tox_scenario_add_node_ex(s, alias, peer_script, &states[i], sizeof(State), opts_peer);
// All peers use the Relay for TCP and DHT bootstrapping
tox_add_tcp_relay(tox_node_get_tox(nodes[i]), "127.0.0.1", relay_tcp_port, relay_dht_id, nullptr);
tox_node_bootstrap(nodes[i], relay);
}
tox_options_free(opts_peer);
struct {
uint16_t t1;
uint16_t t2;
} pairs[NUM_FRIEND_PAIRS];
// Generate friend pairs
for (int i = 0; i < NUM_FRIEND_PAIRS; ++i) {
bool unique;
do {
unique = true;
pairs[i].t1 = rand() % NUM_TOXES;
pairs[i].t2 = (pairs[i].t1 + rand() % (NUM_TOXES - 1) + 1) % NUM_TOXES;
// Avoid reciprocal or duplicate pairs
for (int j = 0; j < i; ++j) {
if ((pairs[j].t1 == pairs[i].t1 && pairs[j].t2 == pairs[i].t2) ||
(pairs[j].t1 == pairs[i].t2 && pairs[j].t2 == pairs[i].t1)) {
unique = false;
break;
}
}
} while (!unique);
uint8_t addr[TOX_ADDRESS_SIZE];
tox_self_get_address(tox_node_get_tox(nodes[pairs[i].t1]), addr);
Tox_Err_Friend_Add err;
tox_friend_add(tox_node_get_tox(nodes[pairs[i].t2]), addr, (const uint8_t *)FR_MESSAGE, 6, &err);
ck_assert(err == TOX_ERR_FRIEND_ADD_OK);
states[pairs[i].t1].expected_friends++;
states[pairs[i].t2].expected_friends++;
}
ToxScenarioStatus res = tox_scenario_run(s);
if (res != TOX_SCENARIO_DONE) {
tox_scenario_log(s, "Test failed with status %u", res);
return 1;
}
tox_scenario_free(s);
return 0;
}
#undef FR_MESSAGE
#undef NUM_TOXES
#undef NUM_FRIEND_PAIRS
#undef RELAY_TCP_PORT