Merge "Update read and write data path in cinder test"
[functest.git] / functest / opnfv_tests / openstack / cinder / write_data.sh
1 #!/bin/sh -e
2
3 # Copyright (c) 2018 Enea AB and others
4
5 # This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10
11 DEST=$(mktemp -d)
12 VOL_DEV_NAME="$(lsblk -l -o NAME | grep -o "vdc\|sdc\b")"
13
14 echo "VOL_DEV_NAME: $VOL_DEV_NAME"
15
16 if [ ! -z $VOL_DEV_NAME ]; then
17     sudo /usr/sbin/mkfs.ext4 -F /dev/$VOL_DEV_NAME
18     sudo mount /dev/$VOL_DEV_NAME $DEST
19     sudo touch $DEST/new_data
20     if [ -f $DEST/new_data ]; then
21         echo "New data added to the volume!"
22         sudo umount $DEST
23     fi
24 else
25     echo "Failed to write data!"
26     exit 1
27 fi