aboutsummaryrefslogtreecommitdiff
path: root/file-transferor.sh
blob: ea91089ef8ec006b8176ee6d1942c588f6db90d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Copyright (c) 2016, The Linux Foundation. All rights reserved.
# 
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
#       copyright notice, this list of conditions and the following
#       disclaimer in the documentation and/or other materials provided
#       with the distribution.
#     * Neither the name of The Linux Foundation nor the names of its
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
# 
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
# ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#!/bin/bash
#file transferor
#transfers test-job script files to target-device via scp
#operated by tiny-apts
#WSTATION is short for WORKING STATION

############################### function definition ################################################
createDirOnTargetDevice () # $1 - dir path
{
	STDERR="$( (ssh $TARGET_ADDR mkdir -p $1) 2>&1)" || 
(($WSTATION_LOGGER_PATH $THIS_FILE_NAME $FAIL -v "$STDERR" $LINENO) && echo "ssh in file-transferor failed see verbose log"  && exit $EXIT_ERR) || exit $EXIT_ERR
}

copyToTargetDevice () # $1 - src dir.  $2 - dest dir    # copies all files from recieved dir to traget device
{
#	STDERR="$( (scp $1/* $TARGET_ADDR:$2) 2>&1)" || 
#(($WSTATION_LOGGER_PATH $THIS_FILE_NAME $LOG -v "$STDERR" $LINENO) && echo "scp in file-transferor failed see verbose log"  && exit $EXIT_ERR) || exit #$EXIT_ERR

	STDERR="$( (scp -r $1 $TARGET_ADDR:$2) 2>&1)" || 
(($WSTATION_LOGGER_PATH $THIS_FILE_NAME $LOG -v "$STDERR" $LINENO) && echo "scp in file-transferor failed see verbose log"  && exit $EXIT_ERR) || exit #$EXIT_ERR


}
################################## script execution #################################################

GET_ENV_VAR=$1

WSTATION_TEST_JOBS_PATH="$PWD/$($GET_ENV_VAR TEST_SCRIPT_DIR)"
WSTATION_UTIL_PATH="$PWD/$($GET_ENV_VAR UTIL_DIR)"
WSTATION_LOGGER_PATH="$PWD/$($GET_ENV_VAR LOGGER_FILE)"

TARGET_BASE_PATH="$($GET_ENV_VAR TARGET_BASE_PATH)"
TARGET_TEST_JOBS_PATH="$TARGET_BASE_PATH/$($GET_ENV_VAR TEST_SCRIPT_DIR)"
TARGET_UTIL_PATH="$TARGET_BASE_PATH/$($GET_ENV_VAR UTIL_DIR)"
TARGET_ADDR="root@$($GET_ENV_VAR TARGET_DEVICE_IP)"

EXPECTED_ARGS_NUM=1

THIS_FILE_NAME=${0##*/}
FAIL=1
LOG=3
EXIT_ERR=1

$WSTATION_UTIL_PATH/check-args-num.sh $# $EXPECTED_ARGS_NUM $WSTATION_LOGGER_PATH $THIS_FILE_NAME || exit $EXIT_ERR

#change permitions before transfering to device 
chmod a+x -R $WSTATION_TEST_JOBS_PATH
chmod a+x -R $WSTATION_UTIL_PATH

#create dir for test-job scripts
createDirOnTargetDevice $TARGET_TEST_JOBS_PATH || exit $EXIT_ERR

#copy test-job scripts to target-device
copyToTargetDevice $WSTATION_TEST_JOBS_PATH $TARGET_BASE_PATH || exit $EXIT_ERR

#create dir for utils to use from device
createDirOnTargetDevice $TARGET_UTIL_PATH || exit $EXIT_ERR

#copy logger to util - so test-scripts could use logger on the device
cp logger.sh $WSTATION_UTIL_PATH
#copy environmentVars.txt to util so get-env-var-val-target.sh could use it to give tests-scripts access to environment variables
cp environmentVars.txt $WSTATION_UTIL_PATH

#copy util files to target-device
copyToTargetDevice $WSTATION_UTIL_PATH $TARGET_BASE_PATH || exit $EXIT_ERR