summaryrefslogtreecommitdiffstats
path: root/tests/line-coverage/old-protocol.t
diff options
context:
space:
mode:
authorAmar Tumballi <amarts@redhat.com>2019-04-12 08:16:56 +0530
committerXavi Hernandez <xhernandez@redhat.com>2019-05-30 07:32:34 +0000
commit71caf1423fe5f0eed652210f8158c95fc8a10219 (patch)
treef4a226040e3105df6c3ecb690244ed3236cd8556 /tests/line-coverage/old-protocol.t
parentbfe58919c03ea746aa6c7800fe698b15ca8c6ecb (diff)
tests: add tests for different signal handling
Also some cleanup: * old-protocol.t was actually added to make sure we have line-coverage * first-test.t should have been removed as per the comment. It doesn't do anything. * add statvfs to rpc-coverage so we can cover statvfs in few xlators. updates: bz#1693692 Change-Id: Ie8651ce007de484c4abced16b4de765aa5e517be Signed-off-by: Amar Tumballi <amarts@redhat.com>
Diffstat (limited to 'tests/line-coverage/old-protocol.t')
-rwxr-xr-xtests/line-coverage/old-protocol.t31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/line-coverage/old-protocol.t b/tests/line-coverage/old-protocol.t
new file mode 100755
index 00000000000..3664c79d644
--- /dev/null
+++ b/tests/line-coverage/old-protocol.t
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+. $(dirname $0)/../include.rc
+. $(dirname $0)/../volume.rc
+
+cleanup;
+
+TEST glusterd
+TEST pidof glusterd
+TEST $CLI volume info;
+
+TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{1,2,3,4,5,6};
+
+EXPECT "$V0" volinfo_field $V0 'Volume Name';
+EXPECT 'Created' volinfo_field $V0 'Status';
+EXPECT '6' brick_count $V0
+
+TEST $CLI volume start $V0;
+EXPECT 'Started' volinfo_field $V0 'Status';
+
+file="/var/lib/glusterd/vols/$V0/trusted-$V0.tcp-fuse.vol"
+sed -i -e 's$send-gids true$send-gids true\n option testing.old-protocol true$g' $file
+
+## Mount FUSE
+TEST $GFS -s $H0 --volfile-id $V0 $M1;
+
+## TODO: best way to increase coverage is to have a gfapi program
+## which covers maximum fops
+TEST $(dirname $0)/../basic/rpc-coverage.sh $M1
+
+cleanup;