aboutsummaryrefslogtreecommitdiff
path: root/contrib/sshfs-benchmark.bash
blob: b3c9646be706b7cb586c75dfac961c62e94f1298 (plain)
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
#!/bin/bash

set -eu

function cleanup {
	fusermount -u -z gocryptfs.mnt || true
	rm -Rf "$SSHFS_TMP"
	fusermount -u -z sshfs.mnt
	cd /
	rm -Rf "$LOCAL_TMP"
}

function prepare_mounts {
	LOCAL_TMP=$(mktemp -d -t "$MYNAME.XXX")
	cd $LOCAL_TMP
	echo "working directory: $PWD"
	mkdir sshfs.mnt gocryptfs.mnt
	sshfs $HOST:/tmp sshfs.mnt
	echo "sshfs mounted: $HOST:/tmp -> sshfs.mnt"
	trap cleanup EXIT
	SSHFS_TMP=$(mktemp -d "sshfs.mnt/$MYNAME.XXX")
	mkdir $SSHFS_TMP/gocryptfs.crypt
	gocryptfs -q -init -extpass "echo test" -scryptn=10 $SSHFS_TMP/gocryptfs.crypt
	gocryptfs -q -extpass "echo test" $SSHFS_TMP/gocryptfs.crypt gocryptfs.mnt
	echo "gocryptfs mounted: $SSHFS_TMP/gocryptfs.crypt -> gocryptfs.mnt"
}

function etime {
	T=$(/usr/bin/time -f %e -o /dev/stdout "$@")
	printf %20.2f "$T"
}

MYNAME=$(basename "$0")
HOST=$1

prepare_mounts

# Make the bash builtin "time" print out only the elapsed wall clock
# seconds
TIMEFORMAT=%R

echo
echo "$MYNAME:    sshfs  gocryptfs-on-sshfs"
echo -n "git init  "
etime git init -q sshfs.mnt/git1
etime git init -q gocryptfs.mnt/git1
echo

git init -q git2
echo -n "rsync     "
etime rsync -a --no-group git2 sshfs.mnt
etime rsync -a --no-group git2 gocryptfs.mnt
echo