fixes based on valgrind run
[platform/upstream/flac.git] / src / test_grabbag / picture / main.c
1 /* test_picture - Simple tester for cuesheet routines in grabbag
2  * Copyright (C) 2006  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #if HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include <string.h>
24 #include "FLAC/assert.h"
25 #include "share/grabbag.h"
26
27 typedef struct {
28         const char *path;
29         const char *mime_type;
30         const char *description;
31         FLAC__uint32 width;
32         FLAC__uint32 height;
33         FLAC__uint32 depth;
34         FLAC__uint32 colors;
35         FLAC__StreamMetadata_Picture_Type type;
36 } PictureFile;
37
38 PictureFile picturefiles[] = {
39         { "0.gif", "image/gif" , "", 24, 24, 24, 2, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
40         { "1.gif", "image/gif" , "", 12,  8, 24, 256, FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER },
41         { "2.gif", "image/gif" , "", 16, 14, 24, 128, FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER },
42         { "0.jpg", "image/jpeg", "", 30, 20,  8, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
43         { "4.jpg", "image/jpeg", "", 31, 47, 24, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
44         { "0.png", "image/png" , "", 30, 20,  8, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
45         { "1.png", "image/png" , "", 30, 20,  8, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
46         { "2.png", "image/png" , "", 30, 20, 24, 7, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
47         { "3.png", "image/png" , "", 30, 20, 24, 7, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
48         { "4.png", "image/png" , "", 31, 47, 24, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
49         { "5.png", "image/png" , "", 31, 47, 24, 0, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
50         { "6.png", "image/png" , "", 31, 47, 24, 23, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
51         { "7.png", "image/png" , "", 31, 47, 24, 23, FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER },
52         { "8.png", "image/png" , "", 32, 32, 32, 0, 999 }
53 };
54
55 static FLAC__bool debug_ = false;
56
57 static FLAC__bool failed_(const char *msg)
58 {
59     if(msg)
60         printf("FAILED, %s\n", msg);
61     else
62         printf("FAILED\n");
63
64     return false;
65 }
66
67 static FLAC__bool test_one_picture(const char *prefix, const PictureFile *pf, const char *res)
68 {
69         FLAC__StreamMetadata *obj;
70         const char *error;
71         char s[4096];
72 #if defined _MSC_VER || defined __MINGW32__
73         _snprintf(s, sizeof(s)-1, "%u|%s|%s|%s|%s/%s", (unsigned)pf->type, pf->mime_type, pf->description, res, prefix, pf->path);
74 #else
75         snprintf(s, sizeof(s)-1, "%u|%s|%s|%s|%s/%s", (unsigned)pf->type, pf->mime_type, pf->description, res, prefix, pf->path);
76 #endif
77
78         printf("testing grabbag__picture_parse_specification(\"%s\")... ", s);
79         if(0 == (obj = grabbag__picture_parse_specification(s, &error)))
80                 return failed_(error);
81         if(debug_) {
82                 printf("\ntype=%u (%s)\nmime_type=%s\ndescription=%s\nwidth=%u\nheight=%u\ndepth=%u\ncolors=%u\ndata_length=%u\n",
83                         obj->data.picture.type,
84                         obj->data.picture.type < FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED?
85                                 FLAC__StreamMetadata_Picture_TypeString[obj->data.picture.type] : "UNDEFINED",
86                         obj->data.picture.mime_type,
87                         obj->data.picture.description,
88                         obj->data.picture.width,
89                         obj->data.picture.height,
90                         obj->data.picture.depth,
91                         obj->data.picture.colors,
92                         obj->data.picture.data_length
93                 );
94         }
95         if(obj->data.picture.type != pf->type)
96                 return failed_("picture type mismatch");
97         if(strcmp(obj->data.picture.mime_type, pf->mime_type))
98                 return failed_("picture MIME type mismatch");
99         if(strcmp((const char *)obj->data.picture.description, (const char *)pf->description))
100                 return failed_("picture description mismatch");
101         if(obj->data.picture.width != pf->width)
102                 return failed_("picture width mismatch");
103         if(obj->data.picture.height != pf->height)
104                 return failed_("picture height mismatch");
105         if(obj->data.picture.depth != pf->depth)
106                 return failed_("picture depth mismatch");
107         if(obj->data.picture.colors != pf->colors)
108                 return failed_("picture colors mismatch");
109         printf("OK\n");
110         FLAC__metadata_object_delete(obj);
111         return true;
112 }
113
114 static FLAC__bool do_picture(const char *prefix)
115 {
116         FLAC__StreamMetadata *obj;
117         const char *error;
118         size_t i;
119
120     printf("\n+++ grabbag unit test: picture\n\n");
121
122         /* invalid spec: no filename */
123         printf("testing grabbag__picture_parse_specification(\"\")... ");
124         if(0 != (obj = grabbag__picture_parse_specification("", &error)))
125                 return failed_("expected error, got object");
126         printf("OK (failed as expected, error: %s)\n", error);
127
128         /* invalid spec: no filename */
129         printf("testing grabbag__picture_parse_specification(\"||||\")... ");
130         if(0 != (obj = grabbag__picture_parse_specification("||||", &error)))
131                 return failed_("expected error, got object");
132         printf("OK (failed as expected: %s)\n", error);
133
134         /* invalid spec: no filename */
135         printf("testing grabbag__picture_parse_specification(\"|image/gif|||\")... ");
136         if(0 != (obj = grabbag__picture_parse_specification("|image/gif|||", &error)))
137                 return failed_("expected error, got object");
138         printf("OK (failed as expected: %s)\n", error);
139
140         /* invalid spec: bad resolution */
141         printf("testing grabbag__picture_parse_specification(\"|image/gif|desc|320|0.gif\")... ");
142         if(0 != (obj = grabbag__picture_parse_specification("|image/gif|desc|320|0.gif", &error)))
143                 return failed_("expected error, got object");
144         printf("OK (failed as expected: %s)\n", error);
145
146         /* invalid spec: bad resolution */
147         printf("testing grabbag__picture_parse_specification(\"|image/gif|desc|320x240|0.gif\")... ");
148         if(0 != (obj = grabbag__picture_parse_specification("|image/gif|desc|320x240|0.gif", &error)))
149                 return failed_("expected error, got object");
150         printf("OK (failed as expected: %s)\n", error);
151
152         /* invalid spec: no filename */
153         printf("testing grabbag__picture_parse_specification(\"|image/gif|desc|320x240x9|\")... ");
154         if(0 != (obj = grabbag__picture_parse_specification("|image/gif|desc|320x240x9|", &error)))
155                 return failed_("expected error, got object");
156         printf("OK (failed as expected: %s)\n", error);
157
158         /* invalid spec: #colors exceeds color depth */
159         printf("testing grabbag__picture_parse_specification(\"|image/gif|desc|320x240x9/2345|0.gif\")... ");
160         if(0 != (obj = grabbag__picture_parse_specification("|image/gif|desc|320x240x9/2345|0.gif", &error)))
161                 return failed_("expected error, got object");
162         printf("OK (failed as expected: %s)\n", error);
163
164         /* invalid spec: standard icon has to be 32x32 PNG */
165         printf("testing grabbag__picture_parse_specification(\"1|-->|desc|32x24x9|0.gif\")... ");
166         if(0 != (obj = grabbag__picture_parse_specification("1|-->|desc|32x24x9|0.gif", &error)))
167                 return failed_("expected error, got object");
168         printf("OK (failed as expected: %s)\n", error);
169
170         /* invalid spec: need resolution for linked URL */
171         printf("testing grabbag__picture_parse_specification(\"|-->|desc||http://blah.blah.blah/z.gif\")... ");
172         if(0 != (obj = grabbag__picture_parse_specification("|-->|desc||http://blah.blah.blah/z.gif", &error)))
173                 return failed_("expected error, got object");
174         printf("OK (failed as expected: %s)\n", error);
175
176         printf("testing grabbag__picture_parse_specification(\"|-->|desc|320x240x9|http://blah.blah.blah/z.gif\")... ");
177         if(0 == (obj = grabbag__picture_parse_specification("|-->|desc|320x240x9|http://blah.blah.blah/z.gif", &error)))
178                 return failed_(error);
179         printf("OK\n");
180         FLAC__metadata_object_delete(obj);
181
182         /* test automatic parsing of picture files to get resolution/color info */
183         for(i = 0; i < sizeof(picturefiles)/sizeof(picturefiles[0]); i++)
184                 if(!test_one_picture(prefix, picturefiles+i, ""))
185                         return false;
186
187         picturefiles[0].width = 320;
188         picturefiles[0].height = 240;
189         picturefiles[0].depth = 3;
190         picturefiles[0].colors = 2;
191         if(!test_one_picture(prefix, picturefiles+0, "320x240x3/2"))
192                 return false;
193
194         return true;
195 }
196
197 int main(int argc, char *argv[])
198 {
199         const char *usage = "usage: test_pictures path_prefix\n";
200
201         if(argc > 1 && 0 == strcmp(argv[1], "-h")) {
202                 printf(usage);
203                 return 0;
204         }
205
206         if(argc != 2) {
207                 fprintf(stderr, usage);
208                 return 255;
209         }
210
211         return do_picture(argv[1])? 0 : 1;
212 }