blob: 21cc82e53ce0e13a441982ff89395cf25788aa5b (
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
#!/bin/sh
################################################################################
# @licence make begin@
# SPDX license identifier: MPL-2.0
#
# Copyright (C) 2016, Advanced Driver Information Technology
# This code is developed by Advanced Driver Information Technology.
# Copyright of Advanced Driver Information Technology, Bosch and DENSO.
#
# This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
#
# This Source Code Form is subject to the terms of the
# Mozilla Public License (MPL), v. 2.0.
# If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# For further information see http://www.genivi.org/.
# @licence end@
################################################################################
################################################################################
#file : g_test_dlt_daemon_gateway.sh
#
#Description : gateway unit test preparation
#
#Author Name : Onkar Palkar
# Jeevan Ramakant Nagvekar
#Email Id : onkar.palkar@wipro.com
# jeevan.nagvekar1@wipro.com
#
#History : Last modified date : 31/07/2018
ipaddr=127.0.0.1
################################################################################
# Function: -getOSname()
#
# Description -Retrieves OS name
#
getOSname()
{
OS="`uname`"
}
################################################################################
#
# Function: -cleanup()
#
# Description -Delete the dlt_test folder if it already present
# -Check weather required binaries are avaiable or not
# -Restore dlt_gateway.conf file
#
# Return -Zero on success
# -Non zero on failure
#
cleanup()
{
tmpPath=/tmp
if [ "$OS" = "QNX" ]
then
PIDOF()
{
slay -p $1 > /dev/null
if [ $? -eq '0' ]
then
return 1
else
return 0
fi
}
KILLALL()
{
slay -9 -f $1 > /dev/null
if [ $? -eq '0' ]
then
return 1
else
return 0
fi
}
else
PIDOF()
{
pidof $1 > /dev/null
return $?
}
KILLALL()
{
killall $1 > /dev/null
return $?
}
fi
cd $tmpPath
PIDOF dlt-daemon
if [ $? -eq '0' ]
then
KILLALL dlt-daemon
if [ $? -eq '1' ]
then
echo "Failed to kill daemons"
return 1
fi
fi
rm -f $tmpPath/dlt.conf
rm -f $tmpPath/dlt_gateway.conf
return 0
}
#
# Function: -setupTest()
#
# Description -Create gateway folder
# -Create and add dlt.conf and dlt_gateway.conf file in the gateway folder
#
# Return -Zero on success
# -Non zero on failure
#
setupTest()
{
which dlt-daemon > /dev/null
if [ $? -eq '1' ]
then
echo "dlt-daemon is not available"
return 1
fi
touch $tmpPath/dlt.conf
if [ $? -eq '1' ]
then
echo "Error in creating dlt.conf file"
return 1
fi
echo "SendContextRegistration = 1" >>$tmpPath/dlt.conf
echo "ECUId = ECU2" >>$tmpPath/dlt.conf
echo "GatewayMode = 1" >>$tmpPath/dlt.conf
echo "SharedMemorySize = 100000" >>$tmpPath/dlt.conf
echo "LoggingMode = 0" >>$tmpPath/dlt.conf
echo "LoggingLevel = 6" >>$tmpPath/dlt.conf
echo "LoggingFilename = /tmp/dlt.log" >>$tmpPath/dlt.conf
echo "TimeOutOnSend = 4" >>$tmpPath/dlt.conf
echo "RingbufferMinSize = 500000" >>$tmpPath/dlt.conf
echo "RingbufferMaxSize = 10000000" >>$tmpPath/dlt.conf
echo "RingbufferStepSize = 500000" >>$tmpPath/dlt.conf
echo "ControlSocketPath = /tmp/dlt-ctrl.sock" >>$tmpPath/dlt.conf
echo "GatewayConfigFile = /tmp/dlt_gateway.conf" >>$tmpPath/dlt.conf
touch $tmpPath/dlt_gateway.conf
if [ $? -eq '1' ]
then
echo "Error in creating dlt_gateway file"
return 1
fi
echo "[PassiveNode1]" >>$tmpPath/dlt_gateway.conf
echo "IPaddress=$ipaddr">>$tmpPath/dlt_gateway.conf
echo "Port=3490" >>$tmpPath/dlt_gateway.conf
echo "EcuID=ECU1" >>$tmpPath/dlt_gateway.conf
echo "Connect=OnStartup" >>$tmpPath/dlt_gateway.conf
echo "Timeout=10" >>$tmpPath/dlt_gateway.conf
echo "SendControl=0x03,0x13" >>$tmpPath/dlt_gateway.conf
echo "SendSerialHeader=0" >>$tmpPath/dlt_gateway.conf
echo "NOFiles=1" >>$tmpPath/dlt_gateway.conf
return 0
}
#
# Function: -startDaemons()
#
# Description -Start dlt-daemon as passive node
# -Start dlt-daemon as gateway node
#
# Return -Zero on success
# -Non zero on failure
#
startDaemons()
{
tmpPath=/tmp
dlt-daemon -d
dlt-daemon -d -p 3495 -c $tmpPath/dlt.conf
return 0
}
#
# Function: -checkDaemonStart
#
# Description -Check if dlt-daemon instances started successfully
#
checkDaemonStart()
{
if [ "$OS" = "QNX" ]; then
slay -p dlt-daemon > /dev/null
total=$?
else
total=`pgrep -c dlt-daemon`
fi
if [ $total -ne '2' ]; then
echo "Initialization of dlt-daemon instances failed"
exit
fi
}
help()
{
echo "Usage: "
echo "sh ./gtest_dlt_daemon_gateway.sh"
}
executeTests()
{
echo "Execute: gtest_dlt_daemon_gateway unit test"
}
#main function
########################################################################################
getOSname
echo "Cleaning up dlt-daemon instances"
cleanup
if [ $? -ne '0' ]
then
help
exit
fi
echo "Initializing test"
setupTest
if [ $? -ne '0' ]
then
help
exit
fi
echo "Restarting dlt-daemons"
startDaemons
checkDaemonStart
executeTests
|