summaryrefslogtreecommitdiffstats
path: root/src/tests/man-so-links-same-section
blob: bda7190a384e60e113a45c387661c37b602e6abd (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
#! /bin/sh

# Test for relative .so links between man pages in the same section (e.g. ".so bar.1").
#   https://bugzilla.redhat.com/show_bug.cgi?id=693458

: "${srcdir=.}"
# shellcheck source-path=SCRIPTDIR
. "$srcdir/testlib.sh"

: "${MAN=man}"

init
fake_config /usr/share/man
MANPATH="$tmpdir/usr/share/man"
export MANPATH

cat >"$tmpdir/fake-program" <<EOF
#! /bin/sh
exec cat
EOF
chmod +x "$tmpdir/fake-program"
PATH="$abstmpdir:$PATH"
export PATH

cat >>"$tmpdir/manpath.config" <<EOF
DEFINE tbl fake-program
DEFINE nroff fake-program
EOF

# There are 2 kind of tests. First, when destination is not gzipped, what means
# that .so link contains full filename and second, when the destination is
# gzipped, and .so link doesn't contain the file suffix.

write_page test 1 "$tmpdir/usr/share/man/man1/test.1" \
	UTF-8 '' '' 'test \- top-level test page'
echo '.so man1/test.1' >"$tmpdir/usr/share/man/man1/test-fullso.1"
echo '.so test.1' >"$tmpdir/usr/share/man/man1/test-relso.1"

write_page testb 1 "$tmpdir/usr/share/man/man1/testb.1.gz" \
	UTF-8 'gz' '' 'testb \- top-level test page'
echo '.so man1/testb.1' >"$tmpdir/usr/share/man/man1/test-fullsob.1"
echo '.so testb.1' >"$tmpdir/usr/share/man/man1/test-relsob.1"

cat >"$tmpdir/1.exp" <<'EOF'
.TH test 1
.SH NAME
test \- top-level test page
.SH DESCRIPTION
test
EOF

cat >"$tmpdir/2.exp" <<'EOF'
.TH testb 1
.SH NAME
testb \- top-level test page
.SH DESCRIPTION
test
EOF

run $MAN -C "$tmpdir/manpath.config" test | \
	grep -v '^\.l[flt] ' >"$tmpdir/1.out"
expect_files_equal 'test(1) without .so link' \
	"$tmpdir/1.exp" "$tmpdir/1.out"

run $MAN -C "$tmpdir/manpath.config" test-fullso | \
	grep -v '^\.l[flt] ' >"$tmpdir/2.out"
expect_files_equal 'test-fullso(1) .so link with section' \
	"$tmpdir/1.exp" "$tmpdir/2.out"

run $MAN -C "$tmpdir/manpath.config" test-relso | \
	grep -v '^\.l[flt] ' >"$tmpdir/3.out"
expect_files_equal 'test-relso(1) .so link without section' \
	"$tmpdir/1.exp" "$tmpdir/3.out"


run $MAN -C "$tmpdir/manpath.config" testb | \
	grep -v '^\.l[flt] ' >"$tmpdir/4.out"
expect_files_equal 'testb(1) without .so link; gzipped' \
	"$tmpdir/2.exp" "$tmpdir/4.out"

run $MAN -C "$tmpdir/manpath.config" test-fullsob | \
	grep -v '^\.l[flt] ' >"$tmpdir/5.out"
expect_files_equal 'test-fullsob(1) .so link with section; gzipped' \
	"$tmpdir/2.exp" "$tmpdir/5.out"

run $MAN -C "$tmpdir/manpath.config" test-relsob | \
	grep -v '^\.l[flt] ' >"$tmpdir/6.out"
expect_files_equal 'test-relsob(1) .so link without section; gzipped' \
	"$tmpdir/2.exp" "$tmpdir/6.out"

finish