aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi-test/recipes-extended/persistence-administrator/persistence-administrator/persistence-administrator_t.inc
blob: 9113c4108be571f6330525e2efbb27e216444292 (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
#!/bin/sh
get_list() {
  return 1
}

get_title() {
  echo "persistence-administrator"
}

_run_dir=/opt/tests/persistence-administrator
_run_1() {
  persadmin_tool install /Data/Data.tar.gz > /tmp/t
  ${_run_dir}/pers_admin_test_framework
}

start_NSM() {
  systemctl start dbus
  systemctl start dlt
  systemctl start dlt-dbus
  sleep 1
  /usr/bin/NodeStateManager >& /dev/null &
  sleep 4
}

stop_NSM() {
  _p=`pidof NodeStateManager`
  if [ "x${_p}" != "x" ]; then
    kill -9 ${_p}
  fi
  _p=`pidof nsm-dummy`
  if [ "x${_p}" != "x" ]; then
    systemctl stop nsm-dummy
    kill -9 ${_p}
  fi
  systemctl stop dlt-dbus
}

run_1() {
  start_NSM
  systemctl start node-startup-controller
  if [ ! -d /tmp/PAS ]; then
    rm -f /tmp/PAS
    mkdir -p /tmp/PAS
  fi
  cp ${_run_dir}/resource*.tar.gz /tmp/PAS/

  systemctl start pas-daemon
  if [ "x${1}" != "x" ]; then
    _run_1 > /tmp/t
    _c1=`cat /tmp/t | grep OK | wc -l`
    _c2=`cat /tmp/t | grep FAILED | wc -l`
    if [ "x${_c1}" = "x0" ]; then
       echo "[ FAILED ] ${_c2} tests."
    elif [ "x${_c2}" = "x0" ]; then
       echo "[ OK ] ${_c1} tests."
    else
       echo " ${_c1} PASSED, ${_c2} FAILED"
    fi
  else
    _run_1
  fi
  systemctl stop pas-daemon
  systemctl stop node-startup-controller
  stop_NSM >& /dev/null
}