~mandel/ubuntuone-control-panel/auto-update-looping-call

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
#! /bin/bash
#
# Author: Natalia Bidart <natalia.bidart@canonical.com>
#
# Copyright 2010 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
# PURPOSE.  See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program.  If not, see <http://www.gnu.org/licenses/>.

QT_TESTS_PATH="ubuntuone/controlpanel/gui/qt/tests, ubuntuone/controlpanel/gui/qt/main/tests"
DBUS_TESTS_PATH=ubuntuone/controlpanel/dbustests
WINDOWS_TESTS=test_windows.py

set -e

if [ $# -ne 0 ]; then
    # run specific module given by the caller
    MODULE="$@"
else
    # run all tests, useful for tarmac and reviews
    MODULE="ubuntuone/controlpanel"
fi

style_check() {
    u1lint --ignore ubuntuone/controlpanel/gui/qt/ui
    if [ -x `which pep8` ]; then
        pep8 --exclude '.svn,CVS,.bzr,.hg,.git,*_ui.py,*_rc.py' --repeat . bin/*
    else
        echo "Please install the 'pep8' package."
    fi
}

XVFB_CMDLINE=""
XVFB=$(which xvfb-run)
if [ $XVFB ]; then
    XVFB_CMDLINE="$XVFB -a"
fi

echo "*** Running test suite for ""$MODULE"" ***"
u1trial --reactor=gi -p "$DBUS_TESTS_PATH, $QT_TESTS_PATH" -i "$WINDOWS_TESTS" "$MODULE"

echo "*** Running DBus test suite ***"
u1trial --reactor=glib "$DBUS_TESTS_PATH"

echo "*** Running QT test suite for ""$MODULE"" ***"
./setup.py build
$XVFB_CMDLINE u1trial -i "$WINDOWS_TESTS" --reactor=qt4 --gui "$MODULE"
rm -rf _trial_temp
rm -rf build

style_check