lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
/*
 * Copyright (C)  2014 Intel Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */
 
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
 
#include <shared/strbuf.h>
#include <shared/util.h>
 
#include "testsuite.h"
 
static const char *TEXT =
   "this is a very long test that is longer than the size we initially se in the strbuf";
 
static int test_strbuf_pushchar(const struct test *t)
{
   struct strbuf buf;
   char *result1, *result2;
   const char *c;
 
   strbuf_init(&buf);
 
   for (c = TEXT; *c != '\0'; c++)
       strbuf_pushchar(&buf, *c);
 
   result1 = (char *) strbuf_str(&buf);
   assert_return(result1 == buf.bytes, EXIT_FAILURE);
   assert_return(streq(result1, TEXT), EXIT_FAILURE);
   result1 = strdup(result1);
 
   result2 = strbuf_steal(&buf);
   assert_return(streq(result1, result2), EXIT_FAILURE);
 
   free(result1);
   free(result2);
 
   return 0;
}
DEFINE_TEST(test_strbuf_pushchar,
       .description = "test strbuf_{pushchar, str, steal}");
 
static int test_strbuf_pushchars(const struct test *t)
{
   struct strbuf buf;
   char *result1, *saveptr = NULL, *str, *result2;
   const char *c;
   int lastwordlen = 0;
 
   strbuf_init(&buf);
   str = strdup(TEXT);
   for (c = strtok_r(str, " ", &saveptr); c != NULL;
        c = strtok_r(NULL, " ", &saveptr)) {
       strbuf_pushchars(&buf, c);
       strbuf_pushchar(&buf, ' ');
       lastwordlen = strlen(c);
   }
 
   strbuf_popchar(&buf);
   result1 = (char *) strbuf_str(&buf);
   assert_return(result1 == buf.bytes, EXIT_FAILURE);
   assert_return(streq(result1, TEXT), EXIT_FAILURE);
 
   strbuf_popchars(&buf, lastwordlen);
   result2 = strbuf_steal(&buf);
   assert_return(!streq(TEXT, result2), EXIT_FAILURE);
   assert_return(strncmp(TEXT, result2, strlen(TEXT) - lastwordlen) == 0,
             EXIT_FAILURE);
   assert_return(result2[strlen(TEXT) - lastwordlen] == '\0',
             EXIT_FAILURE);
 
   free(str);
   free(result2);
 
   return 0;
}
DEFINE_TEST(test_strbuf_pushchars,
       .description = "test strbuf_{pushchars, popchar, popchars}");
 
 
TESTSUITE_MAIN();