1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-04 05:56:02 +00:00
transmission/libtransmission/quark-test.c
Mike Gelfand dadffa2c0f Align type qualifiers to the right (code style)
This way all the qualifiers (`const`, `volatile`, `mutable`) are grouped
together, e.g. `T const* const x` vs. `const T* const x`. Also helps reading
types right-to-left, e.g. "constant pointer to constant T" vs. "constant
pointer to T which is constant".
2017-04-20 19:53:20 +03:00

49 lines
1.1 KiB
C

/*
* This file Copyright (C) 2013-2014 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#include <string.h> /* strlen() */
#include "transmission.h"
#include "quark.h"
#include "libtransmission-test.h"
static int test_static_quarks(void)
{
int i;
for (i = 0; i < TR_N_KEYS; i++)
{
tr_quark q;
size_t len;
char const* str;
str = tr_quark_get_string((tr_quark)i, &len);
check_uint_eq(strlen(str), len);
check(tr_quark_lookup(str, len, &q));
check_int_eq(i, (int)q);
}
for (i = 0; i + 1 < TR_N_KEYS; i++)
{
size_t len1, len2;
char const* str1, * str2;
str1 = tr_quark_get_string((tr_quark)i, &len1);
str2 = tr_quark_get_string((tr_quark)(i + 1), &len2);
check(strcmp(str1, str2) < 0);
}
tr_quark const q = tr_quark_new(NULL, TR_BAD_SIZE);
check_int_eq(TR_KEY_NONE, (int)q);
check_streq("", tr_quark_get_string(q, NULL));
return 0;
}
MAIN_SINGLE_TEST(test_static_quarks)