2014-02-05 01:54:09 +01:00
|
|
|
/* Copyright (c) 2007-2013, The Tor Project, Inc. */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file test_nodelist.c
|
|
|
|
* \brief Unit tests for nodelist related functions.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
#include "nodelist.h"
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
/** Tese the case when node_get_by_id() returns NULL,
|
|
|
|
* node_get_verbose_nickname_by_id should return the base 16 encoding
|
|
|
|
* of the id.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_nodelist_node_get_verbose_nickname_by_id_null_node(void *arg)
|
|
|
|
{
|
|
|
|
char vname[MAX_VERBOSE_NICKNAME_LEN+1];
|
|
|
|
const char ID[] = "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
|
|
|
|
"\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA";
|
|
|
|
(void) arg;
|
|
|
|
|
|
|
|
/* make sure node_get_by_id returns NULL */
|
|
|
|
test_assert(!node_get_by_id(ID));
|
|
|
|
node_get_verbose_nickname_by_id(ID, vname);
|
|
|
|
test_streq(vname, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA");
|
|
|
|
done:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-05 02:52:48 +01:00
|
|
|
/** For routers without named flag, get_verbose_nickname should return
|
|
|
|
* "Fingerprint~Nickname"
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
test_nodelist_node_get_verbose_nickname_not_named(void *arg)
|
|
|
|
{
|
|
|
|
node_t mock_node;
|
|
|
|
routerstatus_t mock_rs;
|
|
|
|
|
|
|
|
char vname[MAX_VERBOSE_NICKNAME_LEN+1];
|
|
|
|
|
|
|
|
(void) arg;
|
|
|
|
|
|
|
|
memset(&mock_node, 0, sizeof(node_t));
|
|
|
|
memset(&mock_rs, 0, sizeof(routerstatus_t));
|
|
|
|
|
|
|
|
/* verbose nickname should use ~ instead of = for unnamed routers */
|
|
|
|
strncpy(mock_rs.nickname, "TestOR", 6);
|
|
|
|
mock_node.rs = &mock_rs;
|
|
|
|
strncpy(mock_node.identity,
|
|
|
|
"\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"
|
|
|
|
"\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA",
|
|
|
|
DIGEST_LEN);
|
|
|
|
node_get_verbose_nickname(&mock_node, vname);
|
|
|
|
test_streq(vname, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~TestOR");
|
|
|
|
|
|
|
|
done:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-05 01:54:09 +01:00
|
|
|
#define NODE(name, flags) \
|
|
|
|
{ #name, test_nodelist_##name, (flags), NULL, NULL }
|
|
|
|
|
|
|
|
struct testcase_t nodelist_tests[] = {
|
|
|
|
NODE(node_get_verbose_nickname_by_id_null_node, TT_FORK),
|
2014-02-05 02:52:48 +01:00
|
|
|
NODE(node_get_verbose_nickname_not_named, TT_FORK),
|
2014-02-05 01:54:09 +01:00
|
|
|
END_OF_TESTCASES
|
|
|
|
};
|
|
|
|
|