summaryrefslogtreecommitdiffstats
path: root/tests/bugs/shard/bug-shard-discard.t
blob: 4c4e9417b5bb73154ad1b8db77440e5191c03b29 (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
54
55
56
57
58
59
60
61
#!/bin/bash

. $(dirname $0)/../../include.rc
. $(dirname $0)/../../volume.rc

cleanup

TEST glusterd
TEST pidof glusterd
TEST $CLI volume create $V0 replica 2 $H0:$B0/${V0}{0..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
TEST dd if=/dev/urandom of=$M0/foo bs=1M count=10

# 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

#Note the size of the file, it should be 10M
EXPECT '10485760' stat -c %s $M0/foo

gfid_foo=$(get_gfid_string $M0/foo)

TEST gcc -Wall -O2 -I api/src -o $(dirname $0)/bug-shard-discard $(dirname $0)/bug-shard-discard.c -lgfapi
#Call discard on the file at off=7M and len=3M
TEST $(dirname $0)/bug-shard-discard $H0 $V0 /foo 7340032 3145728 `gluster --print-logdir`/glfs-$V0.log

#Ensure that discard doesn't change the original size of the file.
EXPECT '10485760' stat -c %s $M0/foo

# Ensure that the last shard is all zero'd out
EXPECT "1" file_all_zeroes `find $B0 -name $gfid_foo.2`
EXPECT_NOT "1" file_all_zeroes `find $B0 -name $gfid_foo.1`

# Now unlink the file. And ensure that all shards associated with the file are cleaned up
TEST unlink $M0/foo
TEST ! stat $B0/${V0}0/.shard/$gfid_foo.1
TEST ! stat $B0/${V0}1/.shard/$gfid_foo.1
TEST ! stat $B0/${V0}2/.shard/$gfid_foo.1
TEST ! stat $B0/${V0}3/.shard/$gfid_foo.1
TEST ! stat $B0/${V0}0/.shard/$gfid_foo.2
TEST ! stat $B0/${V0}1/.shard/$gfid_foo.2
TEST ! stat $B0/${V0}2/.shard/$gfid_foo.2
TEST ! stat $B0/${V0}3/.shard/$gfid_foo.2
TEST ! stat $M0/foo

#clean up everything
EXPECT_WITHIN $UMOUNT_TIMEOUT "Y" force_umount $M0
TEST $CLI volume stop $V0
TEST $CLI volume delete $V0

TEST rm -f $(dirname $0)/bug-shard-discard

cleanup