transmission/libtransmission/json-test.c

173 lines
4.4 KiB
C
Raw Normal View History

2008-05-11 22:42:53 +00:00
#include <stdio.h>
#include <string.h>
2008-05-11 22:42:53 +00:00
#include "transmission.h"
#include "bencode.h"
2008-05-18 16:44:30 +00:00
#include "json.h"
2008-05-11 22:42:53 +00:00
#include "utils.h" /* tr_free */
#undef VERBOSE
2008-05-11 22:42:53 +00:00
static int test = 0;
2008-05-11 22:42:53 +00:00
#ifdef VERBOSE
#define check( A ) \
{ \
++test; \
if( A ){ \
fprintf( stderr, "PASS test #%d (%s, %d)\n", test, __FILE__, __LINE__ ); \
} else { \
fprintf( stderr, "FAIL test #%d (%s, %d)\n", test, __FILE__, __LINE__ ); \
return test; \
} \
}
#else
#define check( A ) \
{ \
++test; \
if( !( A ) ){ \
fprintf( stderr, "FAIL test #%d (%s, %d)\n", test, __FILE__, __LINE__ ); \
return test; \
} \
}
#endif
2008-05-11 22:42:53 +00:00
2008-08-19 23:11:35 +00:00
#include "ConvertUTF.h"
static int
test_utf8( void )
{
const char * in = "{ \"key\": \"Letöltések\" }";
tr_benc top;
const char * str;
char * json;
int err;
err = tr_jsonParse( NULL, in, strlen( in ), &top, NULL );
check( !err );
check( tr_bencIsDict( &top ) );
check( tr_bencDictFindStr( &top, "key", &str ) );
check( !strcmp( str, "Letöltések" ) );
2008-08-19 23:11:35 +00:00
if( !err )
tr_bencFree( &top );
2008-08-19 23:11:35 +00:00
in = "{ \"key\": \"\\u005C\" }";
err = tr_jsonParse( NULL, in, strlen( in ), &top, NULL );
2008-08-19 23:11:35 +00:00
check( !err );
check( tr_bencIsDict( &top ) );
check( tr_bencDictFindStr( &top, "key", &str ) );
check( !strcmp( str, "\\" ) );
if( !err )
tr_bencFree( &top );
2008-08-19 23:11:35 +00:00
/**
* 1. Feed it JSON-escaped nonascii to the JSON decoder.
* 2. Confirm that the result is UTF-8.
* 3. Feed the same UTF-8 back into the JSON encoder.
* 4. Confirm that the result is JSON-escaped.
* 5. Dogfood that result back into the parser.
* 6. Confirm that the result is UTF-8.
*/
2008-08-19 23:11:35 +00:00
in = "{ \"key\": \"Let\\u00f6lt\\u00e9sek\" }";
err = tr_jsonParse( NULL, in, strlen( in ), &top, NULL );
2008-08-19 23:11:35 +00:00
check( !err );
check( tr_bencIsDict( &top ) );
check( tr_bencDictFindStr( &top, "key", &str ) );
check( !strcmp( str, "Letöltések" ) );
json = tr_bencToStr( &top, TR_FMT_JSON, NULL );
2008-08-19 23:11:35 +00:00
if( !err )
tr_bencFree( &top );
check( json );
check( strstr( json, "\\u00f6" ) != NULL );
check( strstr( json, "\\u00e9" ) != NULL );
err = tr_jsonParse( NULL, json, strlen( json ), &top, NULL );
2008-08-19 23:11:35 +00:00
check( !err );
check( tr_bencIsDict( &top ) );
check( tr_bencDictFindStr( &top, "key", &str ) );
check( !strcmp( str, "Letöltések" ) );
if( !err )
tr_bencFree( &top );
tr_free( json );
return 0;
}
2008-05-11 22:42:53 +00:00
static int
test1( void )
{
const char * in =
"{\n"
" \"headers\": {\n"
" \"type\": \"request\",\n"
" \"tag\": 666\n"
" },\n"
" \"body\": {\n"
" \"name\": \"torrent-info\",\n"
" \"arguments\": {\n"
" \"ids\": [ 7, 10 ]\n"
" }\n"
" }\n"
"}\n";
tr_benc top, *headers, *body, *args, *ids;
2008-05-11 22:42:53 +00:00
const char * str;
int64_t i;
const int err = tr_jsonParse( NULL, in, strlen( in ), &top, NULL );
2008-05-11 22:42:53 +00:00
check( !err );
check( tr_bencIsDict( &top ) );
check( ( headers = tr_bencDictFind( &top, "headers" ) ) );
2008-05-11 22:42:53 +00:00
check( tr_bencIsDict( headers ) );
check( tr_bencDictFindStr( headers, "type", &str ) );
check( !strcmp( str, "request" ) );
check( tr_bencDictFindInt( headers, "tag", &i ) );
check( i == 666 );
check( ( body = tr_bencDictFind( &top, "body" ) ) );
2008-05-11 22:42:53 +00:00
check( tr_bencDictFindStr( body, "name", &str ) );
check( !strcmp( str, "torrent-info" ) );
check( ( args = tr_bencDictFind( body, "arguments" ) ) );
2008-05-11 22:42:53 +00:00
check( tr_bencIsDict( args ) );
check( ( ids = tr_bencDictFind( args, "ids" ) ) );
2008-05-11 22:42:53 +00:00
check( tr_bencIsList( ids ) );
check( tr_bencListSize( ids ) == 2 );
check( tr_bencGetInt( tr_bencListChild( ids, 0 ), &i ) );
check( i == 7 );
check( tr_bencGetInt( tr_bencListChild( ids, 1 ), &i ) );
check( i == 10 );
2008-05-11 22:42:53 +00:00
tr_bencFree( &top );
return 0;
}
static int
test2( void )
{
tr_benc top;
const char * in = " ";
int err;
top.type = 0;
err = tr_jsonParse( NULL, in, strlen( in ), &top, NULL );
check( err );
check( !tr_bencIsDict( &top ) );
return 0;
}
2008-05-11 22:42:53 +00:00
int
main( void )
{
int i;
if( ( i = test_utf8( ) ) )
return i;
if( ( i = test1( ) ) )
2008-05-11 22:42:53 +00:00
return i;
if( ( i = test2( ) ) )
return i;
2008-05-11 22:42:53 +00:00
return 0;
}