FreeRDP/cunit/test_freerdp.c

204 lines
4.2 KiB
C
Raw Normal View History

2011-07-01 02:17:37 +04:00
/**
* FreeRDP: A Remote Desktop Protocol Client
* FreeRDP Unit Tests
*
* Copyright 2010 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <CUnit/Basic.h>
2011-07-01 02:17:37 +04:00
#include "test_per.h"
#include "test_ber.h"
#include "test_gcc.h"
#include "test_mcs.h"
2011-07-01 02:17:37 +04:00
#include "test_color.h"
2011-07-10 08:24:09 +04:00
#include "test_bitmap.h"
2012-02-14 06:02:09 +04:00
#include "test_gdi.h"
#include "test_list.h"
#include "test_sspi.h"
#include "test_stream.h"
2011-07-08 07:26:38 +04:00
#include "test_utils.h"
2011-08-04 03:15:37 +04:00
#include "test_orders.h"
2012-03-03 22:02:13 +04:00
#include "test_ntlm.h"
2011-07-13 19:40:19 +04:00
#include "test_license.h"
#include "test_channels.h"
2011-07-12 13:06:14 +04:00
#include "test_cliprdr.h"
#include "test_drdynvc.h"
2012-02-14 06:02:09 +04:00
#include "test_rfx.h"
2012-03-06 14:55:54 +04:00
#include "test_nsc.h"
2011-07-01 02:17:37 +04:00
#include "test_freerdp.h"
#include "test_rail.h"
#include "test_pcap.h"
#include "test_mppc.h"
2011-07-01 02:17:37 +04:00
void dump_data(unsigned char * p, int len, int width, char* name)
{
unsigned char *line = p;
int i, thisline, offset = 0;
printf("\n%s[%d][%d]:\n", name, len / width, width);
while (offset < len)
{
printf("%04x ", offset);
thisline = len - offset;
if (thisline > width)
thisline = width;
for (i = 0; i < thisline; i++)
printf("%02x ", line[i]);
for (; i < width; i++)
printf(" ");
printf("\n");
offset += thisline;
line += thisline;
}
printf("\n");
}
void assert_stream(STREAM* s, uint8* data, int length, const char* func, int line)
{
int i;
int actual_length;
uint8* actual_data;
actual_data = s->data;
actual_length = stream_get_length(s);
if (actual_length != length)
{
printf("\n %s (%d): length mismatch, actual:%d, expected:%d\n", func, line, actual_length, length);
printf("\nActual:\n");
freerdp_hexdump(actual_data, actual_length);
printf("Expected:\n");
freerdp_hexdump(data, length);
CU_FAIL("assert_stream, length mismatch");
return;
}
for (i = 0; i < length; i++)
{
if (actual_data[i] != data[i])
{
printf("\n %s (%d): buffer mismatch:\n", func, line);
printf("\nActual:\n");
freerdp_hexdump(actual_data, length);
printf("Expected:\n");
freerdp_hexdump(data, length);
CU_FAIL("assert_stream, buffer mismatch");
return;
}
}
}
2012-02-14 06:02:09 +04:00
typedef boolean (*pInitTestSuite)(void);
struct _test_suite
{
char name[32];
pInitTestSuite Init;
};
typedef struct _test_suite test_suite;
static test_suite suites[] =
{
{ "ber", add_ber_suite },
{ "bitmap", add_bitmap_suite },
{ "channels", add_channels_suite },
{ "cliprdr", add_cliprdr_suite },
{ "color", add_color_suite },
{ "drdynvc", add_drdynvc_suite },
{ "gcc", add_gcc_suite },
{ "gdi", add_gdi_suite },
{ "license", add_license_suite },
{ "list", add_list_suite },
{ "mcs", add_mcs_suite },
{ "mppc", add_mppc_suite },
2012-03-03 22:02:13 +04:00
{ "ntlm", add_ntlm_suite },
2012-02-14 06:02:09 +04:00
{ "orders", add_orders_suite },
{ "pcap", add_pcap_suite },
{ "per", add_per_suite },
{ "rail", add_rail_suite },
{ "rfx", add_rfx_suite },
2012-03-06 14:55:54 +04:00
{ "nsc", add_nsc_suite },
{ "sspi", add_sspi_suite },
2012-02-14 06:02:09 +04:00
{ "stream", add_stream_suite },
{ "utils", add_utils_suite },
{ "", NULL }
};
2011-07-01 02:17:37 +04:00
int main(int argc, char* argv[])
{
2012-02-14 06:02:09 +04:00
int k;
2011-07-01 02:17:37 +04:00
int index = 1;
int *pindex = &index;
2012-02-14 06:02:09 +04:00
int status = 0;
2011-07-01 02:17:37 +04:00
if (CU_initialize_registry() != CUE_SUCCESS)
return CU_get_error();
if (argc < *pindex + 1)
{
2012-02-14 06:02:09 +04:00
k = 0;
printf("\ntest suites:\n\n");
while (suites[k].Init != NULL)
{
printf("\t%s\n", suites[k].name);
k++;
}
printf("\nusage: ./test_freerdp <suite-1> <suite-2> ... <suite-n>\n");
return 0;
2011-07-01 02:17:37 +04:00
}
else
{
while (*pindex < argc)
{
2012-02-14 06:02:09 +04:00
k = 0;
while (suites[k].Init != NULL)
{
2012-02-14 06:02:09 +04:00
if (strcmp(suites[k].name, argv[*pindex]) == 0)
{
suites[k].Init();
break;
}
k++;
}
2011-07-01 02:17:37 +04:00
*pindex = *pindex + 1;
}
}
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests();
2012-02-14 06:02:09 +04:00
status = CU_get_number_of_failure_records();
2011-07-01 02:17:37 +04:00
CU_cleanup_registry();
2012-02-14 06:02:09 +04:00
return status;
2011-07-01 02:17:37 +04:00
}