1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* check-region.c
* Copyright (C) 2011-2012 Akira TAGOH
*
* Authors:
* Akira TAGOH <akira@tagoh.org>
*
* You may distribute under the terms of either the GNU
* Lesser General Public License or the Mozilla Public
* License, as specified in the README file.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <liblangtag/langtag.h>
#include "main.h"
static lt_region_db_t *db;
/************************************************************/
/* common functions */
/************************************************************/
void
setup(void)
{
lt_db_set_datadir(TEST_DATADIR);
db = lt_db_get_region();
}
void
teardown(void)
{
lt_region_db_unref(db);
}
/************************************************************/
/* Test cases */
/************************************************************/
TDEF (lt_region_compare) {
lt_region_t *e1, *e2;
e1 = lt_region_db_lookup(db, "JP");
TFAILNOT(e1 != NULL, "No expected region found: 'JP'");
TFAILNOT(lt_region_compare(e1, e1), "region that points to the same object should be dealt as same");
e2 = lt_region_db_lookup(db, "jp");
TFAILNOT(e2 != NULL, "No expected region found: 'jp'");
TFAILNOT(lt_region_compare(e1, e2), "even if looking up with different case, it should be same.");
lt_region_unref(e2);
e2 = lt_region_db_lookup(db, "CN");
TFAILNOT(e2 != NULL, "No expected region found: 'CN'");
TFAILNOT(!lt_region_compare(e1, e2), "region that has different tag should be dealt as different.");
lt_region_unref(e2);
e2 = lt_region_db_lookup(db, "*");
TFAILNOT(e2 != NULL, "No expected region found: '*'");
TFAILNOT(lt_region_compare(e1, e2), "wildcard should be matched with any objects.");
lt_region_unref(e2);
e2 = lt_region_db_lookup(db, "");
TFAILNOT(e2 != NULL, "No expected region found: ''");
TFAILNOT(!lt_region_compare(e1, e2), "region that has different tag should be dealt as different even if it's an empty entry.");
lt_region_unref(e2);
lt_region_unref(e1);
} TEND
/************************************************************/
Suite *
tester_suite(void)
{
Suite *s = suite_create("lt_region_t");
TCase *tc = tcase_create("Basic functionality");
tcase_add_checked_fixture(tc, setup, teardown);
T (lt_region_compare);
suite_add_tcase(s, tc);
return s;
}
|