aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/test_jpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/test_jpeg.c')
-rw-r--r--src/plugins/test_jpeg.c77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/plugins/test_jpeg.c b/src/plugins/test_jpeg.c
new file mode 100644
index 0000000..fd78fed
--- /dev/null
+++ b/src/plugins/test_jpeg.c
@@ -0,0 +1,77 @@
1/*
2 This file is part of libextractor.
3 (C) 2012 Vidyut Samanta and Christian Grothoff
4
5 libextractor is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 libextractor is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with libextractor; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20/**
21 * @file plugins/test_jpeg.c
22 * @brief testcase for ogg plugin
23 * @author Christian Grothoff
24 */
25#include "platform.h"
26#include "test_lib.h"
27
28
29
30/**
31 * Main function for the JPEG testcase.
32 *
33 * @param argc number of arguments (ignored)
34 * @param argv arguments (ignored)
35 * @return 0 on success
36 */
37int
38main (int argc, char *argv[])
39{
40 struct SolutionData jpeg_image_sol[] =
41 {
42 {
43 EXTRACTOR_METATYPE_MIMETYPE,
44 EXTRACTOR_METAFORMAT_UTF8,
45 "text/plain",
46 "image/jpeg",
47 strlen ("image/jpeg") + 1,
48 0
49 },
50 {
51 EXTRACTOR_METATYPE_IMAGE_DIMENSIONS,
52 EXTRACTOR_METAFORMAT_UTF8,
53 "text/plain",
54 "3x3",
55 strlen ("3x3") + 1,
56 0
57 },
58 {
59 EXTRACTOR_METATYPE_COMMENT,
60 EXTRACTOR_METAFORMAT_C_STRING,
61 "text/plain",
62 "(C) 2001 by Christian Grothoff, using gimp 1.2 1",
63 strlen ("(C) 2001 by Christian Grothoff, using gimp 1.2 1"),
64 0
65 },
66 { 0, 0, NULL, NULL, 0, -1 }
67 };
68 struct ProblemSet ps[] =
69 {
70 { "testdata/jpeg_image.jpg",
71 jpeg_image_sol },
72 { NULL, NULL }
73 };
74 return ET_main ("jpeg", ps);
75}
76
77/* end of test_jpeg.c */