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_lzop)
30248590Smm{
31248590Smm	char *p;
32248590Smm	int r;
33248590Smm	size_t s;
34248590Smm
35248590Smm	/* Create a file. */
36248590Smm	assertMakeFile("f", 0644, "a");
37248590Smm
38248590Smm	/* Archive it with lzop compression. */
39248590Smm	r = systemf("%s -cf - --lzop f >archive.out 2>archive.err", testprog);
40248590Smm	p = slurpfile(&s, "archive.err");
41248590Smm	p[s] = '\0';
42248590Smm	if (r != 0) {
43248590Smm		if (!canLzop()) {
44248590Smm			skipping("lzop is not supported on this platform");
45310569Sngie			goto done;
46248590Smm		}
47248590Smm		failure("--lzop option is broken");
48248590Smm		assertEqualInt(r, 0);
49310569Sngie		goto done;
50248590Smm	}
51310569Sngie	free(p);
52248590Smm	/* Check that the archive file has an lzma signature. */
53248590Smm	p = slurpfile(&s, "archive.out");
54248590Smm	assert(s > 2);
55248590Smm	assertEqualMem(p, "\x89\x4c\x5a\x4f\x00\x0d\x0a\x1a\x0a", 9);
56310569Sngiedone:
57310569Sngie	free(p);
58248590Smm}
59