Doxygen will only process files with a @file documentation comment. Up to now, none of our test code has such a comment, preventing the cross-links to unit tests from working. This is unfortunate, since unit tests, and even the code comments there, can be considered as the most useful form of technical documentation. Thus I'll start an initiative to fill in those missing comments automatically
125 lines
2.7 KiB
C
125 lines
2.7 KiB
C
/*
|
|
TEST-FILEHANDLES - test filehandle management
|
|
|
|
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.
|
|
|
|
* *****************************************************/
|
|
|
|
/** @file §§§
|
|
** unit test §§TODO§§
|
|
*/
|
|
|
|
|
|
#include "lib/llist.h"
|
|
#include "lib/tmpbuf.h"
|
|
#include "common/config.h"
|
|
|
|
#include "backend/backend.h"
|
|
#include "backend/filehandlecache.h"
|
|
|
|
#include "lib/test/test.h"
|
|
|
|
TESTS_BEGIN
|
|
|
|
TEST ("basic")
|
|
{
|
|
lumiera_backend_init ();
|
|
LumieraFile file = lumiera_file_new (",tmp_testfile", LUMIERA_FILE_CREATE);
|
|
|
|
/* get the filehandle */
|
|
int fd = lumiera_file_handle_acquire (file);
|
|
|
|
/* we now 'own'it and can use it */
|
|
CHECK (fd > -1);
|
|
printf ("got filehandle #%d\n", fd);
|
|
|
|
/* put it into aging, can't use anymore */
|
|
lumiera_file_handle_release (file);
|
|
|
|
lumiera_file_delete (file);
|
|
lumiera_backend_destroy ();
|
|
lumiera_config_destroy ();
|
|
}
|
|
|
|
|
|
TEST ("more")
|
|
{
|
|
lumiera_backend_init ();
|
|
|
|
LumieraFile files[100];
|
|
int fds[100];
|
|
|
|
/*create 100 files*/
|
|
for (int i=0; i<100; ++i)
|
|
{
|
|
files[i]= lumiera_file_new (lumiera_tmpbuf_snprintf (256, ",tmpdir/testfile%d", i), LUMIERA_FILE_CREATE);
|
|
}
|
|
|
|
/* get the filehandles, this gross overallocates filehandles */
|
|
for (int i=0; i<100; ++i)
|
|
{
|
|
fds[i] = lumiera_file_handle_acquire (files[i]);
|
|
CHECK (fds[i] > -1);
|
|
printf ("got filehandle #%d\n", fds[i]);
|
|
}
|
|
|
|
/* put them into aging, can't use anymore */
|
|
for (int i=0; i<100; ++i)
|
|
{
|
|
lumiera_file_handle_release (files[i]);
|
|
}
|
|
|
|
/* cleanup */
|
|
for (int i=0; i<100; ++i)
|
|
{
|
|
lumiera_file_delete (files[i]);
|
|
}
|
|
|
|
lumiera_backend_destroy ();
|
|
lumiera_config_destroy ();
|
|
}
|
|
|
|
|
|
|
|
TEST (file_locking)
|
|
{
|
|
|
|
lumiera_backend_init ();
|
|
LumieraFile file = lumiera_file_new (",tmp_testfile", LUMIERA_FILE_RECREATE);
|
|
|
|
|
|
LumieraFile locked = lumiera_file_wrlock (file);
|
|
CHECK (locked);
|
|
CHECK (lumiera_file_unlock (locked));
|
|
|
|
lumiera_file_delete (file);
|
|
lumiera_backend_destroy ();
|
|
lumiera_config_destroy ();
|
|
}
|
|
|
|
|
|
PLANNED_TEST (file_locking_blocked)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TESTS_END
|