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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* check-script.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_script_db_t *db;
/************************************************************/
/* common functions */
/************************************************************/
void
setup(void)
{
lt_db_set_datadir(TEST_DATADIR);
db = lt_db_get_script();
}
void
teardown(void)
{
lt_script_db_unref(db);
}
/************************************************************/
/* Test cases */
/************************************************************/
TDEF (lt_script_compare) {
lt_script_t *e1, *e2;
e1 = lt_script_db_lookup(db, "Latn");
TFAILNOT(e1 != NULL, "No expected script found: 'Latn'");
TFAILNOT(lt_script_compare(e1, e1), "script that points to the same object should be dealt as same");
e2 = lt_script_db_lookup(db, "Latf");
TFAILNOT(e2 != NULL, "No expected script found: 'Latf'");
TFAILNOT(!lt_script_compare(e1, e2), "script that has different tag should be dealt as different.");
lt_script_unref(e2);
e2 = lt_script_db_lookup(db, "*");
TFAILNOT(e2 != NULL, "No expected script found: '*'");
TFAILNOT(lt_script_compare(e1, e2), "wildcard should be matched with any objects.");
lt_script_unref(e2);
e2 = lt_script_db_lookup(db, "");
TFAILNOT(e2 != NULL, "No expected script found: ''");
TFAILNOT(!lt_script_compare(e1, e2), "script that has different tag should be dealt as different even if it's an empty entry.");
lt_script_unref(e2);
lt_script_unref(e1);
} TEND
/************************************************************/
Suite *
tester_suite(void)
{
Suite *s = suite_create("lt_script_t");
TCase *tc = tcase_create("Basic functionality");
tcase_add_checked_fixture(tc, setup, teardown);
T (lt_script_compare);
suite_add_tcase(s, tc);
return s;
}
|