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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include "libeconf_ext.h"
/* Test case:
* An string array has been defined mutitple times in a file with the
* same ID. If the environment JOIN_SAME_ENTRIES is set, these
* multiple entries are packed into an single one.
*/
static int
print_error_get (const char *getgroup, const char *key, econf_err error)
{
fprintf (stderr, "ERROR: tried to get '%s' from '%s': %s\n",
key, getgroup, econf_errString(error));
return 1;
}
static bool
check_StringArray (econf_file *key_file, const char *group,
const char *key, const char *const *values,
const size_t value_lines,
const char *comment_before_key,
const char *comment_after_value)
{
econf_err error;
econf_ext_value *ext_val;
if ((error = econf_getExtValue(key_file, group, key, &ext_val)))
{
print_error_get (group, key, error);
return false;
}
size_t i=0;
while (ext_val->values[i] != 0)
{
if ((ext_val->values[i] == NULL && values[i] != NULL) ||
(ext_val->values[i] != NULL && values[i] == NULL) ||
strcmp(ext_val->values[i], values[i]))
{
fprintf (stderr, "ERROR: %s:Expected String:\n'%s'\n, Got:\n'%s'\n",
key, values[i], ext_val->values[i]);
econf_freeExtValue(ext_val);
return false;
}
i++;
}
if (i != value_lines)
{
fprintf (stderr,
"ERROR: String array does not have expected length: %d exp.: %d\n",
(int) i, (int) value_lines);
econf_freeExtValue(ext_val);
return false;
}
if ((ext_val->comment_before_key != NULL && comment_before_key == NULL) ||
(ext_val->comment_before_key == NULL && comment_before_key != NULL) ||
(ext_val->comment_before_key != NULL && comment_before_key != NULL &&
strcmp(ext_val->comment_before_key, comment_before_key) != 0))
{
fprintf (stderr, "comment_before_key ERROR: %s\nExpected String:\n'%s'\nGot:\n'%s'\n",
key, comment_before_key, ext_val->comment_before_key);
econf_freeExtValue(ext_val);
return false;
}
if ((ext_val->comment_after_value != NULL && comment_after_value == NULL) ||
(ext_val->comment_after_value == NULL && comment_after_value != NULL) ||
(ext_val->comment_after_value != NULL && comment_after_value != NULL &&
strcmp(ext_val->comment_after_value, comment_after_value) != 0))
{
fprintf (stderr, "comment_after_value ERROR: %s\nExpected String:\n'%s'\nGot:\n'%s'\n",
key, comment_after_value, ext_val->comment_after_value);
econf_freeExtValue(ext_val);
return false;
}
econf_freeExtValue(ext_val);
return true;
}
int
main(void)
{
econf_file *key_file = NULL;
econf_err error;
int retval = 0;
static const struct {
const char *const key;
const char *const val[5];
const size_t lines;
const char *const comment_before_key;
const char *const comment_after_value;
} tests[] = {
{ "append_option", {"one", "two", "three", "four"}, 4,
" header of first entry\n header of second entry",
"\n one\n two\nthree\nfour"},
{ "reset_option", {""}, 1,
" header of init reset option\n header of reset option",
NULL},
{ "reinit_option", {"three", "four"}, 2,
" header of reinit option\n header of last reinit option",
"three\nfour"}
};
/* double entries will be joined together */
if ((error = econf_newKeyFile_with_options(&key_file, "JOIN_SAME_ENTRIES=1")))
{
fprintf (stderr, "ERROR: couldn't create new file: %s\n",
econf_errString(error));
return 1;
}
error = econf_readConfig (&key_file,
NULL,
TESTSDIR"tst-append-string",
"input", "conf",
"=", "#");
if (error)
{
fprintf (stderr, "ERROR: couldn't read configuration file: %s\n", econf_errString(error));
retval = 1;
}
for (size_t i = 0; i < sizeof(tests)/sizeof(*tests); i++)
{
if (!check_StringArray(key_file, "main", tests[i].key, tests[i].val, tests[i].lines,
tests[i].comment_before_key ,tests[i].comment_after_value))
retval = 1;
}
econf_free(key_file);
return retval;
}
|