1 | # $Id: tstVDCompact.vd 36637 2011-04-09 12:17:40Z vboxsync $
|
---|
2 | #
|
---|
3 | # Storage: Testcase for compacting disks.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2011 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | # Init I/O RNG for generating random data for writes
|
---|
19 | iorngcreate size=10M mode=manual seed=1234567890
|
---|
20 |
|
---|
21 | # Create zero pattern
|
---|
22 | iopatterncreatefromnumber name=zero size=1M pattern=0
|
---|
23 |
|
---|
24 | print msg=Testing_VDI
|
---|
25 | # Create disk containers, read verification is on.
|
---|
26 | createdisk name=disk verify=yes
|
---|
27 | # Create the disk.
|
---|
28 | create disk=disk mode=base name=tstCompact.vdi type=dynamic backend=VDI size=200M
|
---|
29 | # Fill the disk with random data
|
---|
30 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=100
|
---|
31 | # Read the data to verify it once.
|
---|
32 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
33 | # Fill a part with 0's
|
---|
34 | io disk=disk async=no mode=seq blocksize=64k off=100M-150M size=50M writes=100 pattern=zero
|
---|
35 | # Now compact
|
---|
36 | compact disk=disk image=0
|
---|
37 | # Read again to verify that the content hasn't changed
|
---|
38 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
39 | # Fill everything with 0
|
---|
40 | io disk=disk async=no mode=seq blocksize=64k off=0M-200M size=200M writes=100 pattern=zero
|
---|
41 | # Now compact
|
---|
42 | compact disk=disk image=0
|
---|
43 | # Read again to verify that the content hasn't changed
|
---|
44 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
45 | # Cleanup
|
---|
46 | close disk=disk mode=single delete=yes
|
---|
47 | destroydisk name=disk
|
---|
48 |
|
---|
49 | print msg=Testing_VHD
|
---|
50 | # Create disk containers, read verification is on.
|
---|
51 | createdisk name=disk verify=yes
|
---|
52 | # Create the disk.
|
---|
53 | create disk=disk mode=base name=tstCompact.vhd type=dynamic backend=VHD size=200M
|
---|
54 | # Fill the disk with random data
|
---|
55 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=100
|
---|
56 | # Read the data to verify it once.
|
---|
57 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
58 | # Fill a part with 0's
|
---|
59 | io disk=disk async=no mode=seq blocksize=64k off=100M-150M size=50M writes=100 pattern=zero
|
---|
60 | # Now compact
|
---|
61 | compact disk=disk image=0
|
---|
62 | # Read again to verify that the content hasn't changed
|
---|
63 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
64 | # Fill everything with 0
|
---|
65 | io disk=disk async=no mode=seq blocksize=64k off=0M-200M size=200M writes=100 pattern=zero
|
---|
66 | # Now compact
|
---|
67 | compact disk=disk image=0
|
---|
68 | # Read again to verify that the content hasn't changed
|
---|
69 | io disk=disk async=no mode=seq blocksize=64k off=0-200M size=200M writes=0
|
---|
70 | # Cleanup
|
---|
71 | close disk=disk mode=single delete=yes
|
---|
72 | destroydisk name=disk
|
---|
73 |
|
---|
74 | # Destroy RNG and pattern
|
---|
75 | iopatterndestroy name=zero
|
---|
76 | iorngdestroy
|
---|
77 |
|
---|