aboutsummaryrefslogtreecommitdiffstats
path: root/tests/empathy-parser-test.c
blob: dce91c72260ee5ca28dc31f50e994509fbf211d4 (plain) (blame)
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "test-helper.h"

#define DEBUG_FLAG EMPATHY_DEBUG_TESTS
#include <libempathy/empathy-debug.h>

#include <libempathy-gtk/empathy-ui-utils.h>

static void
test_replace_link (GString *string,
                   const gchar *text,
                   gssize len,
                   gpointer user_data)
{
  g_string_append_c (string, '[');
  g_string_append_len (string, text, len);
  g_string_append_c (string, ']');
}

static void
test_replace_smiley (GString *string,
                     const gchar *text,
                     gssize len,
                     gpointer user_data)
{
  g_string_append_c (string, '<');
  g_string_append_len (string, text, len);
  g_string_append_c (string, '>');
}

static void
test_parsers (void)
{
  guint i;
  gchar *tests[] =
    {
      "http://foo.com", "[http://foo.com]",
      ":)http://foo.com :D", "<:)>[http://foo.com] <:D>",
      NULL, NULL
    };
  EmpathyStringParser parsers[] =
    {
      {empathy_string_match_link, test_replace_link},
      {empathy_string_match_smiley, test_replace_smiley},
      {NULL, NULL}
    };

  DEBUG ("Started");
  for (i = 0; tests[i] != NULL; i += 2)
    {
      GString *string;

      string = g_string_new (NULL);
      empathy_string_parser_substr (string, tests[i], -1, parsers);

      DEBUG ("'%s' => '%s'", tests[i], string->str);
      g_assert_cmpstr (tests[i + 1], ==, string->str);

      g_string_free (string, TRUE);
    }
}

int
main (int argc,
    char **argv)
{
  int result;

  test_init (argc, argv);

  g_test_add_func ("/parsers", test_parsers);

  result = g_test_run ();
  test_deinit ();

  return result;
}