summaryrefslogtreecommitdiff
path: root/tests/test-xstring-desc.c
blob: 127bb93440ee5b51b9e893f9e98f4fc3c411f869 (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
/* Test of string descriptors.
   Copyright (C) 2023 Free Software Foundation, Inc.

   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 <https://www.gnu.org/licenses/>.  */

/* Written by Bruno Haible <bruno@clisp.org>, 2023.  */

#include <config.h>

#include "xstring-desc.h"

#include <stdlib.h>
#include <string.h>

#include "macros.h"

int
main (void)
{
  string_desc_t s0 = string_desc_new_empty ();
  string_desc_t s1 = string_desc_from_c ("Hello world!");
  string_desc_t s2 = string_desc_new_addr (21, "The\0quick\0brown\0\0fox");

  /* Test xstring_desc_new.  */
  string_desc_t s4 = xstring_desc_new (5);
  string_desc_set_char_at (s4, 0, 'H');
  string_desc_set_char_at (s4, 4, 'o');
  string_desc_set_char_at (s4, 1, 'e');
  string_desc_fill (s4, 2, 4, 'l');
  ASSERT (string_desc_length (s4) == 5);
  ASSERT (string_desc_startswith (s1, s4));

  /* Test xstring_desc_new_filled.  */
  string_desc_t s5 = xstring_desc_new_filled (5, 'l');
  string_desc_set_char_at (s5, 0, 'H');
  string_desc_set_char_at (s5, 4, 'o');
  string_desc_set_char_at (s5, 1, 'e');
  ASSERT (string_desc_length (s5) == 5);
  ASSERT (string_desc_startswith (s1, s5));

  /* Test xstring_desc_copy.  */
  {
    string_desc_t s6 = xstring_desc_copy (s0);
    ASSERT (string_desc_is_empty (s6));
    string_desc_free (s6);
  }
  {
    string_desc_t s6 = xstring_desc_copy (s2);
    ASSERT (string_desc_equals (s6, s2));
    string_desc_free (s6);
  }

  /* Test xstring_desc_concat.  */
  {
    string_desc_t s8 =
      xstring_desc_concat (3, string_desc_new_addr (10, "The\0quick"),
                              string_desc_new_addr (7, "brown\0"),
                              string_desc_new_addr (4, "fox"),
                              string_desc_new_addr (7, "unused"));
    ASSERT (string_desc_equals (s8, s2));
    string_desc_free (s8);
  }

  /* Test xstring_desc_c.  */
  {
    char *ptr = xstring_desc_c (s2);
    ASSERT (ptr != NULL);
    ASSERT (memcmp (ptr, "The\0quick\0brown\0\0fox\0", 22) == 0);
    free (ptr);
  }

  return 0;
}