]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/casenorm/mixed_none_lookup_ci.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / casenorm / mixed_none_lookup_ci.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 CI lookup succeeds only if (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 CI lookup succeeds if (norm=same).
28 # 3. Check that CI lookup fails if (norm=other).
29
30 verify_runnable "global"
31
32 function cleanup
33 {
34         destroy_testfs
35 }
36
37 log_onexit cleanup
38 log_assert "CM-not-UN FS: CI lookup succeeds only if (norm=same)"
39
40 create_testfs "-o casesensitivity=mixed -o normalization=none"
41
42 for name1 in $NAMES_C ; do
43         log_must create_file $name1
44         for name2 in $NAMES_C ; do
45                 log_must lookup_file_ci $name2
46         done
47         for name2 in $NAMES_D; do
48                 log_mustnot lookup_file_ci $name2
49         done
50         delete_file $name1
51 done
52
53 for name1 in $NAMES_D ; do
54         log_must create_file $name1
55         for name2 in $NAMES_D ; do
56                 log_must lookup_file_ci $name2
57         done
58         for name2 in $NAMES_C; do
59                 log_mustnot lookup_file_ci $name2
60         done
61         delete_file $name1
62 done
63
64 destroy_testfs
65
66 log_pass "CM-not-UN FS: CI lookup succeeds only if (norm=same)"