summaryrefslogtreecommitdiffstats
path: root/test/mbyte/mutt_mb_width.c
blob: 0f76394761467370b53a2bd611d2fcf53cf08bfa (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/**
 * @file
 * Test code for mutt_mb_width()
 *
 * @authors
 * Copyright (C) 2019-2023 Richard Russon <rich@flatcap.org>
 *
 * @copyright
 * 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 2 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/>.
 */

#define TEST_NO_MAIN
#include "config.h"
#include "acutest.h"
#include <stddef.h>
#include <stdbool.h>
#include "mutt/lib.h"

struct Test
{
  const char *str;
  int col;
  int len;
};

const char *test_name(const char *str)
{
  if (!str)
    return "[NULL]";
  if (!*str)
    return "[empty]";
  return str;
}

void test_mutt_mb_width(void)
{
  // int mutt_mb_width(const char *str, int col, bool indent);

  {
    const char *str = "\377\377\377\377";

    int len = mutt_mb_width(str, 0, false);
    TEST_CHECK(len == 4);
    TEST_MSG("Expected: %d\n", 4);
    TEST_MSG("Actual:   %d\n", len);
  }

  {
    static const struct Test tests[] = {
      // clang-format off
      { NULL,         0,  0 },
      { "",           0,  0 },
      { "apple",      0,  5 },
      { "Ελληνικά",   0,  8 },
      { "Українська", 0, 10 },
      { "한국어",     0,  6 },
      { "Русский",    0,  7 },
      { "日本語",     0,  6 },
      { "中文",       0,  4 },
      // clang-format on
    };

    for (int i = 0; i < mutt_array_size(tests); i++)
    {
      TEST_CASE(test_name(tests[i].str));
      int len = mutt_mb_width(tests[i].str, tests[i].col, false);
      TEST_CHECK(len == tests[i].len);
      TEST_MSG("Expected: %d\n", tests[i].len);
      TEST_MSG("Actual:   %d\n", len);
    }
  }

  {
    static const struct Test tests[] = {
      // clang-format off
      { "xxx",     0,    3 },
      { "\txxx",   0,   11 },
      { "\txxx",   1,   10 },
      { "\txxx",   2,    9 },
      { "\txxx",   3,    8 },
      { "\txxx",   4,    7 },
      { "\txxx",   5,    6 },
      { "\txxx",   6,    5 },
      { "\txxx",   7,    4 },
      { "\txxx",   8,   11 },
      // clang-format on
    };

    for (int i = 0; i < mutt_array_size(tests); i++)
    {
      TEST_CASE(test_name(tests[i].str));
      int len = mutt_mb_width(tests[i].str, tests[i].col, false);
      TEST_CHECK(len == tests[i].len);
      TEST_MSG("Expected: %d\n", tests[i].len);
      TEST_MSG("Actual:   %d\n", len);
    }
  }

  {
    static const struct Test tests[] = {
      // clang-format off
      { "xxx",       0,     3 },
      { "xxx\nyyy",  0,     7 },
      { "xxx\n yyy", 0,    15 },
      // clang-format on
    };

    for (int i = 0; i < mutt_array_size(tests); i++)
    {
      TEST_CASE(test_name(tests[i].str));
      int len = mutt_mb_width(tests[i].str, tests[i].col, true);
      TEST_CHECK(len == tests[i].len);
      TEST_MSG("Expected: %d\n", tests[i].len);
      TEST_MSG("Actual:   %d\n", len);
    }
  }
}