Fix description
[vlc.git] / src / test / block.c
blobf594d06d72b8b5ef4a562e2ddc4721a795616e9c
1 /*****************************************************************************
2 * block.c: Test for block_t stuff
3 *****************************************************************************
4 * Copyright (C) 2008 RĂ©mi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
25 #include <stdio.h>
26 #include <string.h>
27 #undef NDEBUG
28 #include <assert.h>
30 #include <vlc_common.h>
31 #include <vlc_block.h>
33 static const char text[] =
34 "This is a test!\n"
35 "This file can be deleted safely!\n";
37 static void test_block_File (void)
39 FILE *stream;
40 int res;
42 stream = fopen ("testfile.txt", "wb+");
43 assert (stream != NULL);
45 res = fputs (text, stream);
46 assert (res != EOF);
47 res = fflush (stream);
48 assert (res != EOF);
50 block_t *block = block_File (fileno (stream));
51 fclose (stream);
53 assert (block != NULL);
54 assert (block->i_buffer == strlen (text));
55 assert (!memcmp (block->p_buffer, text, block->i_buffer));
56 block_Release (block);
58 remove ("testfile.txt");
61 int main (void)
63 test_block_File ();
64 return 0;