~ubuntu-branches/ubuntu/oneiric/zeitgeist-extensions/oneiric

« back to all changes in this revision

Viewing changes to fts/test.sh

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-08-05 21:27:04 UTC
  • Revision ID: james.westby@ubuntu.com-20100805212704-o4scyil4j8ewkbn2
Tags: upstream-0.0.3
Import upstream version 0.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
 
 
3
# Zeitgeist FTS Extension Test Harness
 
4
#
 
5
# Copyright © 2010 Canonical Ltd
 
6
#
 
7
# This program is free software: you can redistribute it and/or modify
 
8
# it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU Lesser General Public License
 
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
# Author:
 
21
#         Mikkel Kamstrup Erlandsen <mikkel.kamstrup@canonical.com>
 
22
#
 
23
 
 
24
# Test environment
 
25
export ZEITGEIST_FTS_TESTS=1
 
26
export ZEITGEIST_DATA_PATH="$(mktemp -d)";
 
27
export ZEITGEIST_EXTRA_EXTENSIONS=fts.SearchEngineExtension
 
28
export PYTHONPATH="$(dirname $0)"
 
29
export DISPLAY=":27";
 
30
 
 
31
# Run test helpers to set up fully offline test harness
 
32
Xvfb $DISPLAY -screen 0 1024x768x8 &
 
33
XVFB_PID=$!
 
34
sleep 1
 
35
 
 
36
dbus-launch > $ZEITGEIST_DATA_PATH/_sessionbus.sh
 
37
source $ZEITGEIST_DATA_PATH/_sessionbus.sh
 
38
sleep 1
 
39
 
 
40
zeitgeist-daemon --no-datahub &
 
41
ZEITGEIST_PID=$!
 
42
echo $ZEITGEIST_PID
 
43
sleep 1
 
44
 
 
45
python $(dirname $0)/_tests.py
 
46
kill $ZEITGEIST_PID && wait $ZEITGEIST_PID
 
47
kill $DBUS_SESSION_BUS_PID
 
48
kill $XVFB_PID && wait $XVFB_PID
 
49
rm -rf $ZEITGEIST_DATA_PATH
 
50
echo "Done"