diff options
-rw-r--r-- | tests/basic/cloudsync-sanity.t | 7 | ||||
-rwxr-xr-x | tests/basic/rpc-coverage.sh | 8 | ||||
-rwxr-xr-x | tests/basic/rpc-coverage.t | 4 | ||||
-rw-r--r-- | tests/basic/sdfs-sanity.t | 6 | ||||
-rwxr-xr-x | tests/line-coverage/old-protocol.t | 6 | ||||
-rw-r--r-- | tests/line-coverage/shard-coverage.t | 33 |
6 files changed, 58 insertions, 6 deletions
diff --git a/tests/basic/cloudsync-sanity.t b/tests/basic/cloudsync-sanity.t index 3cf719da011..f859f3fb504 100644 --- a/tests/basic/cloudsync-sanity.t +++ b/tests/basic/cloudsync-sanity.t @@ -19,4 +19,11 @@ TEST $GFS -s $H0 --volfile-id $V0 $M1; # create operations TEST $(dirname $0)/rpc-coverage.sh $M1 + +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +./glfsxmp $V0 $H0 +cleanup_tester ./glfsxmp +rm ./glfsxmp.c + cleanup; diff --git a/tests/basic/rpc-coverage.sh b/tests/basic/rpc-coverage.sh index ad145559c41..6203f0ac7cb 100755 --- a/tests/basic/rpc-coverage.sh +++ b/tests/basic/rpc-coverage.sh @@ -442,15 +442,15 @@ function run_tests() test_rename; test_chmod; test_chown; - test_utimes; - if [ "$run_lock_tests" = "1" ]; then - test_locks; - fi test_readdir; test_setxattr; test_listxattr; test_getxattr; test_removexattr; + if [ "$run_lock_tests" = "1" ]; then + test_locks; + fi + test_utimes; test_unlink; test_rmdir; } diff --git a/tests/basic/rpc-coverage.t b/tests/basic/rpc-coverage.t index a76ba7084eb..2c1bcd5a63a 100755 --- a/tests/basic/rpc-coverage.t +++ b/tests/basic/rpc-coverage.t @@ -9,11 +9,11 @@ TEST glusterd TEST pidof glusterd TEST $CLI volume info; -TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{1,2,3,4,5,6,7,8}; +TEST $CLI volume create $V0 replica 3 $H0:$B0/${V0}{1,2,3,4,5,6,7,8,9}; EXPECT "$V0" volinfo_field $V0 'Volume Name'; EXPECT 'Created' volinfo_field $V0 'Status'; -EXPECT '8' brick_count $V0 +EXPECT '9' brick_count $V0 TEST $CLI volume start $V0; EXPECT 'Started' volinfo_field $V0 'Status'; diff --git a/tests/basic/sdfs-sanity.t b/tests/basic/sdfs-sanity.t index f25376c3cad..c6fcac41297 100644 --- a/tests/basic/sdfs-sanity.t +++ b/tests/basic/sdfs-sanity.t @@ -19,4 +19,10 @@ TEST $GFS -s $H0 --volfile-id $V0 $M1; # create operations TEST $(dirname $0)/rpc-coverage.sh $M1 +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +TEST ./glfsxmp $V0 $H0 +TEST cleanup_tester ./glfsxmp +TEST rm ./glfsxmp.c + cleanup; diff --git a/tests/line-coverage/old-protocol.t b/tests/line-coverage/old-protocol.t index 3664c79d644..46ea1f3b019 100755 --- a/tests/line-coverage/old-protocol.t +++ b/tests/line-coverage/old-protocol.t @@ -28,4 +28,10 @@ TEST $GFS -s $H0 --volfile-id $V0 $M1; ## which covers maximum fops TEST $(dirname $0)/../basic/rpc-coverage.sh $M1 +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +TEST ./glfsxmp $V0 $H0 +TEST cleanup_tester ./glfsxmp +TEST rm ./glfsxmp.c + cleanup; diff --git a/tests/line-coverage/shard-coverage.t b/tests/line-coverage/shard-coverage.t new file mode 100644 index 00000000000..5e18d28c998 --- /dev/null +++ b/tests/line-coverage/shard-coverage.t @@ -0,0 +1,33 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc +. $(dirname $0)/../volume.rc + +cleanup + +TEST glusterd + +TEST $CLI volume create $V0 $H0:$B0/brick +TEST $CLI volume set $V0 features.shard on +EXPECT 'Created' volinfo_field $V0 'Status' + +TEST $CLI volume start $V0 +EXPECT 'Started' volinfo_field $V0 'Status' + +# It is good to copy the file locally and build it, so the scope remains +# inside tests directory. +TEST cp $(dirname ${0})/../../api/examples/glfsxmp.c glfsxmp.c +TEST build_tester ./glfsxmp.c -lgfapi +TEST ./glfsxmp $V0 $H0 +TEST cleanup_tester ./glfsxmp +TEST rm ./glfsxmp.c + +TEST $GFS -s $H0 --volfile-id $V0 $M1; + +TEST $(dirname $0)/../basic/rpc-coverage.sh $M1 + + +TEST $CLI volume stop $V0 +TEST $CLI volume delete $V0 + +cleanup |