summaryrefslogtreecommitdiffstats
path: root/ci/tests/pkg-tests.sh
blob: dbeaac6d20aba93850eb16dfc17fc05ff0f21d00 (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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#! /bin/bash
#
# Copyright (c) 2023 [Ribose Inc](https://www.ribose.com).
# All rights reserved.
# This file is a part of rnp
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

set -o errexit -o pipefail -o noclobber -o nounset

DIR0="$( cd "$( dirname "$0" )" && pwd )"

# Defaults applicable to 'normal' installation and not build environment
: "${INSTALL_PREFIX:=/usr/local}"
DIR_LIB="$INSTALL_PREFIX/lib"
DIR_INC="$INSTALL_PREFIX/include/rnp"
DIR_BIN="$INSTALL_PREFIX/bin"
# DIR_MAN="$INSTALL_PREFIX/share/man"
DIR_CMAKE="$INSTALL_PREFIX/lib/cmake/rnp"

declare expected_libraries=(
    "$DIR_LIB/librnp.so.0"
)

declare expected_devlibraries=(
    "$DIR_LIB/librnp.so"
    "$DIR_LIB/librnp.a"
    "$DIR_LIB/libsexp.a"
    "$DIR_LIB/pkgconfig/librnp.pc"
)

declare expected_includes=(
    "$DIR_INC/rnp.h"
    "$DIR_INC/rnp_err.h"
    "$DIR_INC/rnp_export.h"
)

declare expected_cmakefiles=(
    "$DIR_CMAKE/rnp-config.cmake"
    "$DIR_CMAKE/rnp-config-version.cmake"
    "$DIR_CMAKE/rnp-targets.cmake"
    "$DIR_CMAKE/rnp-targets-release.cmake"
)

declare expected_binaries=(
    "$DIR_BIN/rnp"
    "$DIR_BIN/rnpkeys"
)

# Installation of man files does not work as expected
#declare expected_manuals=(
#    "$DIR_MAN/man3/librnp.3.gz"
#    "$DIR_MAN/man1/rnp.1.gz"
#    "$DIR_MAN/man1/rnpkeys.1.gz"
#)

t_installed_files() {
    local f=
    for f in "$@"
    do
        assertTrue "$f was not installed" "[ -e $f ]"
    done
}

test_installed_files_librnp() {
# shellcheck disable=SC2046
    pkg add $(ls ./*.pkg)

    t_installed_files "${expected_libraries[@]}"
    t_installed_files "${expected_devlibraries[@]}"
    t_installed_files "${expected_includes[@]}"
    t_installed_files "${expected_cmakefiles[@]}"
    t_installed_files "${expected_binaries[@]}"

# Installation of man files does not work as expected
#    t_installed_files "${expected_manuals[@]}"

    pkg delete rnp0
}

# ......................................................................
# shellcheck source=/dev/null
. "$DIR0"/shunit2/shunit2