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
|
/*
* Copyright (c) 2002-2013 Balabit
*
* This library 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 library 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
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "testutils.h"
#include "reloc.h"
CacheResolver *path_resolver;
Cache *path_cache;
static void
assert_install_path(const gchar *template, const gchar *expected)
{
const gchar *expanded_path;
expanded_path = cache_lookup(path_cache, template);
assert_string(expanded_path, expected, "Expanded install path doesn't match expected value");
}
static void
test_absolute_dirs_remain_unchanged(void)
{
assert_install_path("/opt/syslog-ng", "/opt/syslog-ng");
}
static void
test_configure_variables_are_resolved(void)
{
assert_install_path("${prefix}/bin", "/test/bin");
}
static void
test_configure_variables_are_resolved_recursively(void)
{
path_resolver_add_configure_variable(path_resolver, "${foo}", "/foo");
path_resolver_add_configure_variable(path_resolver, "${bar}", "${foo}");
assert_install_path("${foo}/bin", "/foo/bin");
assert_install_path("${bar}/bin", "/foo/bin");
}
static void
test_confiure_variables_are_resolved_in_the_middle(void)
{
assert_install_path("/foo/${prefix}/bar", "/foo//test/bar");
}
static void
init_path_cache(void)
{
path_resolver = path_resolver_new("/test");
path_cache = cache_new(path_resolver);
}
static void
free_path_cache(void)
{
cache_free(path_cache);
}
int
main(int argc, char *argv[])
{
init_path_cache();
test_absolute_dirs_remain_unchanged();
test_configure_variables_are_resolved();
test_configure_variables_are_resolved_recursively();
test_confiure_variables_are_resolved_in_the_middle();
free_path_cache();
return 0;
}
|