2014-05-03 07:46:03 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <check.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
#include <vpx/vpx_image.h>
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
#include "../toxcore/tox.h"
|
|
|
|
#include "../toxcore/logger.h"
|
2014-05-24 22:02:01 +08:00
|
|
|
#include "../toxcore/crypto_core.h"
|
2014-05-03 07:46:03 +08:00
|
|
|
#include "../toxav/toxav.h"
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(__WIN32__) || defined (WIN32)
|
|
|
|
#define c_sleep(x) Sleep(1*x)
|
|
|
|
#else
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#define c_sleep(x) usleep(1000*x)
|
|
|
|
#endif
|
|
|
|
|
2014-07-08 06:47:49 +08:00
|
|
|
pthread_mutex_t muhmutex;
|
2014-05-03 07:46:03 +08:00
|
|
|
|
|
|
|
typedef enum _CallStatus {
|
|
|
|
none,
|
|
|
|
InCall,
|
|
|
|
Ringing,
|
|
|
|
Ended,
|
|
|
|
Rejected,
|
2014-11-18 07:46:46 +08:00
|
|
|
Canceled
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
} CallStatus;
|
|
|
|
|
|
|
|
typedef struct _Party {
|
|
|
|
CallStatus status;
|
|
|
|
ToxAv *av;
|
|
|
|
int id;
|
|
|
|
} Party;
|
|
|
|
|
|
|
|
typedef struct _ACall {
|
|
|
|
pthread_t tid;
|
2014-07-21 07:10:57 +08:00
|
|
|
int idx;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
Party Caller;
|
|
|
|
Party Callee;
|
|
|
|
} ACall;
|
|
|
|
|
|
|
|
typedef struct _Status {
|
|
|
|
ACall calls[3]; /* Make 3 calls for this test */
|
|
|
|
} Status;
|
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
Status status_control;
|
|
|
|
|
2015-02-26 10:09:14 +08:00
|
|
|
void accept_friend_request(Tox *m, const uint8_t *public_key, const uint8_t *data, size_t length, void *userdata)
|
2014-05-03 07:46:03 +08:00
|
|
|
{
|
|
|
|
if (length == 7 && memcmp("gentoo", data, 7) == 0) {
|
2015-02-26 10:09:14 +08:00
|
|
|
tox_friend_add_norequest(m, public_key, 0);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_recv_invite ( void *av, int32_t call_index, void *_arg )
|
2014-05-26 00:27:48 +08:00
|
|
|
{
|
2014-11-18 07:46:46 +08:00
|
|
|
Status *cast = _arg;
|
|
|
|
cast->calls[call_index].Callee.status = Ringing;
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_recv_ringing ( void *av, int32_t call_index, void *_arg )
|
2014-05-26 00:27:48 +08:00
|
|
|
{
|
2014-05-03 07:46:03 +08:00
|
|
|
Status *cast = _arg;
|
|
|
|
cast->calls[call_index].Caller.status = Ringing;
|
|
|
|
}
|
2014-11-18 07:46:46 +08:00
|
|
|
void callback_call_ended ( void *av, int32_t call_index, void *_arg )
|
2014-05-03 07:46:03 +08:00
|
|
|
{
|
|
|
|
Status *cast = _arg;
|
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
if (av == cast->calls[call_index].Caller.av)
|
|
|
|
cast->calls[call_index].Caller.status = Ended;
|
|
|
|
else
|
|
|
|
cast->calls[call_index].Callee.status = Ended;
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_call_started ( void *av, int32_t call_index, void *_arg )
|
2014-05-26 00:27:48 +08:00
|
|
|
{
|
2014-11-18 07:46:46 +08:00
|
|
|
Status *cast = _arg;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
if (av == cast->calls[call_index].Caller.av)
|
|
|
|
cast->calls[call_index].Caller.status = InCall;
|
|
|
|
else
|
|
|
|
cast->calls[call_index].Callee.status = InCall;
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_call_canceled ( void *av, int32_t call_index, void *_arg )
|
2014-05-26 00:27:48 +08:00
|
|
|
{
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_call_rejected ( void *av, int32_t call_index, void *_arg )
|
2014-05-03 07:46:03 +08:00
|
|
|
{
|
|
|
|
Status *cast = _arg;
|
|
|
|
cast->calls[call_index].Caller.status = Rejected;
|
|
|
|
}
|
|
|
|
|
2014-07-22 23:20:55 +08:00
|
|
|
void callback_requ_timeout ( void *av, int32_t call_index, void *_arg )
|
2014-05-03 07:46:03 +08:00
|
|
|
{
|
2014-11-18 07:46:46 +08:00
|
|
|
ck_assert_msg(0, "No answer!");
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-07-08 05:37:05 +08:00
|
|
|
|
2014-11-25 09:24:59 +08:00
|
|
|
void callback_audio (void *agent, int32_t call_idx, const int16_t *PCM, uint16_t size, void *data)
|
2014-11-18 07:46:46 +08:00
|
|
|
{}
|
2014-07-08 05:37:05 +08:00
|
|
|
|
2014-11-25 09:24:59 +08:00
|
|
|
void callback_video (void *agent, int32_t call_idx, const vpx_image_t *img, void *data)
|
2014-11-18 07:46:46 +08:00
|
|
|
{}
|
2014-08-01 03:32:22 +08:00
|
|
|
|
2014-07-22 23:20:55 +08:00
|
|
|
void register_callbacks(ToxAv *av, void *data)
|
2014-07-21 07:10:57 +08:00
|
|
|
{
|
|
|
|
toxav_register_callstate_callback(av, callback_call_started, av_OnStart, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_call_canceled, av_OnCancel, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_call_rejected, av_OnReject, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_call_ended, av_OnEnd, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_recv_invite, av_OnInvite, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_recv_ringing, av_OnRinging, data);
|
|
|
|
toxav_register_callstate_callback(av, callback_requ_timeout, av_OnRequestTimeout, data);
|
2014-07-22 23:20:55 +08:00
|
|
|
|
|
|
|
|
2014-11-29 20:42:19 +08:00
|
|
|
toxav_register_audio_callback(av, callback_audio, NULL);
|
|
|
|
toxav_register_video_callback(av, callback_video, NULL);
|
2014-07-21 07:10:57 +08:00
|
|
|
}
|
2014-05-03 07:46:03 +08:00
|
|
|
/*************************************************************************************************/
|
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
int call_running[3];
|
2014-05-03 07:46:03 +08:00
|
|
|
|
2014-05-26 00:27:48 +08:00
|
|
|
void *in_thread_call (void *arg)
|
|
|
|
{
|
2014-05-03 07:46:03 +08:00
|
|
|
#define call_print(call, what, args...) printf("[%d] " what "\n", call, ##args)
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
ACall *this_call = arg;
|
|
|
|
uint64_t start = 0;
|
2014-07-21 07:10:57 +08:00
|
|
|
int step = 0;
|
2014-05-03 07:46:03 +08:00
|
|
|
int call_idx;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-24 22:02:01 +08:00
|
|
|
const int frame_size = (av_DefaultSettings.audio_sample_rate * av_DefaultSettings.audio_frame_duration / 1000);
|
|
|
|
int16_t sample_payload[frame_size];
|
2014-05-26 00:28:59 +08:00
|
|
|
randombytes((uint8_t *)sample_payload, sizeof(int16_t) * frame_size);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-24 22:02:01 +08:00
|
|
|
uint8_t prepared_payload[RTP_PAYLOAD_SIZE];
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
register_callbacks(this_call->Caller.av, &status_control);
|
|
|
|
register_callbacks(this_call->Callee.av, arg);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
/* NOTE: CALLEE WILL ALWAHYS NEED CALL_IDX == 0 */
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
while (call_running[this_call->idx]) {
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
switch ( step ) {
|
|
|
|
case 0: /* CALLER */
|
2014-07-27 06:26:58 +08:00
|
|
|
toxav_call(this_call->Caller.av, &call_idx, this_call->Callee.id, &av_DefaultSettings, 10);
|
2014-05-03 07:46:03 +08:00
|
|
|
call_print(call_idx, "Calling ...");
|
|
|
|
step++;
|
|
|
|
break;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
case 1: /* CALLEE */
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
|
|
|
|
2014-05-26 00:27:48 +08:00
|
|
|
if (this_call->Caller.status == Ringing) {
|
2014-05-03 07:46:03 +08:00
|
|
|
call_print(call_idx, "Callee answers ...");
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-07-27 06:26:58 +08:00
|
|
|
toxav_answer(this_call->Callee.av, 0, &av_DefaultSettings);
|
2014-05-26 00:27:48 +08:00
|
|
|
step++;
|
2014-05-03 07:46:03 +08:00
|
|
|
start = time(NULL);
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
}
|
|
|
|
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* Rtp transmission */
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
if (this_call->Caller.status == InCall) { /* I think this is okay */
|
|
|
|
call_print(call_idx, "Sending rtp ...");
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
c_sleep(1000); /* We have race condition here */
|
2014-11-18 07:46:46 +08:00
|
|
|
toxav_prepare_transmission(this_call->Callee.av, 0, 1);
|
|
|
|
toxav_prepare_transmission(this_call->Caller.av, call_idx, 1);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
int payload_size = toxav_prepare_audio_frame(this_call->Caller.av, call_idx, prepared_payload, RTP_PAYLOAD_SIZE,
|
|
|
|
sample_payload, frame_size);
|
|
|
|
|
2014-05-24 22:02:01 +08:00
|
|
|
if ( payload_size < 0 ) {
|
2014-11-18 07:46:46 +08:00
|
|
|
ck_assert_msg ( 0, "Failed to encode payload" );
|
2014-05-11 00:00:49 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
while (time(NULL) - start < 10) { /* 10 seconds */
|
|
|
|
/* Both send */
|
2014-05-11 00:00:49 +08:00
|
|
|
toxav_send_audio(this_call->Caller.av, call_idx, prepared_payload, payload_size);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-11 00:00:49 +08:00
|
|
|
toxav_send_audio(this_call->Callee.av, 0, prepared_payload, payload_size);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
/* Both receive */
|
2014-05-24 22:02:01 +08:00
|
|
|
int16_t storage[RTP_PAYLOAD_SIZE];
|
2014-05-03 07:46:03 +08:00
|
|
|
int recved;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-24 22:02:01 +08:00
|
|
|
c_sleep(20);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
step++; /* This terminates the loop */
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-08 06:47:49 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
2014-05-03 07:46:03 +08:00
|
|
|
toxav_kill_transmission(this_call->Callee.av, 0);
|
|
|
|
toxav_kill_transmission(this_call->Caller.av, call_idx);
|
2014-07-08 06:47:49 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
/* Call over CALLER hangs up */
|
|
|
|
toxav_hangup(this_call->Caller.av, call_idx);
|
|
|
|
call_print(call_idx, "Hanging up ...");
|
2014-11-28 10:08:01 +08:00
|
|
|
|
|
|
|
pthread_mutex_lock(&muhmutex);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-03 07:46:03 +08:00
|
|
|
break;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
case 3: /* Wait for Both to have status ended */
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
if (this_call->Caller.status == Ended) {
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-03 07:46:03 +08:00
|
|
|
c_sleep(1000); /* race condition */
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
2014-05-26 00:45:09 +08:00
|
|
|
this_call->Callee.status = Ended;
|
2014-07-21 07:10:57 +08:00
|
|
|
call_running[this_call->idx] = 0;
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
|
|
|
|
2014-05-26 00:27:48 +08:00
|
|
|
break;
|
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
c_sleep(20);
|
2014-11-28 10:08:01 +08:00
|
|
|
|
|
|
|
pthread_mutex_lock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
}
|
|
|
|
|
2014-11-28 10:08:01 +08:00
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-03 07:46:03 +08:00
|
|
|
call_print(call_idx, "Call ended successfully!");
|
|
|
|
pthread_exit(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
START_TEST(test_AV_three_calls)
|
|
|
|
// void test_AV_three_calls()
|
2014-05-03 07:46:03 +08:00
|
|
|
{
|
|
|
|
long long unsigned int cur_time = time(NULL);
|
2015-02-26 10:09:14 +08:00
|
|
|
Tox *bootstrap_node = tox_new(0, 0, 0, 0);
|
|
|
|
Tox *caller = tox_new(0, 0, 0, 0);
|
2014-05-03 07:46:03 +08:00
|
|
|
Tox *callees[3] = {
|
2015-02-26 10:09:14 +08:00
|
|
|
tox_new(0, 0, 0, 0),
|
|
|
|
tox_new(0, 0, 0, 0),
|
|
|
|
tox_new(0, 0, 0, 0),
|
2014-05-03 07:46:03 +08:00
|
|
|
};
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
ck_assert_msg(bootstrap_node != NULL, "Failed to create bootstrap node");
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
int i = 0;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
for (; i < 3; i ++) {
|
2014-11-18 07:46:46 +08:00
|
|
|
ck_assert_msg(callees[i] != NULL, "Failed to create 3 tox instances");
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
for ( i = 0; i < 3; i ++ ) {
|
|
|
|
uint32_t to_compare = 974536;
|
|
|
|
tox_callback_friend_request(callees[i], accept_friend_request, &to_compare);
|
2015-02-26 10:09:14 +08:00
|
|
|
uint8_t address[TOX_ADDRESS_SIZE];
|
|
|
|
tox_self_get_address(callees[i], address);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2015-02-26 10:09:14 +08:00
|
|
|
uint32_t test = tox_friend_add(caller, address, (uint8_t *)"gentoo", 7, 0);
|
2014-11-18 07:46:46 +08:00
|
|
|
ck_assert_msg( test == i, "Failed to add friend error code: %i", test);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
uint8_t off = 1;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
while (1) {
|
2015-03-12 06:26:25 +08:00
|
|
|
tox_iterate(bootstrap_node);
|
|
|
|
tox_iterate(caller);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
for (i = 0; i < 3; i ++) {
|
2015-03-12 06:26:25 +08:00
|
|
|
tox_iterate(callees[i]);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
|
2015-03-19 03:18:36 +08:00
|
|
|
if (tox_self_get_connection_status(bootstrap_node) &&
|
|
|
|
tox_self_get_connection_status(caller) &&
|
|
|
|
tox_self_get_connection_status(callees[0]) &&
|
|
|
|
tox_self_get_connection_status(callees[1]) &&
|
|
|
|
tox_self_get_connection_status(callees[2]) && off) {
|
2014-05-03 07:46:03 +08:00
|
|
|
printf("Toxes are online, took %llu seconds\n", time(NULL) - cur_time);
|
|
|
|
off = 0;
|
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
|
2015-02-26 10:09:14 +08:00
|
|
|
if (tox_friend_get_connection_status(caller, 0, 0) &&
|
|
|
|
tox_friend_get_connection_status(caller, 1, 0) &&
|
|
|
|
tox_friend_get_connection_status(caller, 2, 0) )
|
2014-05-03 07:46:03 +08:00
|
|
|
break;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
c_sleep(20);
|
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
printf("All set after %llu seconds! Starting call...\n", time(NULL) - cur_time);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
|
|
|
ToxAv *uniqcallerav = toxav_new(caller, 3);
|
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
for (i = 0; i < 3; i ++) {
|
|
|
|
status_control.calls[i].idx = i;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
status_control.calls[i].Caller.av = uniqcallerav;
|
|
|
|
status_control.calls[i].Caller.id = 0;
|
2014-07-22 23:20:55 +08:00
|
|
|
status_control.calls[i].Caller.status = none;
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
status_control.calls[i].Callee.av = toxav_new(callees[i], 1);
|
|
|
|
status_control.calls[i].Callee.id = i;
|
2014-07-22 23:20:55 +08:00
|
|
|
status_control.calls[i].Callee.status = none;
|
2014-07-21 07:10:57 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-08 06:47:49 +08:00
|
|
|
pthread_mutex_init(&muhmutex, NULL);
|
|
|
|
|
2014-09-22 03:15:35 +08:00
|
|
|
for ( i = 0; i < 3; i++ ) {
|
|
|
|
call_running[i] = 1;
|
2014-05-03 07:46:03 +08:00
|
|
|
pthread_create(&status_control.calls[i].tid, NULL, in_thread_call, &status_control.calls[i]);
|
2014-09-22 03:15:35 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
/* Now start 3 calls and they'll run for 10 s */
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
for ( i = 0; i < 3; i++ )
|
|
|
|
pthread_detach(status_control.calls[i].tid);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-07-21 07:10:57 +08:00
|
|
|
while (call_running[0] || call_running[1] || call_running[2]) {
|
2014-07-08 06:47:49 +08:00
|
|
|
pthread_mutex_lock(&muhmutex);
|
|
|
|
|
2015-03-12 06:26:25 +08:00
|
|
|
tox_iterate(bootstrap_node);
|
|
|
|
tox_iterate(caller);
|
|
|
|
tox_iterate(callees[0]);
|
|
|
|
tox_iterate(callees[1]);
|
|
|
|
tox_iterate(callees[2]);
|
2014-07-08 06:47:49 +08:00
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
for ( i = 0; i < 3; i++ )
|
|
|
|
toxav_do(status_control.calls[0].Caller.av);
|
2014-11-25 09:24:59 +08:00
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
toxav_do(status_control.calls[0].Callee.av);
|
|
|
|
toxav_do(status_control.calls[1].Callee.av);
|
|
|
|
toxav_do(status_control.calls[2].Callee.av);
|
2014-07-08 06:47:49 +08:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&muhmutex);
|
2014-05-26 00:27:48 +08:00
|
|
|
c_sleep(20);
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
toxav_kill(status_control.calls[0].Caller.av);
|
|
|
|
toxav_kill(status_control.calls[0].Callee.av);
|
|
|
|
toxav_kill(status_control.calls[1].Callee.av);
|
|
|
|
toxav_kill(status_control.calls[2].Callee.av);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
tox_kill(bootstrap_node);
|
|
|
|
tox_kill(caller);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
for ( i = 0; i < 3; i ++)
|
|
|
|
tox_kill(callees[i]);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
}
|
2014-11-18 07:46:46 +08:00
|
|
|
END_TEST
|
2014-05-03 07:46:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Suite *tox_suite(void)
|
|
|
|
{
|
|
|
|
Suite *s = suite_create("ToxAV");
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
TCase *tc_av_three_calls = tcase_create("AV_three_calls");
|
|
|
|
tcase_add_test(tc_av_three_calls, test_AV_three_calls);
|
|
|
|
tcase_set_timeout(tc_av_three_calls, 150);
|
|
|
|
suite_add_tcase(s, tc_av_three_calls);
|
2014-05-26 00:27:48 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
return s;
|
|
|
|
}
|
2014-11-18 07:46:46 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
int main(int argc, char *argv[])
|
2014-05-26 00:27:48 +08:00
|
|
|
{
|
2014-11-18 07:46:46 +08:00
|
|
|
Suite *tox = tox_suite();
|
|
|
|
SRunner *test_runner = srunner_create(tox);
|
|
|
|
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
|
|
|
|
srunner_run_all(test_runner, CK_NORMAL);
|
|
|
|
int number_failed = srunner_ntests_failed(test_runner);
|
|
|
|
|
|
|
|
srunner_free(test_runner);
|
|
|
|
|
|
|
|
return number_failed;
|
|
|
|
|
|
|
|
// test_AV_three_calls();
|
|
|
|
|
|
|
|
// return 0;
|
2014-07-08 05:37:05 +08:00
|
|
|
}
|