blob: 546cb689bacd6271a206bd908ef6732ab8d788e1 [file] [log] [blame]
Alexandre Savarda4f33d72012-08-29 17:03:23 -04001#!/bin/bash
2#
3# Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
4#
5# Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20#
21# Additional permission under GNU GPL version 3 section 7:
22#
23# If you modify this program, or any covered work, by linking or
24# combining it with the OpenSSL project's OpenSSL library (or a
25# modified version of that library), containing parts covered by the
26# terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
27# grants you additional permission to convey the resulting work.
28# Corresponding Source for a non-source form of such a combination
29# shall include the source code for the parts of OpenSSL used as well
30# as that of the covered work.
31#
32
33# Script used by Jenkins continious integration server to build and
34# test sflphone-android project
35
36#
37# Make sure that:
38# Download android_ndk_
39# android_sdk_
40# Install java runtime engine, ant
41# Required dependencies
42# sudo apt-get install libglfw-dev
43
44# Setup environment variables
45export ANDROID_NDK=$HOME/android/android-ndk-r8b
46export ANDROID_SDK=$HOME/android/android-sdk-linux
47export ANDROID_SWT=$ANDROID_SDK/tools/lib/x86_64
48
49ANDROID_SDK_TOOLS=$ANDROID_SDK/tools
50
51export PATH=$PATH:$ANDROID_NDK
52export PATH=$PATH:$ANDROID_SDK
53export PATH=$PATH:$ANDROID_SDK/platform-tools
54export PATH=$PATH:$ANDROID_SDK_TOOLS
55
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040056VIRTUAL_DEVICE_ID=31
57VIRTUAL_DEVICE_ABI=armeabi-v7a
Alexandre Savarda4f33d72012-08-29 17:03:23 -040058VIRTUAL_DEVICE_NAME=sflphone-android
59
60ANDROID_PROJECT_PATH=$HOME/sflphone/sflphone-android
61
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040062ANDROID_SFLPHONE_BIN=bin/SFLPhoneHome-debug.apk
Alexandre Savard523c3482012-08-30 09:57:50 -040063ANDROID_SFLPHONE_TEST_SUITE=tests/bin/sflphoneTest-debug.apk
64
65ANDROID_TEST_PACKAGE=com.savoirfairelinux.sflphone.tests
66ANDROID_TEST_RUNNNER=android.test.InstrumentationTestRunner
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040067
Alexandre Savarda4f33d72012-08-29 17:03:23 -040068print_help() {
69 echo "Init sflphone-android test server, run test suite
70 Options:
71 -h Print this help message
72 -i Init test server environment (should be run only once)
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040073 -l Launch the emulator
Alexandre Savarda4f33d72012-08-29 17:03:23 -040074 -b Build the application, do not run the test suite
Alexandre Savardc0865ef2012-08-30 17:27:14 -040075 -t Build the test suite
Alexandre Savarda4f33d72012-08-29 17:03:23 -040076 -r Run the full test suite, priorly build the application"
77}
78
79init_build_server() {
80 android delete avd --name $VIRTUAL_DEVICE_NAME
81
82 echo "Create a new android virtual device, overwrite precendent one"
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040083 android create avd -n $VIRTUAL_DEVICE_NAME -t $VIRTUAL_DEVICE_ID -f -b $VIRTUAL_DEVICE_ABI
Alexandre Savarda4f33d72012-08-29 17:03:23 -040084}
85
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040086launch_emulator() {
Alexandre Savarda4f33d72012-08-29 17:03:23 -040087 echo "Terminate any currently running emulator"
88 killall emulator-arm -u $USER
89
90 # build_sflphone_android
91 echo "List of currently available android virtual devices"
92 android list avd
93
94 echo "Launching the android emulator using \"$VIRTUAL_DEVICE_NAME\" avd"
95 emulator -avd $VIRTUAL_DEVICE_NAME -audio none -gpu off -partition-size 256 -no-window &
96
97 echo "Waiting for device ..."
98 adb wait-for-device
99
100 echo "List of devices currently running"
101 adb devices
102
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400103# adb push launch-sflphone.sh /data/data
104# adb shell sh /data/data/launch-sflphone.sh
105}
106
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400107build_sflphone_android() {
108 # android update project --target $VIRTUAL_DEVICE_ID --path $ANDROID_PROJECT_PATH
109
110 echo "Build JNI related libraries"
111 # ndk-build clean
112 ndk-build -j4
113
114 echo "Build Java application"
Alexandre Savardf0dcca02012-08-31 13:54:10 -0400115 ant clean
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400116 ant debug
117
118 echo "Upload sflphone on the virtual device"
Alexandre Savard4d6a52a2012-08-30 11:18:09 -0400119 adb install -r $ANDROID_SFLPHONE_BIN
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400120 # ./adb-push-sflphone.sh
121}
122
123build_sflphone_test_suite() {
124 echo "Build test suite"
125 pushd tests
126 ant debug
127 popd
Alexandre Savard523c3482012-08-30 09:57:50 -0400128
129 echo "Upload test suite on the virtual devices"
Alexandre Savard4d6a52a2012-08-30 11:18:09 -0400130 adb install -r $ANDROID_SFLPHONE_TEST_SUITE
Alexandre Savard523c3482012-08-30 09:57:50 -0400131}
132
133run_test_suite() {
134 adb shell am instrument -w com.savoirfairelinux.sflphone.tests/android.test.InstrumentationTestRunner
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400135}
136
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400137if [ "$#" -eq 0 ]; then
138 print_help
139fi
140
Alexandre Savard974363d2012-08-30 15:20:49 -0400141while getopts "hilbrt" opts; do
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400142 case $opts in
143 h)
144 print_help
145 ;;
146 i)
147 init_build_server
148 ;;
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400149 l)
150 launch_emulator
151 ;;
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400152 b)
153 build_sflphone_android
Alexandre Savard974363d2012-08-30 15:20:49 -0400154 ;;
155 t)
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400156 build_sflphone_test_suite
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400157 ;;
158 r)
159 run_test_suite
160 ;;
161 *)
162 print_help
163 ;;
164 esac
165done