mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
643da37fd1
This bases File-Ids on the inode numbers again. The whole stuff was added because at that time Apple clients 1. would be upset by inode number reusage and 2. had a client side bug in their fallback implemetentation that assigns File-Ids on the client side in case the server provides File-Ids of 0. After discussion with folks at Apple it should be safe these days to rely on the Mac to generate its own File-Ids and let Samba return 0 File-Ids. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
102 lines
3.7 KiB
C
102 lines
3.7 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
*
|
|
* Unit test for vfs_gpfs module.
|
|
*
|
|
* Copyright (C) Christof Schmitt 2020
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "vfs_gpfs.c"
|
|
#include <cmocka.h>
|
|
|
|
static void test_share_deny_mapping(void **state)
|
|
{
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(FILE_SHARE_NONE),
|
|
GPFS_DENY_READ|GPFS_DENY_WRITE|GPFS_DENY_DELETE);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(FILE_SHARE_READ),
|
|
GPFS_DENY_WRITE|GPFS_DENY_DELETE);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(FILE_SHARE_WRITE),
|
|
GPFS_DENY_READ|GPFS_DENY_DELETE);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(FILE_SHARE_DELETE),
|
|
GPFS_DENY_READ|GPFS_DENY_WRITE);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(
|
|
FILE_SHARE_READ|FILE_SHARE_DELETE),
|
|
GPFS_DENY_WRITE);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(
|
|
FILE_SHARE_WRITE|FILE_SHARE_DELETE),
|
|
GPFS_DENY_READ);
|
|
assert_int_equal(vfs_gpfs_share_access_to_deny(
|
|
FILE_SHARE_READ|FILE_SHARE_WRITE),
|
|
0); /* GPFS limitation, cannot deny only delete. */
|
|
}
|
|
|
|
#ifdef HAVE_KERNEL_OPLOCKS_LINUX
|
|
static void test_gpfs_lease_mapping(void **state)
|
|
{
|
|
assert_int_equal(lease_type_to_gpfs(F_RDLCK), GPFS_LEASE_READ);
|
|
assert_int_equal(lease_type_to_gpfs(F_WRLCK), GPFS_LEASE_WRITE);
|
|
assert_int_equal(lease_type_to_gpfs(F_UNLCK), GPFS_LEASE_NONE);
|
|
}
|
|
#endif /* #ifdef HAVE_KERNEL_OPLOCKS_LINUX */
|
|
|
|
static void test_gpfs_winattrs_to_dosmode(void **state)
|
|
{
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_ARCHIVE),
|
|
FILE_ATTRIBUTE_ARCHIVE);
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_READONLY),
|
|
FILE_ATTRIBUTE_READONLY);
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_HIDDEN),
|
|
FILE_ATTRIBUTE_HIDDEN);
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_OFFLINE),
|
|
FILE_ATTRIBUTE_OFFLINE);
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_SPARSE_FILE),
|
|
FILE_ATTRIBUTE_SPARSE);
|
|
assert_int_equal(vfs_gpfs_winattrs_to_dosmode(GPFS_WINATTR_SYSTEM),
|
|
FILE_ATTRIBUTE_SYSTEM);
|
|
}
|
|
|
|
static void test_dosmode_to_gpfs_winattrs(void **state)
|
|
{
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_ARCHIVE),
|
|
GPFS_WINATTR_ARCHIVE);
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_HIDDEN),
|
|
GPFS_WINATTR_HIDDEN);
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_OFFLINE),
|
|
GPFS_WINATTR_OFFLINE);
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_READONLY),
|
|
GPFS_WINATTR_READONLY);
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_SPARSE),
|
|
GPFS_WINATTR_SPARSE_FILE);
|
|
assert_int_equal(vfs_gpfs_dosmode_to_winattrs(FILE_ATTRIBUTE_SYSTEM),
|
|
GPFS_WINATTR_SYSTEM);
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test(test_share_deny_mapping),
|
|
#ifdef HAVE_KERNEL_OPLOCKS_LINUX
|
|
cmocka_unit_test(test_gpfs_lease_mapping),
|
|
#endif /* #ifdef HAVE_KERNEL_OPLOCKS_LINUX */
|
|
cmocka_unit_test(test_gpfs_winattrs_to_dosmode),
|
|
cmocka_unit_test(test_dosmode_to_gpfs_winattrs),
|
|
};
|
|
|
|
cmocka_set_message_output(CM_OUTPUT_SUBUNIT);
|
|
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
|
}
|