Addition of the window animation interface.
[profile/ivi/ico-uxf-weston-plugin.git] / tests / weston-plugin-test.slide
1 #!/bin/sh
2 #
3 #       Weston IVI Plugin Test (Resize Buf test)
4 #
5 #         Remark: This examination premises that Weston does not run.
6
7 # 1 Delete log file
8 if [ -d ../tests/testlog ] ; then
9         rm -fr ../tests/testlog/*
10 else
11         mkdir ../tests/testlog
12 fi
13
14 # 2 Weston/Wayland Envionment
15 export XDG_RUNTIME_DIR=/tmp/run-root
16 export QT_QPA_PLATFORM=wayland
17 export ELM_ENGINE=wayland_egl
18 export ECORE_EVAS_ENGINE=wayland_egl
19 #export ELM_ENGINE=wayland_shm
20 #export ECORE_EVAS_ENGINE=wayland_shm
21 export EVAS_FONT_DPI=72
22 export ECORE_IMF_MODULE=isf
23 export ELM_MODULES="ctxpopup_copypasteUI>entry/api:datetime_input_ctxpopup>datetime/api"
24 export ELM_SCALE="0.7"
25 export ELM_PROFILE=mobile
26
27 # 3 Set Environment for Test
28 export WESTON_IVI_PLUGIN_DIR="../src/.libs"
29
30 # 4 Start Weston
31 export XDG_CONFIG_HOME="../tests"
32 MOD_DIR="$PWD/../src/.libs"
33 /usr/bin/weston --backend=drm-backend.so --modules=$MOD_DIR/ico_plugin_loader.so --idle-time=0 --log=../tests/testlog/weston.log &
34 sleep 1
35
36 # 5 Set library path
37 export LD_LIBRARY_PATH=../src/.libs:$LD_LIBRARY_PATH
38
39 # 6 Start test-homescreen
40 ../tests/test-homescreen < ../tests/testdata/hs_slide.dat 2> ../tests/testlog/test-homescreen.log
41
42 # 7 End of Test
43 sleep 1
44 /usr/bin/killall weston
45 sleep 1
46
47 # 8 Check Error
48 FOUND_ERR=0
49 /bin/grep "ERR>" testlog/*
50 if [ "$?" != "1" ] ; then
51         FOUND_ERR=1
52 fi
53 /bin/grep "WRN>" testlog/*
54 if [ "$?" != "1" ] ; then
55         FOUND_ERR=1
56 fi
57 /bin/grep "Error" testlog/*
58 if [ "$?" != "1" ] ; then
59         FOUND_ERR=1
60 fi
61 /bin/grep "error" testlog/* | /bin/grep -v "error_but_no_problem_for_test"
62 if [ "$?" != "1" ] ; then
63         FOUND_ERR=1
64 fi
65 /bin/grep "Fail" testlog/* | /bin/grep -v "error_but_no_problem_for_test"
66 if [ "$?" != "1" ] ; then
67         FOUND_ERR=1
68 fi
69
70 if [ $FOUND_ERR = 0 ] ; then
71         echo "Weston IVI Plugin Test: OK"
72 else
73         echo "Weston IVI Plugin Test: ERROR"
74 fi
75