1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
$Id: testpregap.c.in,v 1.2 2008/06/10 00:45:09 pjcreath Exp $
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@gnu.org>
Copyright (C) 2008 Robert W. Fuller <hydrologiccycle@gmail.com>
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 3 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, see <http://www.gnu.org/licenses/>.
*/
/*
Regression test for cdio_get_pregap_lsn()
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <cdio/cdio.h>
#include <cdio/cd_types.h>
#include <cdio/logging.h>
#ifdef HAVE_STDIO_H
#include <stdio.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <string.h>
#ifndef DATA_DIR
#define DATA_DIR "@srcdir@/data"
#endif
static void
log_handler (cdio_log_level_t level, const char message[])
{
switch(level) {
case CDIO_LOG_DEBUG:
case CDIO_LOG_INFO:
return;
default:
printf("cdio %d message: %s\n", level, message);
}
}
typedef struct _pregap_list_t {
const char *image;
track_t track;
lsn_t pregap;
} pregap_list_t;
static pregap_list_t pregapList[] =
{
{ "@abs_top_srcdir@/test/data/t2.toc", 1, 4425 },
{ "@abs_top_srcdir@/test/data/t2.toc", 2, CDIO_INVALID_LSN },
{ "@abs_top_srcdir@/test/data/p1.cue", 1, 0 },
{ "@abs_top_srcdir@/test/data/p1.cue", 2, 150 },
{ "@abs_top_srcdir@/test/data/p1.cue", 3, CDIO_INVALID_LSN },
/* { "p1.nrg", 1, 0 }, Nero did not create the proper pre-gap - bleh */
{ "@abs_top_srcdir@/test/data/p1.nrg", 2, 225 },
{ "@abs_top_srcdir@/test/data/p1.nrg", 3, CDIO_INVALID_LSN }
};
#define NELEMS(v) (sizeof(v) / sizeof(v[0]))
/* gcc -Wall -I../include testpregap.c ../lib/driver/.libs/libcdio.a */
int
main(int argc, const char *argv[])
{
CdIo_t *cdObj;
const char *image;
lsn_t pregap;
int i;
int rc = 0;
cdio_log_set_handler (log_handler);
if (! (cdio_have_driver(DRIVER_NRG) && cdio_have_driver(DRIVER_BINCUE)
&& cdio_have_driver(DRIVER_CDRDAO)) ) {
printf("You don't have enough drivers for this test\n");
exit(77);
}
for (i = 0; i < NELEMS(pregapList); ++i) {
image = pregapList[i].image;
cdObj = cdio_open(image, DRIVER_UNKNOWN);
if (!cdObj) {
printf("unrecognized image: %s\n", image);
return 50;
}
pregap = cdio_get_track_pregap_lsn(cdObj, pregapList[i].track);
if (pregap != pregapList[i].pregap) {
printf("%s should have had pregap of lsn=%d instead of lsn=%d\n",
image, pregapList[i].pregap, pregap);
rc = i + 1;
} else {
printf("%s had expected pregap\n", image);
}
cdio_destroy(cdObj);
}
return rc;
}
|