testsuite: add tests for strbuf

This commit is contained in:
Lucas De Marchi 2014-10-13 18:42:01 -03:00
parent 15a7ae30b3
commit 48e4d18191
3 changed files with 105 additions and 0 deletions

View File

@ -266,6 +266,7 @@ testsuite_libtestsuite_la_LIBADD = -lrt
TESTSUITE = \ TESTSUITE = \
testsuite/test-hash \ testsuite/test-hash \
testsuite/test-array \ testsuite/test-array \
testsuite/test-strbuf \
testsuite/test-init testsuite/test-testsuite testsuite/test-loaded \ testsuite/test-init testsuite/test-testsuite testsuite/test-loaded \
testsuite/test-modinfo testsuite/test-util testsuite/test-new-module \ testsuite/test-modinfo testsuite/test-util testsuite/test-new-module \
testsuite/test-modprobe testsuite/test-blacklist \ testsuite/test-modprobe testsuite/test-blacklist \
@ -284,6 +285,9 @@ testsuite_test_hash_CPPFLAGS = $(TESTSUITE_CPPFLAGS)
testsuite_test_array_LDADD = $(TESTSUITE_LDADD) testsuite_test_array_LDADD = $(TESTSUITE_LDADD)
testsuite_test_array_CPPFLAGS = $(TESTSUITE_CPPFLAGS) testsuite_test_array_CPPFLAGS = $(TESTSUITE_CPPFLAGS)
testsuite_test_strbuf_LDADD = $(TESTSUITE_LDADD)
testsuite_test_strbuf_CPPFLAGS = $(TESTSUITE_CPPFLAGS)
testsuite_test_init_LDADD = $(TESTSUITE_LDADD) testsuite_test_init_LDADD = $(TESTSUITE_LDADD)
testsuite_test_init_CPPFLAGS = $(TESTSUITE_CPPFLAGS) testsuite_test_init_CPPFLAGS = $(TESTSUITE_CPPFLAGS)
testsuite_test_loaded_LDADD = $(TESTSUITE_LDADD) testsuite_test_loaded_LDADD = $(TESTSUITE_LDADD)

View File

@ -2,6 +2,7 @@
*.la *.la
*.so *.so
/.dirstamp /.dirstamp
/test-strbuf
/test-array /test-array
/test-util /test-util
/test-blacklist /test-blacklist
@ -16,6 +17,8 @@
/test-hash /test-hash
/rootfs /rootfs
/stamp-rootfs /stamp-rootfs
/test-strbuf.log
/test-strbuf.trs
/test-array.log /test-array.log
/test-array.trs /test-array.trs
/test-util.log /test-util.log

98
testsuite/test-strbuf.c Normal file
View File

@ -0,0 +1,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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <shared/strbuf.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(strcmp(result1, TEXT) == 0, EXIT_FAILURE);
result1 = strdup(result1);
result2 = strbuf_steal(&buf);
assert_return(strcmp(result1, result2) == 0, 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(strcmp(result1, TEXT) == 0, EXIT_FAILURE);
strbuf_popchars(&buf, lastwordlen);
result2 = strbuf_steal(&buf);
assert_return(strcmp(TEXT, result2) != 0, 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();