blob: 04fcdc1b9a5ca66da8e14f3513331c4cdad31158 [file] [log] [blame]
Emmanuel Milou1ef709f2013-09-19 15:01:27 -04001#!/bin/bash -e
Alexandre Savarda4f33d72012-08-29 17:03:23 -04002#
Emmanuel Miloucdc11992013-09-23 13:56:29 -04003# Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
Alexandre Savarda4f33d72012-08-29 17:03:23 -04004#
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
alisioncfec4d02013-07-05 09:23:07 -040045export ANDROID_NDK=$HOME/android-buildtools/ndk
46export ANDROID_SDK=$HOME/android-buildtools/sdk
47export ANDROID_HOME=$HOME/android-buildtools/sdk
Alexandre Savarda4f33d72012-08-29 17:03:23 -040048export ANDROID_SWT=$ANDROID_SDK/tools/lib/x86_64
Alexandre Lisioncd49f192013-07-19 16:27:07 -040049export ANDROID_NDK_ROOT=$ANDROID_NDK
Alexandre Savarda4f33d72012-08-29 17:03:23 -040050
51ANDROID_SDK_TOOLS=$ANDROID_SDK/tools
52
53export PATH=$PATH:$ANDROID_NDK
54export PATH=$PATH:$ANDROID_SDK
55export PATH=$PATH:$ANDROID_SDK/platform-tools
56export PATH=$PATH:$ANDROID_SDK_TOOLS
57
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040058VIRTUAL_DEVICE_ID=31
59VIRTUAL_DEVICE_ABI=armeabi-v7a
Alexandre Savarda4f33d72012-08-29 17:03:23 -040060VIRTUAL_DEVICE_NAME=sflphone-android
61
62ANDROID_PROJECT_PATH=$HOME/sflphone/sflphone-android
63
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040064ANDROID_SFLPHONE_BIN=bin/SFLPhoneHome-debug.apk
Alexandre Savard523c3482012-08-30 09:57:50 -040065ANDROID_SFLPHONE_TEST_SUITE=tests/bin/sflphoneTest-debug.apk
66
Alexandre Lision064e1e02013-10-01 16:18:42 -040067ANDROID_TEST_PACKAGE=org.sflphone.tests
Alexandre Savard523c3482012-08-30 09:57:50 -040068ANDROID_TEST_RUNNNER=android.test.InstrumentationTestRunner
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040069
Alexandre Savarda4f33d72012-08-29 17:03:23 -040070print_help() {
71 echo "Init sflphone-android test server, run test suite
72 Options:
73 -h Print this help message
74 -i Init test server environment (should be run only once)
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040075 -l Launch the emulator
Alexandre Savarda4f33d72012-08-29 17:03:23 -040076 -b Build the application, do not run the test suite
Alexandre Savardc0865ef2012-08-30 17:27:14 -040077 -t Build the test suite
Alexandre Savarda4f33d72012-08-29 17:03:23 -040078 -r Run the full test suite, priorly build the application"
79}
80
81init_build_server() {
82 android delete avd --name $VIRTUAL_DEVICE_NAME
83
84 echo "Create a new android virtual device, overwrite precendent one"
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040085 android create avd -n $VIRTUAL_DEVICE_NAME -t $VIRTUAL_DEVICE_ID -f -b $VIRTUAL_DEVICE_ABI
Alexandre Savarda4f33d72012-08-29 17:03:23 -040086}
87
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -040088launch_emulator() {
Alexandre Savarda4f33d72012-08-29 17:03:23 -040089 echo "Terminate any currently running emulator"
90 killall emulator-arm -u $USER
91
92 # build_sflphone_android
93 echo "List of currently available android virtual devices"
94 android list avd
95
96 echo "Launching the android emulator using \"$VIRTUAL_DEVICE_NAME\" avd"
97 emulator -avd $VIRTUAL_DEVICE_NAME -audio none -gpu off -partition-size 256 -no-window &
98
99 echo "Waiting for device ..."
100 adb wait-for-device
101
102 echo "List of devices currently running"
103 adb devices
104
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400105# adb push launch-sflphone.sh /data/data
106# adb shell sh /data/data/launch-sflphone.sh
107}
108
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400109build_sflphone_android() {
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400110 echo "----------------- Cleaning git tree"
Tristan Matthews394f3512013-08-12 16:00:11 -0400111 # get rid of any local modifications to git submodule
112 git submodule update
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400113 echo "----------------- Pull sflphone daemon master branch"
Alexandre Lisione5fb3412013-09-12 09:48:39 -0400114 pushd jni/sflphone
Alexandre Lision185f1052013-09-12 09:58:11 -0400115 git checkout master
Alexandre Lisione5fb3412013-09-12 09:48:39 -0400116 git pull
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400117
118 # build daemon
119 echo "----------------- Build daemon"
120 cd daemon
121 ./autogen.sh
122 ./configure-android.sh
123
124 popd
125
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400126 # android update project --target $VIRTUAL_DEVICE_ID --path $ANDROID_PROJECT_PATH
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400127 echo "----------------- Compile pjandroid stack"
Alexandre Lision2c7fa462013-07-19 09:44:37 -0400128 pushd jni/pjproject-android/
Alexandre Lision7a0401d2013-09-30 14:08:29 -0400129 ./configure-android --disable-sound --disable-oss --disable-video --enable-ext-sound --disable-speex-aec --disable-g711-codec --disable-l16-codec --disable-gsm-codec --disable-g722-codec --disable-g7221-codec --disable-speex-codec --disable-ilbc-codec --disable-sdl --disable-ffmpeg --disable-v4l2
alisionf4571d92013-07-04 17:11:35 -0400130 make dep && make
131 popd
132
alisione93ccd22013-07-04 17:28:44 -0400133 ./make-swig.sh
alisione93ccd22013-07-04 17:28:44 -0400134
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400135
alisione93ccd22013-07-04 17:28:44 -0400136
Alexandre Lision2c7fa462013-07-19 09:44:37 -0400137 cd jni/
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400138 echo "----------------- Build JNI related libraries"
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400139 # ndk-build clean
alisioncfec4d02013-07-05 09:23:07 -0400140 $ANDROID_NDK/ndk-build
Alexandre Lision2c7fa462013-07-19 09:44:37 -0400141 cd ..
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400142
Alexandre Lisiona405b6c2013-09-12 13:01:54 -0400143 echo "----------------- Build Java application"
alisione93ccd22013-07-04 17:28:44 -0400144 ant update project -p .
Alexandre Savardf0dcca02012-08-31 13:54:10 -0400145 ant clean
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400146 ant debug
147
alisionf4571d92013-07-04 17:11:35 -0400148 # echo "Upload sflphone on the virtual device"
149 #adb install -r $ANDROID_SFLPHONE_BIN
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400150 # ./adb-push-sflphone.sh
151}
152
153build_sflphone_test_suite() {
154 echo "Build test suite"
155 pushd tests
156 ant debug
157 popd
Alexandre Savard523c3482012-08-30 09:57:50 -0400158
159 echo "Upload test suite on the virtual devices"
Alexandre Savard4d6a52a2012-08-30 11:18:09 -0400160 adb install -r $ANDROID_SFLPHONE_TEST_SUITE
Alexandre Savard523c3482012-08-30 09:57:50 -0400161}
162
163run_test_suite() {
Alexandre Lision064e1e02013-10-01 16:18:42 -0400164 adb shell am instrument -w org.sflphone.tests/android.test.InstrumentationTestRunner
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400165}
166
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400167if [ "$#" -eq 0 ]; then
168 print_help
169fi
170
Alexandre Savard974363d2012-08-30 15:20:49 -0400171while getopts "hilbrt" opts; do
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400172 case $opts in
173 h)
174 print_help
175 ;;
176 i)
177 init_build_server
178 ;;
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400179 l)
180 launch_emulator
181 ;;
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400182 b)
183 build_sflphone_android
Alexandre Savard974363d2012-08-30 15:20:49 -0400184 ;;
185 t)
Alexandre Savardd9d2ceb2012-08-30 09:29:27 -0400186 build_sflphone_test_suite
Alexandre Savarda4f33d72012-08-29 17:03:23 -0400187 ;;
188 r)
189 run_test_suite
190 ;;
191 *)
192 print_help
193 ;;
194 esac
195done