blob: 6fc84fd930988ff02108da21df865720498aa480 (
plain)
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
|
#include <apt-pkg/sourcelist.h>
#include <apt-pkg/tagfile.h>
#include "assert.h"
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
char *tempfile = NULL;
int tempfile_fd = -1;
void remove_tmpfile(void)
{
if (tempfile_fd > 0)
close(tempfile_fd);
if (tempfile != NULL) {
unlink(tempfile);
free(tempfile);
}
}
int main(int argc, char *argv[])
{
const char contents[] = ""
"Types: deb\n"
"URIs: http://ftp.debian.org/debian\n"
"Suites: stable\n"
"Sections: main\n"
"Description: short\n"
" long description that can be very long\n"
"\n"
"Types: deb\n"
"URIs: http://ftp.debian.org/debian\n"
"Suites: unstable\n"
"Sections: main non-free\n"
;
FileFd fd;
atexit(remove_tmpfile);
tempfile = strdup("apt-test.XXXXXXXX");
tempfile_fd = mkstemp(tempfile);
/* (Re-)Open (as FileFd), write and seek to start of the temp file */
equals(fd.OpenDescriptor(tempfile_fd, FileFd::ReadWrite), true);
equals(fd.Write(contents, strlen(contents)), true);
equals(fd.Seek(0), true);
pkgSourceList sources(tempfile);
equals(sources.size(), 2);
/* clean up handled by atexit handler, so just return here */
return 0;
}
|