]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/casenorm/mixed_formd_delete.ksh
Add the ZFS Test Suite
[mirror_zfs.git] / tests / zfs-tests / tests / functional / casenorm / mixed_formd_delete.ksh
1 #!/bin/ksh -p
2 #
3 #
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.
8 #
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.
12 #
13
14 #
15 # Copyright 2015 Nexenta Systems, Inc. All rights reserved.
16 #
17
18 . $STF_SUITE/tests/functional/casenorm/casenorm.kshlib
19
20 # DESCRIPTION:
21 # For the filesystem with casesensitivity=mixed, normalization=formD,
22 # check that delete succeeds if (case=same).
23 #
24 # STRATEGY:
25 # For each c/n name form:
26 # 1. Create file with given c/n name form.
27 # 2. Check that delete succeeds if (case=same).
28 # 3. Check that file is no longer accessible using any name form.
29 # 4. Check that delete fails for all other name forms other than original.
30
31 verify_runnable "global"
32
33 function cleanup
34 {
35 destroy_testfs
36 }
37
38 log_onexit cleanup
39 log_assert "CM-UN FS: delete succeeds if (case=same)"
40
41 create_testfs "-o casesensitivity=mixed -o normalization=formD"
42
43 for name1 in $NAMES_ALL; do
44 typeset -n namen=NAME_$(switch_norm $name1)_$(get_case $name1)
45 for name2 in $NAMES_ALL; do
46 log_must create_file $name1
47 if [[ $name2 == $namen || $name2 == $name1 ]]; then
48 log_must delete_file $name2
49 log_mustnot lookup_any
50 else
51 log_mustnot delete_file $name2
52 fi
53 delete_file $name1
54 done
55 done
56
57 destroy_testfs
58
59 log_pass "CM-UN FS: delete succeeds if (case=same)"