view src/tests/tuple_formatter_test.c @ 4847:d13bf8d71b99

Updated Catalan translation from Ernest Adrogu¸«± (bug #25)
author John Lindgren <john.lindgren@tds.net>
date Sun, 12 Apr 2009 19:58:12 -0400
parents 07ed916b7176
children
line wrap: on
line source

/*
 * Audacious
 * Copyright (c) 2007 William Pitcock
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; under version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses>.
 *
 * The Audacious team does not consider modular code linking to
 * Audacious or using our public API to be a derived work.
 */

#include <glib.h>
#include <mowgli.h>

#include "tuple.h"
#include "tuple_formatter.h"

int
test_run(int argc, const char *argv[])
{
    Tuple *tuple;
    gchar *tstr;

    tuple = tuple_new();
    tuple_associate_string(tuple, "splork", "moo");
    tuple_associate_int(tuple, "splorkerz", 42);

    tstr = tuple_formatter_process_string(tuple, "${splork} ${splorkerz}");
    if (g_ascii_strcasecmp(tstr, "moo 42"))
    {
        g_print("fail 1: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?fizz:${splork}} ${splorkerz}");
    if (g_ascii_strcasecmp(tstr, " 42"))
    {
        g_print("fail 2: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?splork:${splork}} ${splorkerz}");
    if (g_ascii_strcasecmp(tstr, "moo 42"))
    {
        g_print("fail 3: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${==splork,splork:fields given matched}");
    if (g_ascii_strcasecmp(tstr, "fields given matched"))
    {
        g_print("fail 4: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${==splork,splork:${splork}}");
    if (g_ascii_strcasecmp(tstr, "moo"))
    {
        g_print("fail 5: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${!=splork,splorkerz:fields did not match}");
    if (g_ascii_strcasecmp(tstr, "fields did not match"))
    {
        g_print("fail 6: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${!=splork,splorkerz:${splorkerz}}");
    if (g_ascii_strcasecmp(tstr, "42"))
    {
        g_print("fail 7: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${!=splork,splork:${splorkerz}}");
    if (g_ascii_strcasecmp(tstr, ""))
    {
        g_print("fail 8: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${(empty)?splorky:${splorkerz}}");
    if (g_ascii_strcasecmp(tstr, "42"))
    {
        g_print("fail 9: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?splork:${splork} - }${splork}");
    if (g_ascii_strcasecmp(tstr, "moo - moo"))
    {
        g_print("fail 10: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?splork:${?splork:${splork}} - }${splork}");
    if (g_ascii_strcasecmp(tstr, "moo - moo"))
    {
        g_print("fail 11: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?splork:${splork} - }${?splork:${splork} - }${splork}");
    if (g_ascii_strcasecmp(tstr, "moo - moo - moo"))
    {
        g_print("fail 12: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tuple_associate_string(tuple, "sheep", "");

    tstr = tuple_formatter_process_string(tuple, "${?splork:${splork} - }${?sheep:${sheep} - }${splork}");
    if (g_ascii_strcasecmp(tstr, "moo -  - moo"))
    {
        g_print("fail 13: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${?splork:${splork} - }${?sheep:${sheep} - }${splork}");
    if (g_ascii_strcasecmp(tstr, "moo -  - moo"))
    {
        g_print("fail 14: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${==splork,\"moo\":const text field matches}");
    if (g_ascii_strcasecmp(tstr, "const text field matches"))
    {
        g_print("fail 15: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${==\"moo\",\"moo\":const text fields match}");
    if (g_ascii_strcasecmp(tstr, "const text fields match"))
    {
        g_print("fail 16: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${!=splork,\"muu\":const text field doesn't match}");
    if (g_ascii_strcasecmp(tstr, "const text field doesn't match"))
    {
        g_print("fail 17: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    tstr = tuple_formatter_process_string(tuple, "${!=\"moo\",\"muu\":const text fields do not match}");
    if (g_ascii_strcasecmp(tstr, "const text fields do not match"))
    {
        g_print("fail 18: '%s'\n", tstr);
        return EXIT_FAILURE;
    }
    g_free(tstr);

    mowgli_object_unref(tuple);

    return EXIT_SUCCESS;
}