1248590Smm/*-
2248590Smm * Copyright (c) 2003-2007 Tim Kientzle
3248590Smm * Copyright (c) 2012 Michihiro NAKAJIMA
4248590Smm * All rights reserved.
5248590Smm *
6248590Smm * Redistribution and use in source and binary forms, with or without
7248590Smm * modification, are permitted provided that the following conditions
8248590Smm * are met:
9248590Smm * 1. Redistributions of source code must retain the above copyright
10248590Smm *    notice, this list of conditions and the following disclaimer.
11248590Smm * 2. Redistributions in binary form must reproduce the above copyright
12248590Smm *    notice, this list of conditions and the following disclaimer in the
13248590Smm *    documentation and/or other materials provided with the distribution.
14248590Smm *
15248590Smm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16248590Smm * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17248590Smm * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18248590Smm * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19248590Smm * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20248590Smm * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21248590Smm * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22248590Smm * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23248590Smm * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24248590Smm * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25248590Smm */
26248590Smm#include "test.h"
27248590Smm__FBSDID("$FreeBSD$");
28248590Smm
29248590SmmDEFINE_TEST(test_option_uuencode)
30248590Smm{
31248590Smm	char *p;
32248590Smm	size_t s;
33248590Smm
34248590Smm	/* Create a file. */
35248590Smm	assertMakeFile("f", 0644, "a");
36248590Smm
37248590Smm	/* Archive it with compress compression and uuencode. */
38248590Smm	assertEqualInt(0,
39248590Smm	    systemf("echo f | %s -o -Z --uuencode >archive.out 2>archive.err",
40248590Smm	    testprog));
41248590Smm	/* Check that the archive file has an uuencode signature. */
42248590Smm	p = slurpfile(&s, "archive.out");
43248590Smm	assert(s > 2);
44248590Smm	assertEqualMem(p, "begin 644", 9);
45318482Smm	free(p);
46248590Smm
47248590Smm	/* Archive it with uuencode only. */
48248590Smm	assertEqualInt(0,
49248590Smm	    systemf("echo f | %s -o --uuencode >archive.out 2>archive.err",
50248590Smm	    testprog));
51248590Smm	/* Check that the archive file has an uuencode signature. */
52248590Smm	p = slurpfile(&s, "archive.out");
53248590Smm	assert(s > 2);
54248590Smm	assertEqualMem(p, "begin 644", 9);
55318482Smm	free(p);
56248590Smm}
57