comparison usr/src/test/zfs-tests/tests/functional/nopwrite/nopwrite_varying_compression.ksh @ 13899:0bcf78798346

3311 Want a test framework for arbitrary OS unit tests 3312 Add a testrunner package for OS unit tests 3313 Add a testrunner package to convert ZFS tests from STF Reviewed by: Matt Ahrens <matthew.ahrens@delphix.com> Reviewed by: Will Guyette <will.guyette@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Henrik Mattson <henrik.mattson@delphix.com> Reviewed by: Sonu Pillai <sonu.pillai@delphix.com> Reviewed by: Christopher Siden <chris.siden@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Richard Lowe <richlowe@richlowe.net>
author John Wren Kennedy <john.kennedy@delphix.com>
date Wed, 05 Dec 2012 22:04:50 -0500
parents
children
comparison
equal deleted inserted replaced
13898:7f822b09519b 13899:0bcf78798346
1 #!/usr/bin/ksh
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 (c) 2012 by Delphix. All rights reserved.
16 #
17
18 . $STF_SUITE/include/libtest.shlib
19 . $STF_SUITE/include/properties.shlib
20 . $STF_SUITE/tests/functional/nopwrite/nopwrite.shlib
21
22 #
23 # Description:
24 # Verify that if the checksum on the origin and clone is sha256, any compression
25 # algorithm enables nopwrite.
26 #
27 # Strategy:
28 # 1. Create an origin dataset with compression and sha256 checksum.
29 # 2. Write a 64M file into the origin dataset.
30 # 3. For each of 4 randomly chosen compression types:
31 # 3a. Create a snap and clone (inheriting the checksum property) of the origin.
32 # 3b. Apply the compression property to the clone.
33 # 3c. Write the same 64M of data into the file that exists in the clone.
34 # 3d. Verify that no new space was consumed.
35 #
36
37 verify_runnable "global"
38 origin="$TESTPOOL/$TESTFS"
39 log_onexit cleanup
40
41 function cleanup
42 {
43 datasetexists $origin && log_must $ZFS destroy -R $origin
44 log_must $ZFS create -o mountpoint=$TESTDIR $origin
45 }
46
47 log_assert "nopwrite works with sha256 and any compression algorithm"
48
49 log_must $ZFS set compress=on $origin
50 log_must $ZFS set checksum=sha256 $origin
51 $DD if=/dev/urandom of=$TESTDIR/file bs=1024k count=$MEGS conv=notrunc \
52 >/dev/null 2>&1 || log_fail "initial dd failed."
53
54 # Verify nop_write for 4 random compression algorithms
55 for i in $(get_rand_compress 4); do
56 $ZFS snapshot $origin@a || log_fail "zfs snap failed"
57 log_must $ZFS clone -o compress=$i $origin@a $origin/clone
58 $DD if=/$TESTDIR/file of=/$TESTDIR/clone/file bs=1024k count=$MEGS \
59 conv=notrunc >/dev/null 2>&1 || log_fail "dd failed."
60 log_must verify_nopwrite $origin $origin@a $origin/clone
61 $ZFS destroy -R $origin@a || log_fail "zfs destroy failed"
62 done
63
64 log_pass "nopwrite works with sha256 and any compression algorithm"