WIP: doesn't register the default yet, no configfiles yet just returning env overrides or defaults
67 lines
1.5 KiB
C
67 lines
1.5 KiB
C
/*
|
|
test-filedescriptors.c
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
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, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
#include "lib/safeclib.h"
|
|
|
|
#include "backend/config.h"
|
|
|
|
#include "tests/test.h"
|
|
|
|
TESTS_BEGIN
|
|
|
|
TEST ("init")
|
|
{
|
|
lumiera_config_init ("./");
|
|
printf ("initialized\n");
|
|
lumiera_config_destroy ();
|
|
printf ("destroyed\n");
|
|
}
|
|
|
|
|
|
TEST ("number_get")
|
|
{
|
|
lumiera_config_init ("./");
|
|
|
|
long long number = 0;
|
|
|
|
if (!lumiera_config_number_get ("test.number.1", &number, "1234567890 # comment"))
|
|
printf ("%lld\n", number);
|
|
else
|
|
printf ("%s\n", lumiera_error ());
|
|
|
|
lumiera_config_destroy ();
|
|
}
|
|
|
|
|
|
TEST ("number_get_nodefault")
|
|
{
|
|
lumiera_config_init ("./");
|
|
|
|
long long number = 0;
|
|
|
|
if (!lumiera_config_number_get ("test.number.1", &number, NULL))
|
|
printf ("%lld\n", number);
|
|
else
|
|
printf ("%s\n", lumiera_error ());
|
|
|
|
lumiera_config_destroy ();
|
|
}
|
|
|
|
TESTS_END
|