summaryrefslogtreecommitdiffstats
path: root/tests/bugs/shard/bug-shard-fallocate.t
diff options
context:
space:
mode:
authorKrutika Dhananjay <kdhananj@redhat.com>2015-10-29 17:04:38 +0530
committerPranith Kumar Karampuri <pkarampu@redhat.com>2016-01-18 16:18:14 -0800
commitc535059299785f7d050482c257f10389c218048b (patch)
tree41f67d9909818a1b5ba583ff368dec2ce4119150 /tests/bugs/shard/bug-shard-fallocate.t
parentb95ad51e00d6076d37809bcc50b89fee1cf248ef (diff)
features/shard: Implement fallocate FOP
Change-Id: I6f07074e94b115f6c6c2c59a8a1b58ba44b1c12a BUG: 1261841 Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com> Reviewed-on: http://review.gluster.org/13196 Smoke: Gluster Build System <jenkins@build.gluster.com> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com> Tested-by: Pranith Kumar Karampuri <pkarampu@redhat.com> CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'tests/bugs/shard/bug-shard-fallocate.t')
-rw-r--r--tests/bugs/shard/bug-shard-fallocate.t47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/bugs/shard/bug-shard-fallocate.t b/tests/bugs/shard/bug-shard-fallocate.t
new file mode 100644
index 00000000000..8d41507c4a5
--- /dev/null
+++ b/tests/bugs/shard/bug-shard-fallocate.t
@@ -0,0 +1,47 @@
+#!/bin/bash
+
+. $(dirname $0)/../../include.rc
+
+cleanup
+
+TEST glusterd
+TEST pidof glusterd
+TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{0,1,2,3}
+TEST $CLI volume set $V0 features.shard on
+TEST $CLI volume start $V0
+
+TEST $GFS --volfile-id=$V0 --volfile-server=$H0 $M0
+
+# Create a file.
+TEST touch $M0/foo
+
+gfid_foo=`getfattr -n glusterfs.gfid.string $M0/foo 2>/dev/null \
+ | grep glusterfs.gfid.string | cut -d '"' -f 2`
+
+TEST fallocate -l 17M $M0/foo
+EXPECT '17825792' stat -c %s $M0/foo
+
+# This should ensure /.shard is created on the bricks.
+TEST stat $B0/${V0}0/.shard
+TEST stat $B0/${V0}1/.shard
+TEST stat $B0/${V0}2/.shard
+TEST stat $B0/${V0}3/.shard
+
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.1 | xargs stat -c %s`
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.2 | xargs stat -c %s`
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.3 | xargs stat -c %s`
+EXPECT "1048576" echo `find $B0 -name $gfid_foo.4 | xargs stat -c %s`
+
+TEST fallocate -o 102400 -l 17M $M0/foo
+EXPECT '17928192' stat -c %s $M0/foo
+
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.1 | xargs stat -c %s`
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.2 | xargs stat -c %s`
+EXPECT "4194304" echo `find $B0 -name $gfid_foo.3 | xargs stat -c %s`
+EXPECT "1150976" echo `find $B0 -name $gfid_foo.4 | xargs stat -c %s`
+
+TEST umount $M0
+TEST $CLI volume stop $V0
+TEST $CLI volume delete $V0
+
+cleanup