2016-10-11 19:52:06 +08:00
|
|
|
/* Auto Tests: Many clients.
|
2016-09-27 16:40:29 +08:00
|
|
|
*/
|
|
|
|
|
2018-01-29 05:30:39 +08:00
|
|
|
#ifndef _XOPEN_SOURCE
|
2017-01-06 20:19:12 +08:00
|
|
|
#define _XOPEN_SOURCE 600
|
2018-01-29 05:30:39 +08:00
|
|
|
#endif
|
2017-01-06 20:19:12 +08:00
|
|
|
|
2016-09-27 16:40:29 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2017-06-05 04:58:28 +08:00
|
|
|
#include "check_compat.h"
|
|
|
|
|
2016-09-27 16:40:29 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2016-11-02 22:34:33 +08:00
|
|
|
#include <time.h>
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-03-28 21:36:14 +08:00
|
|
|
#include "../toxcore/crypto_core.h"
|
2016-09-27 16:40:29 +08:00
|
|
|
#include "../toxcore/tox.h"
|
|
|
|
#include "../toxcore/util.h"
|
|
|
|
|
|
|
|
#include "helpers.h"
|
|
|
|
|
2016-10-11 19:52:06 +08:00
|
|
|
static void accept_friend_request(Tox *m, const uint8_t *public_key, const uint8_t *data, size_t length, void *userdata)
|
|
|
|
{
|
|
|
|
if (length == 7 && memcmp("Gentoo", data, 7) == 0) {
|
2018-01-29 05:30:39 +08:00
|
|
|
tox_friend_add_norequest(m, public_key, nullptr);
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-11 19:52:06 +08:00
|
|
|
#define NUM_TOXES 90
|
|
|
|
#define NUM_FRIENDS 50
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
static void test_many_clients(void)
|
2016-09-27 16:40:29 +08:00
|
|
|
{
|
2018-02-19 01:50:50 +08:00
|
|
|
time_t cur_time = time(nullptr);
|
2016-10-11 19:52:06 +08:00
|
|
|
Tox *toxes[NUM_TOXES];
|
2016-11-06 00:52:41 +08:00
|
|
|
uint32_t index[NUM_TOXES];
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
2016-11-06 00:52:41 +08:00
|
|
|
index[i] = i + 1;
|
2018-01-29 05:30:39 +08:00
|
|
|
toxes[i] = tox_new_log(nullptr, nullptr, &index[i]);
|
2018-02-19 01:50:50 +08:00
|
|
|
ck_assert_msg(toxes[i] != nullptr, "failed to create tox instances %u", i);
|
2016-09-27 16:40:29 +08:00
|
|
|
tox_callback_friend_request(toxes[i], accept_friend_request);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct {
|
|
|
|
uint16_t tox1;
|
|
|
|
uint16_t tox2;
|
|
|
|
} pairs[NUM_FRIENDS];
|
|
|
|
|
|
|
|
uint8_t address[TOX_ADDRESS_SIZE];
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
uint32_t num_f = 0;
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
2016-10-11 19:52:06 +08:00
|
|
|
num_f += tox_self_get_friend_list_size(toxes[i]);
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|
|
|
|
|
2016-10-11 19:52:06 +08:00
|
|
|
ck_assert_msg(num_f == 0, "bad num friends: %u", num_f);
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_FRIENDS; ++i) {
|
2016-09-27 16:40:29 +08:00
|
|
|
loop_top:
|
2018-03-28 21:36:14 +08:00
|
|
|
pairs[i].tox1 = random_u32() % NUM_TOXES;
|
|
|
|
pairs[i].tox2 = (pairs[i].tox1 + random_u32() % (NUM_TOXES - 1) + 1) % NUM_TOXES;
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t j = 0; j < i; ++j) {
|
2016-09-27 16:40:29 +08:00
|
|
|
if (pairs[j].tox2 == pairs[i].tox1 && pairs[j].tox1 == pairs[i].tox2) {
|
|
|
|
goto loop_top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tox_self_get_address(toxes[pairs[i].tox1], address);
|
|
|
|
|
|
|
|
TOX_ERR_FRIEND_ADD test;
|
|
|
|
uint32_t num = tox_friend_add(toxes[pairs[i].tox2], address, (const uint8_t *)"Gentoo", 7, &test);
|
|
|
|
|
|
|
|
if (test == TOX_ERR_FRIEND_ADD_ALREADY_SENT) {
|
|
|
|
goto loop_top;
|
|
|
|
}
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
uint8_t dht_key[TOX_PUBLIC_KEY_SIZE];
|
|
|
|
tox_self_get_dht_id(toxes[pairs[i].tox1], dht_key);
|
|
|
|
const uint16_t dht_port = tox_self_get_udp_port(toxes[pairs[i].tox1], nullptr);
|
|
|
|
|
|
|
|
tox_bootstrap(toxes[pairs[i].tox2], "localhost", dht_port, dht_key, nullptr);
|
|
|
|
|
|
|
|
ck_assert_msg(num != UINT32_MAX && test == TOX_ERR_FRIEND_ADD_OK, "failed to add friend error code: %i", test);
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
2016-10-11 19:52:06 +08:00
|
|
|
num_f += tox_self_get_friend_list_size(toxes[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
ck_assert_msg(num_f == NUM_FRIENDS, "bad num friends: %u", num_f);
|
|
|
|
|
2016-09-27 16:40:29 +08:00
|
|
|
uint16_t last_count = 0;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
uint16_t counter = 0;
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
|
|
|
for (uint32_t j = 0; j < tox_self_get_friend_list_size(toxes[i]); ++j) {
|
2018-01-29 05:30:39 +08:00
|
|
|
if (tox_friend_get_connection_status(toxes[i], j, nullptr) == TOX_CONNECTION_UDP) {
|
2016-09-27 16:40:29 +08:00
|
|
|
++counter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (counter != last_count) {
|
2016-10-11 19:52:06 +08:00
|
|
|
printf("many_clients got to %u\n", counter);
|
2016-09-27 16:40:29 +08:00
|
|
|
last_count = counter;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (counter == NUM_FRIENDS * 2) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
|
|
|
tox_iterate(toxes[i], nullptr);
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
c_sleep(50);
|
|
|
|
}
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
for (uint32_t i = 0; i < NUM_TOXES; ++i) {
|
2016-09-27 16:40:29 +08:00
|
|
|
tox_kill(toxes[i]);
|
|
|
|
}
|
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
printf("test_many_clients succeeded, took %ld seconds\n", time(nullptr) - cur_time);
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|
|
|
|
|
2018-02-23 10:22:38 +08:00
|
|
|
int main(void)
|
2016-09-27 16:40:29 +08:00
|
|
|
{
|
2018-02-19 01:50:50 +08:00
|
|
|
setvbuf(stdout, nullptr, _IONBF, 0);
|
2016-09-27 16:40:29 +08:00
|
|
|
|
2018-02-19 01:50:50 +08:00
|
|
|
test_many_clients();
|
|
|
|
return 0;
|
2016-09-27 16:40:29 +08:00
|
|
|
}
|