6528 need casesensitivity/normalization test cases for zfs-tests
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / casenorm / insensitive_formd_lookup.ksh
blob11824b7af69cccd950e6ca6c293b02f167374e9f
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=formD,
22 # check that lookup succeds using any name form.
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 for any other c/n name form.
29 verify_runnable "global"
31 function cleanup
33 destroy_testfs
36 log_onexit cleanup
37 log_assert "CI-UN FS: lookup succeeds using any name form"
39 create_testfs "-o casesensitivity=insensitive -o normalization=formD"
41 for name1 in $NAMES_ALL ; do
42 log_must create_file $name1
43 for name2 in $NAMES_ALL ; do
44 log_must lookup_file $name2
45 done
46 delete_file $name1
47 done
49 destroy_testfs
51 log_pass "CI-UN FS: lookup succeeds using any name form"