aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/test_midi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/test_midi.c')
-rw-r--r--src/plugins/test_midi.c92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/plugins/test_midi.c b/src/plugins/test_midi.c
new file mode 100644
index 0000000..ffe9ebf
--- /dev/null
+++ b/src/plugins/test_midi.c
@@ -0,0 +1,92 @@
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_midi.c
22 * @brief testcase for midi plugin
23 * @author Christian Grothoff
24 */
25#include "platform.h"
26#include "test_lib.h"
27
28
29/**
30 * Main function for the MIDI testcase.
31 *
32 * @param argc number of arguments (ignored)
33 * @param argv arguments (ignored)
34 * @return 0 on success
35 */
36int
37main (int argc, char *argv[])
38{
39 struct SolutionData midi_dth_sol[] =
40 {
41 {
42 EXTRACTOR_METATYPE_MIMETYPE,
43 EXTRACTOR_METAFORMAT_UTF8,
44 "text/plain",
45 "audio/midi",
46 strlen ("audio/midi") + 1,
47 0
48 },
49 {
50 EXTRACTOR_METATYPE_COPYRIGHT,
51 EXTRACTOR_METAFORMAT_UTF8,
52 "text/plain",
53 "(c) 2012 d-o-o",
54 strlen ("(c) 2012 d-o-o"),
55 0
56 },
57 {
58 EXTRACTOR_METATYPE_TITLE,
59 EXTRACTOR_METAFORMAT_UTF8,
60 "text/plain",
61 "Tage wie diese T2",
62 strlen ("Tage wie diese T2"),
63 0
64 },
65 {
66 EXTRACTOR_METATYPE_COMMENT,
67 EXTRACTOR_METAFORMAT_UTF8,
68 "text/plain",
69 "XFhd:::Rock:8 Beat:1:m1:-:-:-:-:DD",
70 strlen ("XFhd:::Rock:8 Beat:1:m1:-:-:-:-:DD"),
71 0
72 },
73 {
74 EXTRACTOR_METATYPE_COMMENT,
75 EXTRACTOR_METAFORMAT_UTF8,
76 "text/plain",
77 "XFln:L1:Tage wie diese:von Holst:von Holst:-:Toten Hosen:DD",
78 strlen ("XFln:L1:Tage wie diese:von Holst:von Holst:-:Toten Hosen:DD"),
79 0
80 },
81 { 0, 0, NULL, NULL, 0, -1 }
82 };
83 struct ProblemSet ps[] =
84 {
85 { "testdata/midi_dth.mid",
86 midi_dth_sol },
87 { NULL, NULL }
88 };
89 return ET_main ("midi", ps);
90}
91
92/* end of test_midi.c */