summaryrefslogtreecommitdiffstats
path: root/gettext-tools/tests/sentence.c
blob: f262bd3ccde5ebfc8c1f801cb7d058465ff3dc98 (plain)
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
81
82
83
84
85
/* Test of sentence handling.
   Copyright (C) 2015-2016 Free Software Foundation, Inc.
   Written by Daiki Ueno <ueno@gnu.org>, 2015.

   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; either version 3 of the License, or
   (at your option) any later version.

   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/>.  */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "sentence.h"

#include <assert.h>
#include <string.h>

#define PRIMARY "This is a primary sentence"
#define SECONDARY "This is a secondary sentence"

#define SIZEOF(x) (sizeof (x) / sizeof (*x))

struct data
{
  int required_spaces;
  const char *input;

  const char *expected_prefix;
  ucs4_t expected_ending_char;
};

const struct data data[] =
  {
    { 1, PRIMARY, PRIMARY, 0xfffd },
    { 1, PRIMARY ".", PRIMARY, '.' },
    { 1, PRIMARY ".x", PRIMARY ".x", 0xfffd },
    { 2, PRIMARY ".  " SECONDARY, PRIMARY, '.' },
    { 1, PRIMARY ".  " SECONDARY, PRIMARY, '.' },
    { 1, PRIMARY ".' " SECONDARY, PRIMARY, '.' },
    { 3, PRIMARY ".  " SECONDARY, PRIMARY ".  " SECONDARY, 0xfffd },
    { 2, PRIMARY ".'  " SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ".'x  " SECONDARY, PRIMARY ".'x  " SECONDARY, 0xfffd },
    { 2, PRIMARY ".''x  " SECONDARY, PRIMARY ".''x  " SECONDARY, 0xfffd },
    { 2, PRIMARY ".\n" SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ". \n" SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ".\xc2\xa0\n" SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ".\t" SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ".'\t" SECONDARY, PRIMARY, '.' },
    { 2, PRIMARY ".'\n" SECONDARY, PRIMARY, '.' }
  };

static void
check_sentence_end (const struct data *d)
{
  int saved_required_spaces = sentence_end_required_spaces;
  const char *result;
  ucs4_t ending_char;

  sentence_end_required_spaces = d->required_spaces;
  result = sentence_end (d->input, &ending_char);
  sentence_end_required_spaces = saved_required_spaces;

  assert (result == d->input + strlen (d->expected_prefix));
  assert (ending_char == d->expected_ending_char);
}

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

  for (i = 0; i < SIZEOF (data); i++)
    check_sentence_end (&data[i]);

  return 0;
}