From a682eab2726a753a3b23ae5812f221e689ee1d1e Mon Sep 17 00:00:00 2001
From: Julien Leduc <julien.leduc@cern.ch>
Date: Wed, 21 Jun 2017 10:20:52 +0200
Subject: [PATCH] tests/simple_client_ar.sh is the previous simple archive
 retrieve test, tests/client_ar.sh allows to enter more parameters: number of
 files for test, their size and the number of parallel jobs to trigger the
 retrieve.

---
 .../orchestration/tests/archive_retrieve.sh   |  14 +-
 .../orchestration/tests/client_ar.sh          | 167 ++++++++++++------
 .../orchestration/tests/client_ar_1000.sh     | 109 ------------
 .../orchestration/tests/simple_client_ar.sh   |  79 +++++++++
 4 files changed, 201 insertions(+), 168 deletions(-)
 delete mode 100644 continuousintegration/orchestration/tests/client_ar_1000.sh
 create mode 100644 continuousintegration/orchestration/tests/simple_client_ar.sh

diff --git a/continuousintegration/orchestration/tests/archive_retrieve.sh b/continuousintegration/orchestration/tests/archive_retrieve.sh
index e2c06c45d8..91697eda2f 100755
--- a/continuousintegration/orchestration/tests/archive_retrieve.sh
+++ b/continuousintegration/orchestration/tests/archive_retrieve.sh
@@ -31,18 +31,18 @@ echo "Preparing namespace for the tests"
 ./prepare_tests.sh -n ${NAMESPACE}
 
 echo
-echo "Launching client_ar.sh on client pod"
+echo "Launching simple_client_ar.sh on client pod"
 echo " Archiving file: xrdcp as user1"
 echo " Retrieving it as poweruser1"
-kubectl -n ${NAMESPACE} cp client_ar.sh client:/root/client_ar.sh
-kubectl -n ${NAMESPACE} exec client -- bash /root/client_ar.sh || exit 1
+kubectl -n ${NAMESPACE} cp simple_client_ar.sh client:/root/client_ar.sh
+kubectl -n ${NAMESPACE} exec client -- bash /root/simple_client_ar.sh || exit 1
 
 echo
-echo "Launching client_ar_1000.sh on client pod"
+echo "Launching client_ar.sh on client pod"
+echo " Archiving 100 file of 1kB each"
 echo " Archiving file: xrdcp as user1"
 echo " Retrieving it as poweruser1"
-kubectl -n ${NAMESPACE} cp client_ar_1000.sh client:/root/client_ar_1000.sh
-kubectl -n ${NAMESPACE} exec client -- bash /root/client_ar_1000.sh || exit 1
-
+kubectl -n ${NAMESPACE} cp client_ar.sh client:/root/client_ar.sh
+kubectl -n ${NAMESPACE} exec client -- bash /root/client_ar.sh -n 100 -s 1 -p 4 || exit 1
 
 exit 0
diff --git a/continuousintegration/orchestration/tests/client_ar.sh b/continuousintegration/orchestration/tests/client_ar.sh
index 89c92d1b8e..779e3a072e 100644
--- a/continuousintegration/orchestration/tests/client_ar.sh
+++ b/continuousintegration/orchestration/tests/client_ar.sh
@@ -1,79 +1,142 @@
 #!/bin/bash
 
-
 EOSINSTANCE=ctaeos
-TEST_FILE_NAME=`uuidgen`
+EOS_DIR=/eos/ctaeos/cta/$(uuidgen)
+TEST_FILE_NAME_BASE=test
+
+NB_PROCS=1
+NB_FILES=1
+FILE_KB_SIZE=1
+
+
+usage() { cat <<EOF 1>&2
+Usage: $0 [-n <nb_files>] [-s <file_kB_size>] [-p <# parallel procs>]
+EOF
+exit 1
+}
+
+while getopts "n:s:p:" o; do
+    case "${o}" in
+        n)
+            NB_FILES=${OPTARG}
+            ;;
+        s)
+            FILE_KB_SIZE=${OPTARG}
+            ;;
+        p)
+            NB_PROCS=${OPTARG}
+            ;;
+        *)
+            usage
+            ;;
+    esac
+done
+shift $((OPTIND-1))
+
+if [ ! -z "${error}" ]; then
+    echo -e "ERROR:\n${error}"
+    exit 1
+fi
+
 
 
-echo "xrdcp /etc/group root://${EOSINSTANCE}//eos/ctaeos/cta/${TEST_FILE_NAME}"
-xrdcp /etc/group root://${EOSINSTANCE}//eos/ctaeos/cta/${TEST_FILE_NAME}
+
+STATUS_FILE=$(mktemp)
+
+dd if=/dev/urandom of=/tmp/testfile bs=1k count=${FILE_KB_SIZE} || exit 1
+
+echo "Creating test dir in eos: ${EOS_DIR}"
+# uuid should be unique no need to remove dir before...
+# XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} rm -Fr ${EOS_DIR}
+eos root://${EOSINSTANCE} mkdir -p ${EOS_DIR}
+
+for ((i=0;i<${NB_FILES};i++)); do
+  TEST_FILE_NAME=${TEST_FILE_NAME_BASE}$(printf %.4d $i)
+  xrdcp --silent /etc/group root://${EOSINSTANCE}/${EOS_DIR}/${TEST_FILE_NAME}
+done
+
+eos root://${EOSINSTANCE} ls ${EOS_DIR} | egrep "${TEST_FILE_NAME_BASE}[0-9]+" | sed -e 's/$/ copied/' > ${STATUS_FILE=}
+
 
 SECONDS_PASSED=0
-WAIT_FOR_ARCHIVED_FILE_TIMEOUT=90
-while test 0 = `eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME} | awk '{print $4;}' | grep tape | wc -l`; do
-  echo "Waiting for file to be archived to tape: Seconds passed = ${SECONDS_PASSED}"
+WAIT_FOR_ARCHIVED_FILE_TIMEOUT=60
+while test 0 != $(grep -c copied$ ${STATUS_FILE}); do
+  echo "Waiting for files to be archived to tape: Seconds passed = ${SECONDS_PASSED}"
   sleep 1
   let SECONDS_PASSED=SECONDS_PASSED+1
 
   if test ${SECONDS_PASSED} == ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT}; then
     echo "Timed out after ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT} seconds waiting for file to be archived to tape"
-    exit 1
+    break
   fi
+
+  echo "$(grep -c archived$ ${STATUS_FILE})/${NB_FILES} archived"
+
+  for TEST_FILE_NAME in $(grep copied$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
+    eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | awk '{print $4;}' | grep -q tape && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} copied/${TEST_FILE_NAME} archived/"
+  done
+
+done
+
+ARCHIVED=$(grep -c archived$ ${STATUS_FILE})
+
+
+echo "###"
+echo "${ARCHIVED}/${NB_FILES} archived"
+echo "###"
+
+echo "Removing disk replica of all archived files"
+for TEST_FILE_NAME in $(grep archived$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
+    XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} file drop ${EOS_DIR}/${TEST_FILE_NAME} 1 &> /dev/null || echo "Could not remove disk replica for ${EOS_DIR}/${TEST_FILE_NAME}"
+    test 1 = $(eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | grep -c nodrain) && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} archived/${TEST_FILE_NAME} tapeonly/"
 done
 
-echo
-echo "FILE ARCHIVED TO TAPE"
-echo
-eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
-echo
-echo "Information about the testing file:"
-echo "********"
-  eos root://${EOSINSTANCE} attr ls /eos/ctaeos/cta/${TEST_FILE_NAME}
-  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
-  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
-echo
-echo "Removing disk replica as poweruser1:powerusers (12001:1200)"
-# XrdSecPROTOCOL=sss eos -r 12001 1200 root://${EOSINSTANCE} file drop /eos/ctaeos/cta/${TEST_FILE_NAME} 1
-XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} file drop /eos/ctaeos/cta/${TEST_FILE_NAME} 1
-echo
-echo "Information about the testing file without disk replica"
-  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
-  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
-echo
+TAPEONLY=$(grep -c tapeonly$ ${STATUS_FILE})
+
+echo "###"
+echo "${TAPEONLY}/${ARCHIVED} on tape only"
+echo "###"
+
+
 echo "Trigerring EOS retrieve workflow as poweruser1:powerusers (12001:1200)"
-echo "XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s \"/eos/ctaeos/cta/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200\""
-  XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s "/eos/ctaeos/cta/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200"
+#for TEST_FILE_NAME in $(grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
+#  XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s "${EOS_DIR}/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200" || echo "Could not trigger retrieve for ${EOS_DIR}/${TEST_FILE_NAME}"
+#done
+
+grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//' | XrdSecPROTOCOL=sss xargs --max-procs=${NB_PROCS} -iTEST_FILE_NAME xrdfs ${EOSINSTANCE} prepare -s "${EOS_DIR}/TEST_FILE_NAME?eos.ruid=12001&eos.rgid=1200"
 
 
 # Wait for the copy to appear on disk
 SECONDS_PASSED=0
-WAIT_FOR_RETRIEVED_FILE_TIMEOUT=90
-while test 0 = `eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME} | awk '{print $4;}' | grep -F "default.0" | wc -l`; do
-  echo "Waiting for file to be retrieved from tape: Seconds passed = ${SECONDS_PASSED}"
+WAIT_FOR_RETRIEVED_FILE_TIMEOUT=60
+while test 0 != $(grep -c tapeonly$ ${STATUS_FILE}); do
+  echo "Waiting for files to be retrieved from tape: Seconds passed = ${SECONDS_PASSED}"
   sleep 1
   let SECONDS_PASSED=SECONDS_PASSED+1
 
   if test ${SECONDS_PASSED} == ${WAIT_FOR_RETRIEVED_FILE_TIMEOUT}; then
-    echo "Timed out after ${WAIT_FOR_RETRIEVED_FILE_TIMEOUT} seconds waiting for file to be retrieved from tape"
-    exit 1
+    echo "Timed out after ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT} seconds waiting for file to be retrieved tape"
+    break
   fi
+
+  echo "$(grep -c retrieved$ ${STATUS_FILE})/${NB_FILES} retrieved"
+
+  for TEST_FILE_NAME in $(grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
+    test 2 = $(eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | grep -c nodrain) && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} tapeonly/${TEST_FILE_NAME} retrieved/"
+  done
+
 done
-echo
-echo "FILE RETRIEVED FROM DISK"
-echo
-echo "Information about the testing file:"
-echo "********"
-  eos root://${EOSINSTANCE} attr ls /eos/ctaeos/cta/${TEST_FILE_NAME}
-  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
-  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
-
-
-msgNum=$(grep "\"File suc" /mnt/logs/tpsrv*/taped/cta/cta-taped.log | grep ${TEST_FILE_NAME} | tail -n 4 | wc -l)
-if [ $msgNum == "4" ]; then
-  echo "OK: all tests passed"
-    rc=0
-else
-  echo "FAIL: tests failed"
-    rc=1
-fi
 
+RETRIEVED=$(grep -c retrieved$ ${STATUS_FILE})
+
+echo "###"
+echo Results:
+echo "RETRIEVED/TAPEONLY/ARCHIVED/NB_FILES"
+echo "${RETRIEVED}/${TAPEONLY}/${ARCHIVED}/${NB_FILES}"
+echo "###"
+
+
+test ${RETRIEVED} = ${NB_FILES} && exit 0
+
+echo "ERROR there were some lost files during the archive/retrieve test with ${NB_FILES} files."
+exit 1
diff --git a/continuousintegration/orchestration/tests/client_ar_1000.sh b/continuousintegration/orchestration/tests/client_ar_1000.sh
deleted file mode 100644
index 59e6cea3a9..0000000000
--- a/continuousintegration/orchestration/tests/client_ar_1000.sh
+++ /dev/null
@@ -1,109 +0,0 @@
-#!/bin/bash
-
-NB_PROCS=4
-
-EOSINSTANCE=ctaeos
-EOS_DIR=/eos/ctaeos/cta/$(uuidgen)
-TEST_FILE_NAME_BASE=test
-
-NB_FILES=100
-FILE_KB_SIZE=1
-
-STATUS_FILE=$(mktemp)
-
-dd if=/dev/urandom of=/tmp/testfile bs=1k count=${FILE_KB_SIZE} || exit 1
-
-echo "Creating test dir in eos: ${EOS_DIR}"
-# uuid should be unique no need to remove dir before...
-# XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} rm -Fr ${EOS_DIR}
-eos root://${EOSINSTANCE} mkdir -p ${EOS_DIR}
-
-for ((i=0;i<${NB_FILES};i++)); do
-  TEST_FILE_NAME=${TEST_FILE_NAME_BASE}$(printf %.4d $i)
-  xrdcp --silent /etc/group root://${EOSINSTANCE}/${EOS_DIR}/${TEST_FILE_NAME}
-done
-
-eos root://${EOSINSTANCE} ls ${EOS_DIR} | egrep "${TEST_FILE_NAME_BASE}[0-9]+" | sed -e 's/$/ copied/' > ${STATUS_FILE=}
-
-
-SECONDS_PASSED=0
-WAIT_FOR_ARCHIVED_FILE_TIMEOUT=60
-while test 0 != $(grep -c copied$ ${STATUS_FILE}); do
-  echo "Waiting for files to be archived to tape: Seconds passed = ${SECONDS_PASSED}"
-  sleep 1
-  let SECONDS_PASSED=SECONDS_PASSED+1
-
-  if test ${SECONDS_PASSED} == ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT}; then
-    echo "Timed out after ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT} seconds waiting for file to be archived to tape"
-    break
-  fi
-
-  echo "$(grep -c archived$ ${STATUS_FILE})/${NB_FILES} archived"
-
-  for TEST_FILE_NAME in $(grep copied$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
-    eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | awk '{print $4;}' | grep -q tape && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} copied/${TEST_FILE_NAME} archived/"
-  done
-
-done
-
-ARCHIVED=$(grep -c archived$ ${STATUS_FILE})
-
-
-echo "###"
-echo "${ARCHIVED}/${NB_FILES} archived"
-echo "###"
-
-echo "Removing disk replica of all archived files"
-for TEST_FILE_NAME in $(grep archived$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
-    XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} file drop ${EOS_DIR}/${TEST_FILE_NAME} 1 &> /dev/null || echo "Could not remove disk replica for ${EOS_DIR}/${TEST_FILE_NAME}"
-    test 1 = $(eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | grep -c nodrain) && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} archived/${TEST_FILE_NAME} tapeonly/"
-done
-
-TAPEONLY=$(grep -c tapeonly$ ${STATUS_FILE})
-
-echo "###"
-echo "${TAPEONLY}/${ARCHIVED} on tape only"
-echo "###"
-
-
-echo "Trigerring EOS retrieve workflow as poweruser1:powerusers (12001:1200)"
-#for TEST_FILE_NAME in $(grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
-#  XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s "${EOS_DIR}/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200" || echo "Could not trigger retrieve for ${EOS_DIR}/${TEST_FILE_NAME}"
-#done
-
-grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//' | XrdSecPROTOCOL=sss xargs --max-procs=${NB_PROCS} -iTEST_FILE_NAME xrdfs ${EOSINSTANCE} prepare -s "${EOS_DIR}/TEST_FILE_NAME?eos.ruid=12001&eos.rgid=1200"
-
-
-# Wait for the copy to appear on disk
-SECONDS_PASSED=0
-WAIT_FOR_RETRIEVED_FILE_TIMEOUT=60
-while test 0 != $(grep -c tapeonly$ ${STATUS_FILE}); do
-  echo "Waiting for files to be retrieved from tape: Seconds passed = ${SECONDS_PASSED}"
-  sleep 1
-  let SECONDS_PASSED=SECONDS_PASSED+1
-
-  if test ${SECONDS_PASSED} == ${WAIT_FOR_RETRIEVED_FILE_TIMEOUT}; then
-    echo "Timed out after ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT} seconds waiting for file to be retrieved tape"
-    break
-  fi
-
-  echo "$(grep -c retrieved$ ${STATUS_FILE})/${NB_FILES} retrieved"
-
-  for TEST_FILE_NAME in $(grep tapeonly$ ${STATUS_FILE} | sed -e 's/ .*$//'); do
-    test 2 = $(eos root://${EOSINSTANCE} info ${EOS_DIR}/${TEST_FILE_NAME} | grep -c nodrain) && sed -i ${STATUS_FILE} -e "s/${TEST_FILE_NAME} tapeonly/${TEST_FILE_NAME} retrieved/"
-  done
-
-done
-
-RETRIEVED=$(grep -c retrieved$ ${STATUS_FILE})
-
-echo "###"
-echo Results:
-echo "${RETRIEVED}/${TAPEONLY}/${ARCHIVED}/${NB_FILES}"
-echo "###"
-
-
-test ${RETRIEVED} = ${NB_FILES} && exit 0
-
-echo "ERROR there were some lost files during the archive/retrieve test with ${NB_FILES} files."
-exit 1
diff --git a/continuousintegration/orchestration/tests/simple_client_ar.sh b/continuousintegration/orchestration/tests/simple_client_ar.sh
new file mode 100644
index 0000000000..89c92d1b8e
--- /dev/null
+++ b/continuousintegration/orchestration/tests/simple_client_ar.sh
@@ -0,0 +1,79 @@
+#!/bin/bash
+
+
+EOSINSTANCE=ctaeos
+TEST_FILE_NAME=`uuidgen`
+
+
+echo "xrdcp /etc/group root://${EOSINSTANCE}//eos/ctaeos/cta/${TEST_FILE_NAME}"
+xrdcp /etc/group root://${EOSINSTANCE}//eos/ctaeos/cta/${TEST_FILE_NAME}
+
+SECONDS_PASSED=0
+WAIT_FOR_ARCHIVED_FILE_TIMEOUT=90
+while test 0 = `eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME} | awk '{print $4;}' | grep tape | wc -l`; do
+  echo "Waiting for file to be archived to tape: Seconds passed = ${SECONDS_PASSED}"
+  sleep 1
+  let SECONDS_PASSED=SECONDS_PASSED+1
+
+  if test ${SECONDS_PASSED} == ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT}; then
+    echo "Timed out after ${WAIT_FOR_ARCHIVED_FILE_TIMEOUT} seconds waiting for file to be archived to tape"
+    exit 1
+  fi
+done
+
+echo
+echo "FILE ARCHIVED TO TAPE"
+echo
+eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
+echo
+echo "Information about the testing file:"
+echo "********"
+  eos root://${EOSINSTANCE} attr ls /eos/ctaeos/cta/${TEST_FILE_NAME}
+  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
+  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
+echo
+echo "Removing disk replica as poweruser1:powerusers (12001:1200)"
+# XrdSecPROTOCOL=sss eos -r 12001 1200 root://${EOSINSTANCE} file drop /eos/ctaeos/cta/${TEST_FILE_NAME} 1
+XrdSecPROTOCOL=sss eos -r 0 0 root://${EOSINSTANCE} file drop /eos/ctaeos/cta/${TEST_FILE_NAME} 1
+echo
+echo "Information about the testing file without disk replica"
+  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
+  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
+echo
+echo "Trigerring EOS retrieve workflow as poweruser1:powerusers (12001:1200)"
+echo "XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s \"/eos/ctaeos/cta/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200\""
+  XrdSecPROTOCOL=sss xrdfs ${EOSINSTANCE} prepare -s "/eos/ctaeos/cta/${TEST_FILE_NAME}?eos.ruid=12001&eos.rgid=1200"
+
+
+# Wait for the copy to appear on disk
+SECONDS_PASSED=0
+WAIT_FOR_RETRIEVED_FILE_TIMEOUT=90
+while test 0 = `eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME} | awk '{print $4;}' | grep -F "default.0" | wc -l`; do
+  echo "Waiting for file to be retrieved from tape: Seconds passed = ${SECONDS_PASSED}"
+  sleep 1
+  let SECONDS_PASSED=SECONDS_PASSED+1
+
+  if test ${SECONDS_PASSED} == ${WAIT_FOR_RETRIEVED_FILE_TIMEOUT}; then
+    echo "Timed out after ${WAIT_FOR_RETRIEVED_FILE_TIMEOUT} seconds waiting for file to be retrieved from tape"
+    exit 1
+  fi
+done
+echo
+echo "FILE RETRIEVED FROM DISK"
+echo
+echo "Information about the testing file:"
+echo "********"
+  eos root://${EOSINSTANCE} attr ls /eos/ctaeos/cta/${TEST_FILE_NAME}
+  eos root://${EOSINSTANCE} ls -l /eos/ctaeos/cta/${TEST_FILE_NAME}
+  eos root://${EOSINSTANCE} info /eos/ctaeos/cta/${TEST_FILE_NAME}
+
+
+msgNum=$(grep "\"File suc" /mnt/logs/tpsrv*/taped/cta/cta-taped.log | grep ${TEST_FILE_NAME} | tail -n 4 | wc -l)
+if [ $msgNum == "4" ]; then
+  echo "OK: all tests passed"
+    rc=0
+else
+  echo "FAIL: tests failed"
+    rc=1
+fi
+
-- 
GitLab