]> git.proxmox.com Git - mirror_zfs-debian.git/blob - tests/zfs-tests/tests/functional/casenorm/mixed_none_lookup.ksh
New upstream version 0.7.2
[mirror_zfs-debian.git] / tests / zfs-tests / tests / functional / casenorm / mixed_none_lookup.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=none,
22 # check that lookup succeeds only if (case=same and norm=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 lookup fails for all other c/n name forms.
28
29 verify_runnable "global"
30
31 function cleanup
32 {
33 destroy_testfs
34 }
35
36 log_onexit cleanup
37 log_assert "CM-not-UN FS: lookup succeeds only if using exact name form"
38
39 create_testfs "-o casesensitivity=mixed -o normalization=none"
40
41 for name1 in $NAMES_ALL; do
42 for name2 in $NAMES_ALL; do
43 log_must create_file $name1
44 if [[ $name2 != $name1 ]]; then
45 log_mustnot lookup_file $name2
46 fi
47 delete_file $name1
48 done
49 done
50
51 destroy_testfs
52
53 log_pass "CM-not-UN FS: lookup succeeds only if using exact name form"