summaryrefslogtreecommitdiffstats
path: root/debian/tests/test-extension-shared
blob: f9d794163294e3be389a9088e86dc93a1066e9ff (plain)
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
#!/bin/bash
# autopkgtest check: Install a test extension shared
# (c) 2017 Software in the Public Interest, Inc.
# Authors: Rene Engelhard <rene@debian.org>

set -e
set -E

if [ -n "$AUTOPKGTEST_TMP" ]; then
        TMP=`mktemp -q -p $AUTOPKGTEST_TMP`
else
        TMP=`mktemp -q`
fi


echo
echo "====== Add the extension ======"
# does it install fine?
unopkg add --shared -v /usr/share/libreoffice/TestExtension.oxt

echo
echo "====== Show extension status ======"
# does it list? For whatever reason unopkg leaves a stale .lock behind when
# doing this grep directly on the output so do it on a tmpfile
unopkg list --shared | tee $TMP
grep -q org.libreoffice.smoketest.TestExtension $TMP || exit 1
rm $TMP

echo
echo "====== Remove the extension ======"
# does it remove?
unopkg remove --shared -v org.libreoffice.smoketest.TestExtension