diff options
author | Sheetal Pamecha <spamecha@redhat.com> | 2019-04-15 14:59:37 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2019-05-26 14:15:10 +0000 |
commit | 1587a6730ee638d1737b44adbd779d8d2978707d (patch) | |
tree | 10558d7533957aa88fc9ebfa2825631218bd584d /tests/basic | |
parent | 5d88111a142b3c37e92bdd36699a04fd054d27f4 (diff) |
api/glfsxmp.c: minor fixes
* add more fops: f{get,set,list,remove}xattr(), access(), fstat(), fsetattr(),
getxattr(), lgetxattr(), llistxattr(), lsetxattr(), fgetxattr()
* handle some error cases (like volume not found)
Updates: #655
Change-Id: I3334bdf3090eafd83a54e1be12036ea01b181089
Signed-off-by: Amar Tumballi <amarts@redhat.com>
Signed-off-by: Sheetal Pamecha <spamecha@redhat.com>
Diffstat (limited to 'tests/basic')
-rw-r--r-- | tests/basic/gfapi/glfsxmp.t | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/basic/gfapi/glfsxmp.t b/tests/basic/gfapi/glfsxmp.t new file mode 100644 index 00000000000..aa3377c26e3 --- /dev/null +++ b/tests/basic/gfapi/glfsxmp.t @@ -0,0 +1,30 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc +. $(dirname $0)/../../volume.rc + +cleanup + +TEST glusterd + +TEST $CLI volume create $V0 replica 3 $H0:$B0/brick{0,1,2} +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 + +cleanup_tester ./glfsxmp + +TEST rm ./glfsxmp.c + +TEST $CLI volume stop $V0 +TEST $CLI volume delete $V0 + +cleanup |