83 lines
2.5 KiB
C
83 lines
2.5 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
* NSCodec Library Unit Tests
|
|
*
|
|
* Copyright 2012 Vic Lee
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* The sample data comes from [MS-RDPRFX] 4.2.3, which is decoded into three
|
|
* vertical bands in red (21x64), green (23x64) and blue(20x64) color.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <freerdp/types.h>
|
|
#include <freerdp/utils/print.h>
|
|
#include <freerdp/utils/memory.h>
|
|
#include <freerdp/utils/hexdump.h>
|
|
#include <freerdp/codec/nsc.h>
|
|
|
|
#include "test_nsc.h"
|
|
|
|
static const uint8 nsc_data[] =
|
|
{
|
|
0x71, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
|
|
0x03, 0x01, 0x00, 0x00, 0x63, 0x63, 0x01, 0x64, 0x64, 0x00, 0x63, 0x63, 0x02, 0x64, 0x64, 0x00,
|
|
0x63, 0x63, 0x00, 0x64, 0x64, 0x01, 0x63, 0x63, 0x01, 0x64, 0x64, 0x01, 0x63, 0x63, 0x01, 0x64,
|
|
0x64, 0x00, 0x63, 0x63, 0x00, 0x64, 0x64, 0x01, 0x63, 0x63, 0x00, 0x64, 0x64, 0x0c, 0x63, 0x63,
|
|
0x00, 0x64, 0x64, 0x0c, 0x63, 0x63, 0x00, 0x64, 0x64, 0x0c, 0x63, 0x63, 0x00, 0x64, 0x64, 0x0c,
|
|
0x63, 0x64, 0x64, 0x04, 0x63, 0x64, 0x63, 0x63, 0x00, 0x64, 0x64, 0x03, 0x63, 0x64, 0x64, 0x03,
|
|
0x63, 0x63, 0x00, 0x64, 0x63, 0x63, 0x00, 0x64, 0x64, 0x03, 0x65, 0x63, 0x64, 0x64, 0x01, 0x63,
|
|
0x64, 0x64, 0x00, 0x65, 0x64, 0x64, 0x06, 0x63, 0x64, 0x64, 0x00, 0x63, 0x63, 0x00, 0x64, 0x64,
|
|
0x04, 0x64, 0x65, 0x65, 0x65, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x37, 0x37, 0x19, 0x36,
|
|
0x37, 0x37, 0x06, 0x37, 0x37, 0x37, 0x37, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff
|
|
};
|
|
|
|
int init_nsc_suite(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int clean_nsc_suite(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int add_nsc_suite(void)
|
|
{
|
|
add_test_suite(nsc);
|
|
|
|
add_test_function(nsc_decode);
|
|
add_test_function(nsc_encode);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void test_nsc_decode(void)
|
|
{
|
|
NSC_CONTEXT* context;
|
|
|
|
context = nsc_context_new();
|
|
nsc_process_message(context, 32, 15, 10, (uint8*) nsc_data, sizeof(nsc_data));
|
|
/*freerdp_hexdump(context->bmpdata, 15 * 10 * 4);*/
|
|
nsc_context_free(context);
|
|
}
|
|
|
|
void test_nsc_encode(void)
|
|
{
|
|
}
|