1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Gearmand client and server library.
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include "libmemcached/common.h"
39 #include "libmemcached/error.h"
40 #include "tests/string.h"
42 test_return_t
string_static_null(memcached_st
*memc
)
44 memcached_string_st string
;
45 memcached_string_st
*string_ptr
;
47 string_ptr
= memcached_string_create(memc
, &string
, 0);
48 test_true(string
.options
.is_initialized
== true);
49 test_true(string_ptr
);
51 /* The following two better be the same! */
52 test_true(memcached_is_allocated(string_ptr
) == false);
53 test_true(memcached_is_allocated(&string
) == false);
54 test_true(&string
== string_ptr
);
56 test_true(string
.options
.is_initialized
== true);
57 test_true(memcached_is_initialized(&string
) == true);
58 memcached_string_free(&string
);
59 test_true(memcached_is_initialized(&string
) == false);
64 test_return_t
string_alloc_null(memcached_st
*memc
)
66 memcached_string_st
*string
;
68 string
= memcached_string_create(memc
, NULL
, 0);
70 test_true(memcached_is_allocated(string
) == true);
71 test_true(memcached_is_initialized(string
) == true);
72 memcached_string_free(string
);
77 test_return_t
string_alloc_with_size(memcached_st
*memc
)
79 memcached_string_st
*string
;
81 string
= memcached_string_create(memc
, NULL
, 1024);
83 test_true(memcached_is_allocated(string
) == true);
84 test_true(memcached_is_initialized(string
) == true);
85 memcached_string_free(string
);
90 test_return_t
string_alloc_with_size_toobig(memcached_st
*memc
)
92 memcached_string_st
*string
;
94 string
= memcached_string_create(memc
, NULL
, SIZE_MAX
);
95 test_true(string
== NULL
);
100 test_return_t
string_alloc_append(memcached_st
*memc
)
103 char buffer
[SMALL_STRING_LEN
];
104 memcached_string_st
*string
;
107 memset(buffer
, 6, SMALL_STRING_LEN
);
109 string
= memcached_string_create(memc
, NULL
, 100);
111 test_true(memcached_is_allocated(string
) == true);
112 test_true(memcached_is_initialized(string
) == true);
114 for (x
= 0; x
< 1024; x
++)
116 memcached_return_t rc
;
117 rc
= memcached_string_append(string
, buffer
, SMALL_STRING_LEN
);
118 test_true(rc
== MEMCACHED_SUCCESS
);
120 test_true(memcached_is_allocated(string
) == true);
121 memcached_string_free(string
);
126 test_return_t
string_alloc_append_toobig(memcached_st
*memc
)
128 memcached_return_t rc
;
129 char buffer
[SMALL_STRING_LEN
];
130 memcached_string_st
*string
;
133 memset(buffer
, 6, sizeof(buffer
));
135 string
= memcached_string_create(memc
, NULL
, 100);
137 test_true(memcached_is_allocated(string
) == true);
138 test_true(memcached_is_initialized(string
) == true);
140 for (unsigned int x
= 0; x
< 1024; x
++)
142 rc
= memcached_string_append(string
, buffer
, SMALL_STRING_LEN
);
143 test_true(rc
== MEMCACHED_SUCCESS
);
145 rc
= memcached_string_append(string
, buffer
, SIZE_MAX
);
146 test_true(rc
== MEMCACHED_MEMORY_ALLOCATION_FAILURE
);
147 test_true(memcached_is_allocated(string
) == true);
148 memcached_string_free(string
);
153 test_return_t
string_alloc_append_multiple(memcached_st
*memc
)
155 memcached_string_st
*error_string
= memcached_string_create(memc
, NULL
, 1024);
156 memcached_string_append(error_string
, memcached_string_with_size("Error occured while parsing: "));
157 memcached_string_append(error_string
, memcached_string_make_from_cstr("jog the strlen() method"));
158 memcached_string_append(error_string
, memcached_string_with_size(" ("));
160 memcached_string_append(error_string
, memcached_string_make_from_cstr(memcached_strerror(NULL
, MEMCACHED_SUCCESS
)));
161 memcached_string_append(error_string
, memcached_string_with_size(")"));
163 memcached_set_error_string(memc
, MEMCACHED_FAILURE
, memcached_string_value(error_string
), memcached_string_length(error_string
));
165 memcached_string_free(error_string
);