]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/casenorm/sensitive_formd_lookup.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / casenorm / sensitive_formd_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=sensitive, normalization=formD,
22 # check that lookup only 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 lookup succeeds if (case=same).
28 # 3. Check that lookup fails if (case=other).
29
30 verify_runnable "global"
31
32 function cleanup
33 {
34         destroy_testfs
35 }
36
37 log_onexit cleanup
38 log_assert "CS-UN FS: lookup succeeds if (case=same)"
39
40 create_testfs "-o casesensitivity=sensitive -o normalization=formD"
41
42 for name1 in $NAMES_ALL; do
43         log_must create_file $name1
44         for name2 in $NAMES_ALL; do
45                 if [[ $(get_case $name2) == $(get_case $name1) ]]; then
46                         log_must lookup_file $name2
47                 else
48                         log_mustnot lookup_file $name2
49                 fi
50         done
51         delete_file $name1
52 done
53
54 destroy_testfs
55
56 log_pass "CS-UN FS: lookup succeeds if (case=same)"