mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 16:35:20 +01:00
104 lines
3.6 KiB
C
104 lines
3.6 KiB
C
/*-
|
|
* Copyright (c) 2003-2010 Tim Kientzle
|
|
* Copyright (c) 2017 Martin Matuska
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
#include "test.h"
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
DEFINE_TEST(test_xattr_platform)
|
|
{
|
|
#if !ARCHIVE_XATTR_SUPPORT
|
|
skipping("Extended attributes are not supported on this platform");
|
|
#else /* ARCHIVE_XATTR_SUPPORT */
|
|
struct archive *a;
|
|
struct archive_entry *ae;
|
|
const char *name;
|
|
const void *value;
|
|
void *rvalue;
|
|
size_t size, insize;
|
|
int e, r;
|
|
const char *attrname = "user.libarchive.test";
|
|
const char *readval = "readval";
|
|
const char *writeval = "writeval";
|
|
|
|
assertMakeFile("readtest", 0644, "a");
|
|
|
|
if (!setXattr("readtest", attrname, readval, strlen(readval) + 1)) {
|
|
skipping("Extended attributes are not supported on this "
|
|
"filesystem");
|
|
return;
|
|
}
|
|
|
|
/* Read test */
|
|
assert(NULL != (a = archive_read_disk_new()));
|
|
ae = archive_entry_new();
|
|
assert(ae != NULL);
|
|
archive_entry_set_pathname(ae, "readtest");
|
|
assertEqualInt(ARCHIVE_OK,
|
|
archive_read_disk_entry_from_file(a, ae, -1, NULL));
|
|
e = archive_entry_xattr_reset(ae);
|
|
assert(e > 0);
|
|
|
|
r = 0;
|
|
while (archive_entry_xattr_next(ae, &name, &value,
|
|
&size) == ARCHIVE_OK) {
|
|
if (name != NULL && value != NULL && size > 0 &&
|
|
strcmp(name, attrname) == 0) {
|
|
failure("Attribute value does not match");
|
|
assertEqualString((const char *)value, readval);
|
|
r = 1;
|
|
break;
|
|
}
|
|
}
|
|
failure("Attribute not found: %s", attrname);
|
|
assertEqualInt(r, 1);
|
|
|
|
archive_entry_free(ae);
|
|
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
|
|
|
|
assert(NULL != (a = archive_write_disk_new()));
|
|
archive_write_disk_set_options(a, ARCHIVE_EXTRACT_TIME |
|
|
ARCHIVE_EXTRACT_PERM | ARCHIVE_EXTRACT_XATTR);
|
|
|
|
/* Write test */
|
|
ae = archive_entry_new();
|
|
assert(ae != NULL);
|
|
archive_entry_set_pathname(ae, "writetest");
|
|
archive_entry_set_filetype(ae, AE_IFREG);
|
|
archive_entry_set_perm(ae, 0654);
|
|
archive_entry_set_mtime(ae, 123456, 7890);
|
|
archive_entry_set_size(ae, 0);
|
|
archive_entry_xattr_add_entry(ae, attrname, writeval,
|
|
strlen(writeval) + 1);
|
|
assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
|
|
archive_entry_free(ae);
|
|
assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
|
|
assertEqualInt(ARCHIVE_OK, archive_write_free(a));
|
|
|
|
rvalue = getXattr("writetest", attrname, &insize);
|
|
if (assertEqualInt(insize, strlen(writeval) + 1) != 0)
|
|
assertEqualMem(rvalue, writeval, insize);
|
|
free(rvalue);
|
|
#endif
|
|
}
|