003 File Manager
Current Path:
/usr/src/tests/sys/cddl/zfs/tests/acl/nontrivial
usr
/
src
/
tests
/
sys
/
cddl
/
zfs
/
tests
/
acl
/
nontrivial
/
📁
..
📄
Makefile
(1.45 KB)
📄
nontrivial_test.sh
(20.26 KB)
📄
zfs_acl_chmod_001_neg.ksh
(3.48 KB)
📄
zfs_acl_chmod_002_pos.ksh
(2.28 KB)
📄
zfs_acl_chmod_aclmode_001_pos.ksh
(10.95 KB)
📄
zfs_acl_chmod_compact_001_pos.ksh
(6.76 KB)
📄
zfs_acl_chmod_delete_001_pos.ksh
(8.19 KB)
📄
zfs_acl_chmod_inherit_001_pos.ksh
(5.66 KB)
📄
zfs_acl_chmod_inherit_002_pos.ksh
(10.05 KB)
📄
zfs_acl_chmod_inherit_003_pos.ksh
(11.05 KB)
📄
zfs_acl_chmod_inherit_004_pos.ksh
(4.66 KB)
📄
zfs_acl_chmod_owner_001_pos.ksh
(8.73 KB)
📄
zfs_acl_chmod_rwacl_001_pos.ksh
(6.36 KB)
📄
zfs_acl_chmod_rwx_001_pos.ksh
(3.74 KB)
📄
zfs_acl_chmod_rwx_002_pos.ksh
(6.52 KB)
📄
zfs_acl_chmod_rwx_003_pos.ksh
(4.1 KB)
📄
zfs_acl_chmod_rwx_004_pos.ksh
(4.13 KB)
📄
zfs_acl_chmod_xattr_001_pos.ksh
(5.8 KB)
📄
zfs_acl_chmod_xattr_002_pos.ksh
(5.65 KB)
📄
zfs_acl_cp_001_pos.ksh
(3.26 KB)
📄
zfs_acl_cp_002_pos.ksh
(3.54 KB)
📄
zfs_acl_cpio_001_pos.ksh
(3.89 KB)
📄
zfs_acl_cpio_002_pos.ksh
(4.08 KB)
📄
zfs_acl_find_001_pos.ksh
(3.3 KB)
📄
zfs_acl_ls_001_pos.ksh
(3 KB)
📄
zfs_acl_mv_001_pos.ksh
(4.9 KB)
📄
zfs_acl_tar_001_pos.ksh
(3.28 KB)
📄
zfs_acl_tar_002_pos.ksh
(3.78 KB)
Editing: zfs_acl_mv_001_pos.ksh
#!/usr/local/bin/ksh93 -p # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # $FreeBSD$ # # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)zfs_acl_mv_001_pos.ksh 1.2 07/01/09 SMI" # . $STF_SUITE/tests/acl/acl_common.kshlib ################################################################################ # # __stc_assertion_start # # ID: zfs_acl_mv_001_pos # # DESCRIPTION: # Verify that '/bin/mv' supports ZFS ACL # # STRATEGY: # 1. Create file and directory in zfs filesystem # 2. Set special ACE to the file and directory # 3. Copy the file/directory within and across zfs file system # 4. Verify that the ACL of file/directroy is not changed # # TESTABILITY: explicit # # TEST_AUTOMATION_LEVEL: automated # # CODING_STATUS: COMPLETED (2005-10-11) # # __stc_assertion_end # ################################################################################ verify_runnable "both" function cleanup { (( ${#cwd} != 0 )) && cd $cwd [[ -d $TESTDIR ]] && log_must $RM -rf $TESTDIR/* [[ -d $TESTDIR1 ]] && log_must $RM -rf $TESTDIR1 (( ${#mask} != 0 )) && log_must $UMASK $mask } function testing_mv #<flag for file|dir> <file1|dir1> <file2|dir2> { typeset flag=$1 set -A obj $2 $3 typeset -i i=0 typeset orig_acl="" typeset orig_mode="" typeset dst_acl="" typeset dst_mode="" if [[ $flag == "f" ]]; then while (( i < ${#obj[*]} )) do orig_acl="$(get_acl ${obj[i]})" orig_mode="$(get_mode ${obj[i]})" if (( i < 1 )); then log_must $MV ${obj[i]} $dst_file dst_acl=$(get_acl $dst_file) dst_mode=$(get_mode $dst_file) else log_must $MV ${obj[i]} $TESTDIR1 dst_acl=$(get_acl $TESTDIR1/${obj[i]}) dst_mode=$(get_mode $TESTDIR1/${obj[i]}) fi if [[ "$dst_mode" != "$orig_mode" ]] || \ [[ "$dst_acl" != "$orig_acl" ]]; then log_fail "$MV fails to keep the acl for file." fi (( i = i + 1 )) done else while (( i < ${#obj[*]} )) do typeset orig_nested_acl="" typeset orig_nested_mode="" typeset dst_nested_acl="" typeset dst_nested_mode="" orig_acl=$(get_acl ${obj[i]}) orig_mode=$(get_mode ${obj[i]}) orig_nested_acl=$(get_acl ${obj[i]}/$nestedfile) orig_nested_mode=$(get_mode ${obj[i]}/$nestedfile) if (( i < 1 )); then log_must $MV ${obj[i]} $dst_dir dst_acl=$(get_acl $dst_dir) dst_mode=$(get_mode $dst_dir) dst_nested_acl=$(get_acl $dst_dir/$nestedfile) dst_nested_mode=$(get_mode $dst_dir/$nestedfile) else log_must $MV ${obj[i]} $TESTDIR1 dst_acl=$(get_acl $TESTDIR1/${obj[i]}) dst_mode=$(get_mode $TESTDIR1/${obj[i]}) dst_nested_acl=$(get_acl \ $TESTDIR1/${obj[i]}/$nestedfile) dst_nested_mode=$(get_mode \ $TESTDIR1/${obj[i]}/$nestedfile) fi if [[ "$orig_mode" != "$dst_mode" ]] || \ [[ "$orig_acl" != "$dst_acl" ]] || \ [[ "$dst_nested_mode" != "$orig_nested_mode" ]] || \ [[ "$dst_nested_acl" != "$orig_nested_acl" ]]; then log_fail "$MV fails to recursively keep the acl for " \ "directory." fi (( i = i + 1 )) done fi } log_assert "Verify that '$MV' supports ZFS ACLs." log_onexit cleanup test_requires ZFS_ACL spec_ace="everyone@:execute:allow" set -A orig_file "origfile1.${TESTCASE_ID}" "origfile2.${TESTCASE_ID}" set -A orig_dir "origdir1.${TESTCASE_ID}" "origdir2.${TESTCASE_ID}" nestedfile="nestedfile.${TESTCASE_ID}" dst_file=dstfile.${TESTCASE_ID} dst_dir=dstdir.${TESTCASE_ID} cwd=$PWD mask=`$UMASK` $UMASK 0022 # # This assertion should only test 'mv' within the same filesystem # TESTDIR1=$TESTDIR/testdir1${TESTCASE_ID} [[ ! -d $TESTDIR1 ]] && \ log_must $MKDIR -p $TESTDIR1 log_note "Create files and directories and set special ace on them for testing. " cd $TESTDIR typeset -i i=0 while (( i < ${#orig_file[*]} )) do log_must $TOUCH ${orig_file[i]} log_must $CHMOD A0+$spec_ace ${orig_file[i]} (( i = i + 1 )) done i=0 while (( i < ${#orig_dir[*]} )) do log_must $MKDIR ${orig_dir[i]} log_must $TOUCH ${orig_dir[i]}/$nestedfile for obj in ${orig_dir[i]} ${orig_dir[i]}/$nestedfile; do log_must $CHMOD A0+$spec_ace $obj done (( i = i + 1 )) done testing_mv "f" ${orig_file[0]} ${orig_file[1]} testing_mv "d" ${orig_dir[0]} ${orig_dir[1]} log_pass "'$MV' succeeds to support ZFS ACLs."
Upload File
Create Folder