#!/bin/bash
function cleanup()
{
echo ""
}
function check_ret()
{
ret=$1
if [ "$ret" -ne 0 ]; then
echo "Validation of last command failed, ret(${ret})"
exit $ret
fi
}
function error_on_zero()
{
ret=$1
if [ "$ret" -eq 0 ]; then
echo "Validation of last command failed, ret(${ret})"
exit 1
fi
}
function exec_cmd()
{
echo "executing $@"
$@ >/dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Failed to execute $@"
exit 1
fi
}
function configure_genieacs()
{
sleep 10
echo "create a new user"
curl -X POST 'http://localhost:3000/init' -H "Content-Type: application/json" --data '{"users": true, "presets": true, "filters": true, "device": true, "index": true, "overview": true}' >/dev/null 2>&1
check_ret $?
echo "delete the default provision inform"
curl -X DELETE 'http://localhost:7557/provisions/inform' >/dev/null 2>&1
check_ret $?
echo "add a new provision inform"
curl -X PUT 'http://localhost:7557/provisions/inform' --data-binary '@/tmp/connection_request_auth' >/dev/null 2>&1
check_ret $?
#echo "get the supported provisions"
#curl -X GET 'http://localhost:7557/provisions/'
#check_ret $?
echo "upload firmware image to genieacs server"
exec_cmd dd if=/dev/zero of=/tmp/firmware_v1.0.bin bs=25MB count=1
echo "Valid" > /tmp/firmware_v1.0.bin
curl -X PUT 'http://localhost:7557/files/firmware_v1.0.bin' --data-binary '@/tmp/firmware_v1.0.bin' --header "fileType: 1 Firmware Upgrade Image" --header "oui: XXX" --header "productClass: FirstClass" --header "version: 000000001" >/dev/null 2>&1
check_ret $?
}
function configure_download_firmware()
{
echo "Install lighttpd"
mkdir -p /tmp/firmware/
exec_cmd dd if=/dev/zero of=/tmp/firmware/firmware_v1.0.bin bs=25MB count=1
echo "Valid" > /tmp/firmware/firmware_v1.0.bin
exec_cmd dd if=/dev/zero of=/tmp/firmware/invalid_firmware_v1.0.bin bs=25MB count=1
echo "Invalid" > /tmp/firmware/invalid_firmware_v1.0.bin
}
function check_cwmp_status()
{
iter=0
state=0
while [ $iter -lt 10 ]
do
status=`ubus call tr069 status | jq -r ".cwmp.status"`
if [ "${status}" == "up" ]; then
state=1
break
fi
iter=$(( $iter + 1))
sleep 2
done
if [ $state -eq 0 ]; then
echo "icwmpd is not started correctly, (the current status=$status)"
exit 1
fi
}
function clean_icwmp()
{
if [ -f Makefile ]; then
exec_cmd make maintainer-clean
exec_cmd make -C test/cmocka clean
find -name '*.gcda' -exec rm {} -fv \;
find -name '*.gcno' -exec rm {} -fv \;
find -name '*.gcov' -exec rm {} -fv \;
find -name '*.deps' -exec rm {} -rfv \;
find -name '*.so' -exec rm {} -fv \;
rm -f *.o *.log *.xml vgcore.* firmware_v1.0.bin
rm -rf report
fi
}
function build_icwmp()
{
COV_CFLAGS='-g -O0 -fprofile-arcs -ftest-coverage'
COV_LDFLAGS='--coverage'
# clean icwmp
clean_icwmp
# compile icwmp
autoreconf -i >/dev/null 2>&1
./configure CFLAGS="$COV_CFLAGS" LDFLAGS="$COV_LDFLAGS" --enable-acs=multi --enable-debug --enable-libopenssl >/dev/null 2>&1
make CFLAGS="$COV_CFLAGS" LDFLAGS="$COV_LDFLAGS"
check_ret $?
}
function install_uspd()
{
# install uspd
cd /opt/dev
rm -rf uspd
exec_cmd git clone https://dev.iopsys.eu/iopsys/uspd.git
cd /opt/dev/uspd
exec_cmd ./gitlab-ci/install-dependencies.sh
exec_cmd ./gitlab-ci/setup.sh
exec_cmd make
exec_cmd cp uspd /usr/sbin/uspd
}
function check_valgrind_xml() {
echo "Checking memory leaks..."
grep -q "UninitCondition" memory-report.xml
error_on_zero $?
grep -q "Leak_PossiblyLost" memory-report.xml
error_on_zero $?
grep -q "Leak_DefinitelyLost" memory-report.xml
error_on_zero $?
grep -q "Leak_StillReachable" memory-report.xml
error_on_zero $?
}