aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/cinder/write_data.sh
diff options
context:
space:
mode:
authorDelia Popescu <delia.popescu@enea.com>2018-05-29 11:46:37 +0300
committerDelia Popescu <delia.popescu@enea.com>2018-05-31 11:29:28 +0300
commit82a755f683b17204b84e0b5966e87e2007a48421 (patch)
tree2d356a755bea3d972e96cdd87dcd0ebfbd78e9da /functest/opnfv_tests/openstack/cinder/write_data.sh
parent72b17bc82ac5c6a388adbfc8a564f118d0ccd247 (diff)
Update read and write data path in cinder test
Update the path for read/write data Fix a false possitive result on read_data Fix read device name Unmount volume after writing data JIRA: FUNCTEST-908 Change-Id: I555b5a3daaeff3aa58891e65c0b70094372c04c9 Signed-off-by: Delia Popescu <delia.popescu@enea.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/cinder/write_data.sh')
-rw-r--r--functest/opnfv_tests/openstack/cinder/write_data.sh17
1 files changed, 11 insertions, 6 deletions
diff --git a/functest/opnfv_tests/openstack/cinder/write_data.sh b/functest/opnfv_tests/openstack/cinder/write_data.sh
index eeafbb54a..70f8275f1 100644
--- a/functest/opnfv_tests/openstack/cinder/write_data.sh
+++ b/functest/opnfv_tests/openstack/cinder/write_data.sh
@@ -8,14 +8,19 @@
#
# http://www.apache.org/licenses/LICENSE-2.0
-VOL_DEV_NAME="$(lsblk -l | grep -Po '^[vs]dc\W')"
+DEST=$(mktemp -d)
+VOL_DEV_NAME="$(lsblk -l -o NAME | grep -o "vdc\|sdc\b")"
-if [ -n $VOL_DEV_NAME ]; then
- sudo mkdir -p /home/cirros/volume
+echo "VOL_DEV_NAME: $VOL_DEV_NAME"
+
+if [ ! -z $VOL_DEV_NAME ]; then
sudo /usr/sbin/mkfs.ext4 -F /dev/$VOL_DEV_NAME
- sudo mount /dev/$VOL_DEV_NAME /home/cirros/volume
- sudo touch /home/cirros/volume/new_data
- echo "New data added to the volume!"
+ sudo mount /dev/$VOL_DEV_NAME $DEST
+ sudo touch $DEST/new_data
+ if [ -f $DEST/new_data ]; then
+ echo "New data added to the volume!"
+ sudo umount $DEST
+ fi
else
echo "Failed to write data!"
exit 1