FreeRDP/libfreerdp/core/test/TestConnect.c

305 lines
5.6 KiB
C
Raw Normal View History

#include <winpr/sysinfo.h>
#include <winpr/path.h>
2017-02-17 12:59:22 +03:00
#include <winpr/crypto.h>
#include <freerdp/freerdp.h>
#include <freerdp/client/cmdline.h>
static HANDLE s_sync = NULL;
static int runInstance(int argc, char* argv[], freerdp** inst)
{
int rc = -1;
RDP_CLIENT_ENTRY_POINTS clientEntryPoints;
ZeroMemory(&clientEntryPoints, sizeof(RDP_CLIENT_ENTRY_POINTS));
clientEntryPoints.Size = sizeof(RDP_CLIENT_ENTRY_POINTS);
clientEntryPoints.Version = RDP_CLIENT_INTERFACE_VERSION;
clientEntryPoints.ContextSize = sizeof(rdpContext);
rdpContext* context = freerdp_client_context_new(&clientEntryPoints);
if (!context)
goto finish;
if (inst)
*inst = context->instance;
if (freerdp_client_settings_parse_command_line(context->settings, argc, argv, FALSE) < 0)
goto finish;
if (!freerdp_client_load_addins(context->channels, context->settings))
goto finish;
if (s_sync)
{
if (!SetEvent(s_sync))
goto finish;
}
rc = 1;
2016-10-13 23:02:25 +03:00
if (!freerdp_connect(context->instance))
goto finish;
rc = 2;
2016-10-13 23:02:25 +03:00
if (!freerdp_disconnect(context->instance))
goto finish;
rc = 0;
finish:
freerdp_client_context_free(context);
return rc;
}
static int testTimeout(int port)
{
DWORD start, end, diff;
char arg1[] = "/v:192.0.2.1:XXXXX";
char* argv[] =
{
"test",
"/v:192.0.2.1:XXXXX",
NULL
};
int rc;
2017-02-17 12:56:16 +03:00
_snprintf(arg1, 18, "/v:192.0.2.1:%d", port);
argv[1] = arg1;
start = GetTickCount();
rc = runInstance(2, argv, NULL);
end = GetTickCount();
if (rc != 1)
return -1;
diff = end - start;
2016-10-13 23:02:25 +03:00
if (diff > 16000)
return -1;
if (diff < 14000)
return -1;
printf("%s: Success!\n", __FUNCTION__);
return 0;
}
2016-10-13 23:02:25 +03:00
struct testThreadArgs
{
int port;
freerdp** arg;
};
static void* testThread(void* arg)
{
char arg1[] = "/v:192.0.2.1:XXXXX";
char* argv[] =
{
"test",
"/v:192.0.2.1:XXXXX",
NULL
};
int rc;
2016-10-13 23:02:25 +03:00
struct testThreadArgs* args = arg;
2017-02-17 12:56:16 +03:00
_snprintf(arg1, 18, "/v:192.0.2.1:%d", args->port);
argv[1] = arg1;
rc = runInstance(2, argv, args->arg);
if (rc != 1)
ExitThread(-1);
ExitThread(0);
return NULL;
}
static int testAbort(int port)
{
DWORD status;
DWORD start, end, diff;
HANDLE thread;
struct testThreadArgs args;
freerdp* instance = NULL;
s_sync = CreateEvent(NULL, TRUE, FALSE, NULL);
2016-10-13 23:02:25 +03:00
if (!s_sync)
return -1;
args.port = port;
args.arg = &instance;
start = GetTickCount();
thread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)testThread,
2016-10-13 23:02:25 +03:00
&args, 0, NULL);
if (!thread)
{
CloseHandle(s_sync);
s_sync = NULL;
return -1;
}
WaitForSingleObject(s_sync, INFINITE);
freerdp_abort_connect(instance);
status = WaitForSingleObject(instance->context->abortEvent, 0);
2016-10-13 23:02:25 +03:00
if (status != WAIT_OBJECT_0)
{
CloseHandle(s_sync);
CloseHandle(thread);
s_sync = NULL;
return -1;
}
status = WaitForSingleObject(thread, 20000);
end = GetTickCount();
CloseHandle(s_sync);
CloseHandle(thread);
s_sync = NULL;
diff = end - start;
2016-10-13 23:02:25 +03:00
if (diff > 5000)
{
printf("%s required %"PRIu32"ms for the test\n", __FUNCTION__, diff);
return -1;
}
if (WAIT_OBJECT_0 != status)
return -1;
printf("%s: Success!\n", __FUNCTION__);
return 0;
}
static int testSuccess(int port)
{
int rc;
STARTUPINFOA si;
PROCESS_INFORMATION process;
char arg1[] = "/v:127.0.0.1:XXXXX";
char* clientArgs[] =
{
"test",
"/v:127.0.0.1:XXXXX",
"/cert-ignore",
"/rfx",
NULL
};
2016-10-13 23:02:25 +03:00
char* commandLine;
int commandLineLen;
int argc = 4;
char* path = TESTING_OUTPUT_DIRECTORY;
char* wpath = TESTING_SRC_DIRECTORY;
char* exe = GetCombinedPath(path, "server");
char* wexe = GetCombinedPath(wpath, "server");
2017-02-17 12:56:16 +03:00
_snprintf(arg1, 18, "/v:127.0.0.1:%d", port);
clientArgs[1] = arg1;
if (!exe || !wexe)
{
free(exe);
free(wexe);
return -2;
}
path = GetCombinedPath(exe, "Sample");
wpath = GetCombinedPath(wexe, "Sample");
free(exe);
free(wexe);
if (!path || !wpath)
{
free(path);
free(wpath);
return -2;
}
exe = GetCombinedPath(path, "sfreerdp-server");
if (!exe)
{
free(path);
free(wpath);
return -2;
}
printf("Sample Server: %s\n", exe);
printf("Workspace: %s\n", wpath);
2016-10-13 23:02:25 +03:00
if (!PathFileExistsA(exe))
{
free(path);
free(wpath);
free(exe);
return -2;
}
// Start sample server locally.
commandLineLen = strlen(exe) + strlen("--local-only --port=XXXXX") + 1;
commandLine = malloc(commandLineLen);
2016-10-13 23:02:25 +03:00
if (!commandLine)
{
free(path);
free(wpath);
free(exe);
return -2;
}
_snprintf(commandLine, commandLineLen, "%s --local-only --port=%d", exe, port);
memset(&si, 0, sizeof(si));
2016-10-13 23:02:25 +03:00
si.cb = sizeof(si);
if (!CreateProcessA(exe, commandLine, NULL, NULL, FALSE, 0, NULL,
2016-10-13 23:02:25 +03:00
wpath, &si, &process))
{
free(exe);
free(path);
free(wpath);
return -2;
}
free(exe);
free(path);
free(wpath);
free(commandLine);
Sleep(1 * 1000); /* let the server start */
rc = runInstance(argc, clientArgs, NULL);
if (!TerminateProcess(process.hProcess, 0))
return -2;
WaitForSingleObject(process.hProcess, INFINITE);
CloseHandle(process.hProcess);
CloseHandle(process.hThread);
printf("%s: returned %d!\n", __FUNCTION__, rc);
2016-10-13 23:02:25 +03:00
if (rc)
return -1;
printf("%s: Success!\n", __FUNCTION__);
return 0;
}
int TestConnect(int argc, char* argv[])
{
int randomPort;
2017-02-17 12:59:22 +03:00
int random;
winpr_RAND((BYTE*)&random, sizeof(random));
randomPort = 3389 + (random % 200);
/* Test connect to not existing server,
* check if timeout is honored. */
if (testTimeout(randomPort))
return -1;
/* Test connect to not existing server,
* check if connection abort is working. */
if (testAbort(randomPort))
return -1;
/* Test connect to existing server,
* check if connection is working. */
if (testSuccess(randomPort))
return -1;
return 0;
}