Line data Source code
1 : /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2 : * Copyright (C) 2014 Frediano Ziglio
3 : *
4 : * This library is free software; you can redistribute it and/or
5 : * modify it under the terms of the GNU Library General Public
6 : * License as published by the Free Software Foundation; either
7 : * version 2 of the License, or (at your option) any later version.
8 : *
9 : * This library is distributed in the hope that it will be useful,
10 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 : * Library General Public License for more details.
13 : *
14 : * You should have received a copy of the GNU Library General Public
15 : * License along with this library; if not, write to the
16 : * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 : * Boston, MA 02111-1307, USA.
18 : */
19 :
20 : #undef NDEBUG
21 : #include <config.h>
22 :
23 : #include <stdio.h>
24 :
25 : #if HAVE_STDLIB_H
26 : #include <stdlib.h>
27 : #endif /* HAVE_STDLIB_H */
28 :
29 : #include <assert.h>
30 :
31 : #include <freetds/replacements.h>
32 :
33 : /* If the system supplies these, we're going to simulate the situation
34 : * where it doesn't so we're always testing our own versions.
35 : */
36 : #if HAVE_STRLCPY
37 : size_t tds_strlcpy(char *dest, const char *src, size_t len);
38 : #include "../strlcpy.c"
39 : #endif
40 :
41 : #if HAVE_STRLCAT
42 : size_t tds_strlcat(char *dest, const char *src, size_t len);
43 : #include "../strlcat.c"
44 : #endif
45 :
46 8 : int main(void)
47 : {
48 8 : char *buf = (char *) malloc(10);
49 :
50 : /* test tds_strlcpy */
51 8 : memset(buf, 0xff, 10);
52 8 : assert(tds_strlcpy(buf, "test", 10) == 4);
53 8 : assert(strcmp(buf, "test") == 0);
54 :
55 8 : memset(buf, 0xff, 10);
56 8 : assert(tds_strlcpy(buf, "TESTTEST", 10) == 8);
57 8 : assert(strcmp(buf, "TESTTEST") == 0);
58 :
59 8 : memset(buf, 0xff, 10);
60 8 : assert(tds_strlcpy(buf, "abcdefghi", 10) == 9);
61 8 : assert(strcmp(buf, "abcdefghi") == 0);
62 :
63 8 : memset(buf, 0xff, 10);
64 8 : assert(tds_strlcpy(buf, "1234567890", 10) == 10);
65 8 : assert(strcmp(buf, "123456789") == 0);
66 :
67 8 : memset(buf, 0xff, 10);
68 8 : assert(tds_strlcpy(buf, "xyzabc1234567890", 10) == 16);
69 8 : assert(strcmp(buf, "xyzabc123") == 0);
70 :
71 : /* test tds_strlcat */
72 8 : strcpy(buf, "xyz");
73 8 : assert(tds_strlcat(buf, "test", 10) == 7);
74 8 : assert(strcmp(buf, "xyztest") == 0);
75 :
76 8 : strcpy(buf, "xyz");
77 8 : assert(tds_strlcat(buf, "TESTAB", 10) == 9);
78 8 : assert(strcmp(buf, "xyzTESTAB") == 0);
79 :
80 8 : strcpy(buf, "xyz");
81 8 : assert(tds_strlcat(buf, "TESTabc", 10) == 10);
82 8 : assert(strcmp(buf, "xyzTESTab") == 0);
83 :
84 8 : strcpy(buf, "xyz");
85 8 : assert(tds_strlcat(buf, "123456789012345", 10) == 18);
86 8 : assert(strcmp(buf, "xyz123456") == 0);
87 :
88 8 : strcpy(buf, "123456789");
89 8 : assert(tds_strlcat(buf, "test", 4) == 13);
90 8 : assert(strcmp(buf, "123456789") == 0);
91 :
92 : /* test length == 0 */
93 8 : assert(tds_strlcpy(buf + 10, "test", 0) == 4);
94 :
95 8 : strcpy(buf, "123");
96 8 : assert(tds_strlcat(buf, "456", 0) == 6);
97 8 : assert(strcmp(buf, "123") == 0);
98 :
99 8 : free(buf);
100 : return 0;
101 : }
102 :
|