6528 need casesensitivity/normalization test cases for zfs-tests
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / casenorm / insensitive_none_lookup.ksh
blob9d52d52b14010e4b5b10ac3e3a83db828bd1b6c4
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=insensitive, normalization=none,
22 # check that lookup succeeds only if (norm=same)
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 (norm=same).
28 # 3. Check that lookup fails if (norm=other).
30 verify_runnable "global"
32 function cleanup
34 destroy_testfs
37 log_onexit cleanup
38 log_assert "CI-not-UN FS: lookup succeeds only if (norm=same)"
40 create_testfs "-o casesensitivity=insensitive -o normalization=none"
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 $name2
46 done
47 for name2 in $NAMES_D; do
48 log_mustnot lookup_file $name2
49 done
50 delete_file $name1
51 done
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 $name2
57 done
58 for name2 in $NAMES_C; do
59 log_mustnot lookup_file $name2
60 done
61 delete_file $name1
62 done
64 destroy_testfs
66 log_pass "CI-not-UN FS: lookup succeeds only if (norm=same)"