-
Notifications
You must be signed in to change notification settings - Fork 0
/
single_large_file_test.sh
executable file
·114 lines (91 loc) · 1.75 KB
/
single_large_file_test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/bin/bash
# This is a simple script measuring performance for handling one large file (reading from it, writing to it, deleting it).
# It is independent from other performance scripts in this repository.
set -ev
CRYFS=cryfs
export CRYFS_FRONTEND=noninteractive
DD_PARAMS="bs=10M count=400"
ROOTDIR=/mnt
BASEDIR=${ROOTDIR}/basedir
MOUNTDIR=/tmp/mountdir
FILE=${MOUNTDIR}/file
function _unmount {
sync
fusermount -u ${MOUNTDIR}
sync
umount ${ROOTDIR}
sleep 5
}
function _mount {
mount ${ROOTDIR}
echo y | ${CRYFS} ${BASEDIR} ${MOUNTDIR}
sleep 5
}
function _remount {
_unmount
_mount
}
function _clear {
fusermount -u ${MOUNTDIR} || echo not mounted
umount ${ROOTDIR} || echo not mounted
mount ${ROOTDIR}
rm -rf ${BASEDIR}
mkdir ${BASEDIR}
umount ${ROOTDIR}
rm -rf ${MOUNTDIR}
mkdir ${MOUNTDIR}
sync
sleep 5
}
function _createTest {
echo ----------------
echo -----Create-----
echo ----------------
time dd if=/dev/zero of=${FILE} ${DD_PARAMS}
}
function _readTest {
echo ----------------
echo ------Read------
echo ----------------
time dd if=${FILE} of=/dev/null ${DD_PARAMS}
}
function _overwriteTest {
echo ----------------
echo ---Overwrite----
echo ----------------
time dd conv=notrunc if=/dev/zero of=${FILE} ${DD_PARAMS}
}
function _shrinkTest {
echo ----------------
echo -----Shrink-----
echo ----------------
time dd if=/dev/zero of=${FILE} bs=1M count=1
}
function _deleteTest {
echo ----------------
echo -----Delete-----
echo ----------------
time rm ${FILE}
}
_clear
_mount
_createTest
_remount
_readTest
_remount
_overwriteTest
_remount
_shrinkTest
_remount
_unmount
_clear
_mount
_createTest
_remount
_readTest
_remount
_overwriteTest
_remount
_deleteTest
_remount
_unmount