summaryrefslogtreecommitdiffstats
path: root/tests/features/recon.t
diff options
context:
space:
mode:
authorKaushal M <kaushal@redhat.com>2016-10-28 15:55:55 +0530
committerPranith Kumar Karampuri <pkarampu@redhat.com>2016-11-13 21:27:04 -0800
commit82b29e0de686b7bd9f36ddf49376fc07f0c42125 (patch)
tree896fbb62144aa771a2e45d8dec80db1685919c17 /tests/features/recon.t
parent72ce732fa5c9979ea6352ea98451471b721410c1 (diff)
Remove experimental translators
Change-Id: Id645918fa236f1fc00ab5fa427f394e853c44bf8 BUG: 1389675 Signed-off-by: Kaushal M <kaushal@redhat.com> Reviewed-on: http://review.gluster.org/15750 Tested-by: Pranith Kumar Karampuri <pkarampu@redhat.com> Smoke: Gluster Build System <jenkins@build.gluster.org> NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org> CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Diffstat (limited to 'tests/features/recon.t')
-rw-r--r--tests/features/recon.t63
1 files changed, 0 insertions, 63 deletions
diff --git a/tests/features/recon.t b/tests/features/recon.t
deleted file mode 100644
index 9989f243380..00000000000
--- a/tests/features/recon.t
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/bash
-
-. $(dirname $0)/../traps.rc
-. $(dirname $0)/../include.rc
-. $(dirname $0)/../volume.rc
-
-log_base=$($CLI --print-logdir)
-log_id=${B0}/${V0}-0
-log_id=${log_id:1} # Remove initial slash
-log_id=${log_id//\//-} # Replace remaining slashes with dashes
-FDL_META_FILE=${log_base}/${log_id}-meta-1.jnl
-FDL_DATA_FILE=${log_base}/${log_id}-data-1.jnl
-
-tmpdir=$(mktemp -d -t ${0##*/}.XXXXXX)
-push_trapfunc "rm -rf $tmpdir"
-
-write_file () {
- echo "peekaboo" > $1
-}
-
-TEST rm -f $FDL_META_FILE $FDL_DATA_FILE
-TEST glusterd
-TEST pidof glusterd
-
-# Get a simple volume set up and mounted with FDL active.
-TEST $CLI volume create $V0 ${H0}:${B0}/${V0}-0
-TEST $CLI volume set $V0 features.fdl on
-TEST $CLI volume start $V0
-TEST $GFS -s $H0 --volfile-id $V0 $M0
-
-# Generate some I/O and then copy off the journal files for later.
-TEST mkdir -p $M0/abc/def
-TEST write_file $M0/abc/def/ghi
-#EST chmod 314 $M0/abc/def/ghi
-cp ${FDL_META_FILE} ${FDL_DATA_FILE} ${tmpdir}
-
-# Get back to an empty state and unmount.
-TEST rm -rf $M0/abc
-TEST umount $M0
-
-# Make sure we really are in an empty state. Otherwise the tests below could
-# pass just because we never cleaned up in the first place.
-TEST [ ! -d ${B0}/${V0}-0/abc ]
-
-# Create a stub volfile.
-vol_file=${GLUSTERD_WORKDIR}/vols/${V0}/${V0}.${H0}.${log_id}.vol
-vol_id_line=$(grep volume-id ${vol_file})
-cat > ${tmpdir}/recon.vol << EOF
-volume recon-posix
- type storage/posix
- option directory ${B0}/${V0}-0
-${vol_id_line}
-end-volume
-EOF
-
-TEST gf_recon ${tmpdir}/recon.vol ${tmpdir}/$(basename ${FDL_META_FILE}) \
- ${tmpdir}/$(basename ${FDL_DATA_FILE})
-
-TEST [ -d ${B0}/${V0}-0/abc/def ]
-EXPECT "peekaboo" cat ${B0}/${V0}-0/abc/def/ghi
-# TBD: test permissions, xattrs
-
-cleanup