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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/bin/bash
# -*- Mode:sh; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright (C) 2015 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 warranty of
# MERCHANTABILITY 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/>.
set -e
parseargs(){
export TEST_PLAN=$1
}
run_test_plan(){
if [ -z "$SNAPCRAFT" ]; then
export SNAPCRAFT=snapcraft
fi
# Create a temporary directory so that we can run 'manage.py develop' and
# create the .provider file there
temp_dir=$(mktemp -d)
# Develop the provider, this will let us run tests on it
./manage.py develop -d $temp_dir
# Set PROVIDERPATH (see plainbox(1)) so that we can see the provider
# without installing it.
export PROVIDERPATH=$PROVIDERPATH:$temp_dir
# create symlink from the provider's data directory to examples for them to
# be available to the tests
if [ $TEST_PLAN == "examples" ]; then
BASEDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/.. && pwd )
TARGET_PATH=${BASEDIR}/integration-tests/data/examples
if [ -z $ADT_ARTIFACTS ]; then
EXAMPLES_PATH=${BASEDIR}/examples
else
EXAMPLES_PATH=/usr/share/snapcraft/examples
fi
ln -fs ${EXAMPLES_PATH} ${TARGET_PATH}
fi
# Run the test plan
plainbox run \
-T 2015.com.canonical.snapcraft::"$TEST_PLAN" \
-f json -o $temp_dir/result.json
# remove the examples symlink
if [ $TEST_PLAN == "examples" ]; then
rm ${TARGET_PATH}
fi
# Analyze the result and fail if there are any failures
python3 - << __PYTHON__
import json
with open("$temp_dir/result.json", "rt", encoding="utf-8") as stream:
results = json.load(stream)
failed = False
for test_id, result in sorted(results['result_map'].items()):
print('{0}: {1}'.format(test_id, result['outcome']))
if result['outcome'] != 'pass':
failed = True
print("Overall: {0}".format("fail" if failed else "pass"))
raise SystemExit(failed)
__PYTHON__
}
parseargs "$@"
run_test_plan
|