blob: 979d091d00bdc01a62db27b64461d7414c0e40a2 [file] [log] [blame]
Michael Landob3d48982017-06-11 14:22:02 +03001#!/bin/bash
2
3now=$(date +'%Y%-m%d%H%M')
4
5REPORT_NAME=$1
6VERSION=$2
7ENV=$3
8
Michael Lando5b593492018-07-29 16:13:45 +03009RECIPIENTS1="md9897@att.com,NETCOM_ASDC_DEV@att.com,IL-D2-QA-Alex@att.com,bs5719@att.com,yg356h@att.com,yr9970@att.com,sl615n@att.com,yn813h@att.com,as221v@att.com,ms172g@att.com,ma2244@att.com,el489u@att.com,gg980r@att.com,ak991p@att.com,bv095y@att.com,ms656r@att.com,df502y@att.com,bt750h@att.com,ln699k@att.com,hm104p@att.com"
Michael Landoa5445102018-03-04 14:53:33 +020010#RECIPIENTS2="dl-asdcqa@intl.att.com"
Michael Lando5b593492018-07-29 16:13:45 +030011RECIPIENTS2="md9897@att.com,NETCOM_ASDC_DEV@att.com,IL-D2-QA-Alex@att.com,bs5719@att.com,yg356h@att.com,yr9970@att.com,sl615n@att.com,yn813h@att.com,as221v@att.com,ms172g@att.com,ma2244@att.com,el489u@att.com,gg980r@att.com,ak991p@att.com,bv095y@att.com,ms656r@att.com,df502y@att.com,bt750h@att.com,ln699k@att.com,hm104p@att.com"
Michael Landob3d48982017-06-11 14:22:02 +030012source ExtentReport/versions.info
13if [ -z "$REPORT_NAME" ]
14 then
15 now=$(date -d '+7 hour' "+%Y-%m-%d_%H_%M")
16 REPORT_NAME="${now}"
17 VERSION="${osVersion}"
18fi
19
20if [[ $env == *"DEV20"* ]]
21 then
22 ENV="Nightly"
23 RECIPIENTS=$RECIPIENTS1
24 else
25 ENV=""
26 RECIPIENTS=$RECIPIENTS2
27fi
28
29
30#REPORT_ZIP_FILE=ExtentReport_${now}.zip
31REPORT_FOLDER='ExtentReport'
32REPORT_HTML_FILE=${REPORT_FOLDER}/*Report.html
33BODY_MESSAGE='Hello, \n\n Please find automation results on following link: \n\n http://asdc-srv-210-45.tlv.intl.att.com/'${ENV}'/'${VERSION}'/APIs/'${REPORT_NAME}'/SDC_CI_Extent_Report.html \n\nThanks, \nSDC QA Team\n\n '
34
35#OLD_FILE=$(find ./ -type f -name ${REPORT_ZIP_FILE} -print)
36#if [ ! -z ${OLD_FILE} ]
37#then
38# rm -f ${REPORT_ZIP_FILE}
39# echo "Removing old zip file............"
40#fi
41
42#echo "Creating new zip file"
43#zip -r ${REPORT_ZIP_FILE} ./${REPORT_FOLDER}
44
45
46echo -e ${BODY_MESSAGE} | mail -s 'External APIs Automation '$ENV' results - ASDC '$VERSION -r 'ASDC@Automation.team' $RECIPIENTS