6528 need casesensitivity/normalization test cases for zfs-tests
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / casenorm / sensitive_none_delete.ksh
bloba6a145e1007010aae049f377f3537065743de6e7
1 #! /usr/bin/ksh -p
4 # This file and its contents are supplied under the terms of the
5 # Common Development and Distribution License ("CDDL"), version 1.0.
6 # You may only use this file in accordance with the terms of version
7 # 1.0 of the CDDL.
9 # A full copy of the text of the CDDL should have accompanied this
10 # source. A copy of the CDDL is also available via the Internet at
11 # http://www.illumos.org/license/CDDL.
15 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
18 . $STF_SUITE/tests/functional/casenorm/casenorm.kshlib
20 # DESCRIPTION:
21 # For the filesystem with casesensitivity=sensitive, normalization=none,
22 # check that delete succeeds only if (case=same and norm=same).
24 # STRATEGY:
25 # For each c/n name form:
26 # 1. Create file in given c/n name form.
27 # 2. Check that delete fails for all other name forms.
28 # 3. Check that delete succeeds if (case=same and norm=same).
29 # 4. Check that file is no longer accessible by any name form.
31 verify_runnable "global"
33 function cleanup
35 destroy_testfs
38 log_onexit cleanup
39 log_assert "CS-not-UN FS: delete succeeds only if using exact name form"
41 create_testfs "-o casesensitivity=sensitive -o normalization=none"
43 for name1 in $NAMES_ALL ; do
44 log_must create_file $name1
45 for name2 in $NAMES_ALL ; do
46 if [[ $name2 != $name1 ]] ; then
47 log_mustnot delete_file $name2
49 done
50 delete_file $name1
51 log_mustnot lookup_any
52 done
54 destroy_testfs
56 log_pass "CS-not-UN FS: delete succeeds only if using exact name form"