aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi-test/recipes-extended/persistence-client-library/persistence-client-library/persistence-client-library_t.inc
blob: 9307de865172a093ae98280abef6b28fac9806da (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
#!/bin/sh
get_list() {
  return 3
}

get_title() {
  echo "persisitence-client-library"
}

_run_dir=/opt/tests/persistence-client-library

_setup_env() {
  _p=`pidof NodeStateManager`
  if [ "x${_p}" != "x" ]; then
      kill -9 ${_p} >& /dev/null
  fi
  _p=`pidof nsm-dummy`
  if [ "x${_p}" != "x" ]; then
      kill -9 ${_p} >& /dev/null
  fi

  if [ ! -e /Data/mnt-c/lt-persistence_client_library_test/ ]; then
     persadmin_tool install /Data/Data_benchmark.tar.gz > /tmp/t
  fi
  systemctl restart pas-daemon
  systemctl restart nodestatemanager-daemon
}

_run() {
  _setup_env

  if [ "x${2}" != "x" ]; then
    ${_run_dir}/$1 > /tmp/t
    _c1=`cat /tmp/t | grep :P: | wc -l`
    _c2=`cat /tmp/t | grep :F: | wc -l`
    if [ "x${_c1}" = "x0" ]; then
       echo "[ FAILED ] ${_c2} tests."
    elif [ "x${_c2}" = "x0" ]; then
       echo "[ PASSED ] ${_c1} tests."
    else
       echo " ${_c1} PASSED, ${_c2} FAILED"
    fi
  else
    ${_run_dir}/$1
  fi
}

_run_2() {
  _setup_env

  if [ "x${2}" != "x" ]; then
    yes | ${_run_dir}/$1 > /tmp/t
    _c1=`cat /tmp/t | grep "Press enter to end" | wc -l`
    if [ "x${_c1}" = "x0" ]; then
       echo "[ FAILED ]"
    else
       echo "[ PASSED ]"
    fi
  else
    yes | ${_run_dir}/$1
  fi
}

run_1() {
  _run persistence_client_library_test $*
}

run_2() {
  _run persistence_client_library_test_file $*
}

run_3() {
  _run_2 persistence_client_library_dbus_test $*
}