| 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
 | /*-
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2018 The FreeBSD Foundation
 * All rights reserved.
 *
 * This software was developed by Arshan Khanifar <arshankhanifar@gmail.com>
 * under sponsorship from the FreeBSD Foundation.
 */
#include "test.h"
DEFINE_TEST(test_crlf_mtree)
{
	char *p0;
	size_t s;
	int r;
	p0 = NULL;
	char *content = "#mtree\r\n"
		"f type=file uname=\\\r\n"
		"root gname=root mode=0755 content=bar/foo\r\n"
		"g type=file uname=root gname=root mode=0755 content=bar/goo\r\n";
	char *filename = "output.tar";
#if defined(_WIN32) && !defined(__CYGWIN__)
	char *p;
#endif
	/* an absolute path to mtree file */
	char *mtree_file = "/METALOG.mtree";
	char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1);
	strcpy(absolute_path, testworkdir);
	strcat(absolute_path, mtree_file );
	/* Create an archive using an mtree file. */
	assertMakeFile(absolute_path, 0777, content);
	assertMakeDir("bar", 0775);
	assertMakeFile("bar/foo", 0777, "abc");
	assertMakeFile("bar/goo", 0777, "abc");
#if defined(_WIN32) && !defined(__CYGWIN__)
	p = absolute_path;
	while(*p != '\0') {
		if (*p == '/')
			*p = '\\';
		p++;
	}
	r = systemf("%s -cf %s @%s >step1.out 2>step1.err", testprog, filename, absolute_path);
	failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path);
#else
	r = systemf("%s -cf %s \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path);
	failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path);
#endif
	assertEqualInt(r, 0);
	assertEmptyFile("step1.out");
	assertEmptyFile("step1.err");
	/* Do validation of the constructed archive. */
	p0 = slurpfile(&s, "output.tar");
	if (!assert(p0 != NULL))
		goto done;
	if (!assert(s >= 2048))
		goto done;
	assertEqualMem(p0 + 0, "f", 2);
	assertEqualMem(p0 + 512, "abc", 4);
	assertEqualMem(p0 + 1024, "g", 2);
	assertEqualMem(p0 + 1536, "abc", 4);
done:
	free(p0);
	free(absolute_path);
}
 |