tests: added small unit for str functionality

This commit is contained in:
Nikos Mavrogiannopoulos
2015-10-29 23:21:37 +01:00
parent 12208b4d3d
commit 40dfa64166
2 changed files with 77 additions and 1 deletions

73
tests/str-test.c Normal file
View File

@@ -0,0 +1,73 @@
/*
* Copyright (C) 2015 Red Hat, 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 2 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 <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../src/str.h"
#define STR1 "hi there people. How are you?"
int main()
{
str_st str;
str_rep_tab tab[16];
str_init(&str, NULL);
if (str_append_printf(&str, "hi there %s", "people.") != 0) {
fprintf(stderr, "error in %d\n", __LINE__);
exit(1);
}
if (str_append_str(&str, " How are you?") != 0) {
fprintf(stderr, "error in %d\n", __LINE__);
exit(1);
}
if (str.length != sizeof(STR1)-1 ||
strncmp((char*)str.data, STR1, sizeof(STR1)-1) != 0) {
fprintf(stderr, "error in %d\n", __LINE__);
exit(1);
}
/* check replaces */
STR_TAB_SET(0, "%R", "route1");
STR_TAB_SET(1, "%{R}", "route2");
STR_TAB_SET(2, "%{R2}", "route3");
STR_TAB_SET(3, "%{D}", "dev1");
STR_TAB_SET(4, "%D", "dev2");
STR_TAB_SET(5, "%U", "u1");
STR_TAB_TERM(6);
#define STR2 "This is one route1, and one route2, while a route3 was replaced by dev1 and dev2 and dev1. That's all u1."
str_reset(&str);
str_append_str(&str, "This is one %R, and one %{R}, while a %{R2} was replaced by %{D} and %D and %{D}. That's all %U.");
str_replace_str(&str, tab);
if (str.length != sizeof(STR2)-1) {
fprintf(stderr, "error in %d\n", __LINE__);
exit(1);
}
if (strncmp((char*)str.data, STR2, sizeof(STR2)-1) != 0) {
fprintf(stderr, "error in %d\n", __LINE__);
exit(1);
}
return 0;
}