xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/casenorm/insensitive_none_delete.ksh (revision f012ee0c3db17469b492c2cf757226f3d7b1ebbc)
1#! /usr/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=insensitive, normalization=none,
22# check that delete succeeds 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 delete succeeds if (norm=same).
28# 3. Check that file is no longer accessible using any name form.
29# 4. Check that delete fails if (norm=other).
30
31verify_runnable "global"
32
33function cleanup
34{
35	destroy_testfs
36}
37
38log_onexit cleanup
39log_assert "CI-not-UN FS: delete succeeds if (norm=same)"
40
41create_testfs "-o casesensitivity=insensitive -o normalization=none"
42
43for name1 in $NAMES_C ; do
44	for name2 in $NAMES_C ; do
45		log_must create_file $name1
46		log_must delete_file $name2
47		log_mustnot lookup_any
48	done
49	for name2 in $NAMES_D ; do
50		log_must create_file $name1
51		log_mustnot delete_file $name2
52		delete_file $name1
53	done
54done
55
56for name1 in $NAMES_D ; do
57	for name2 in $NAMES_D ; do
58		log_must create_file $name1
59		log_must delete_file $name2
60		log_mustnot lookup_any
61	done
62	for name2 in $NAMES_C ; do
63		log_must create_file $name1
64		log_mustnot delete_file $name2
65		delete_file $name1
66	done
67done
68
69destroy_testfs
70
71log_pass "CI-not-UN FS: delete succeeds if (norm=same)"
72