Skip to content

Commit f94c1eb

Browse files
committed
test(xqSuite): add minimal test doc and check toc function
see #425
1 parent f3e5e2f commit f94c1eb

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

src/main/xar-resources/modules/docbook.xql

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ declare %private function docbook:to-html($nodes as node()*) {
6767
(:== DB5 HANDLING: ==:)
6868

6969
(: Will create the TOC for the DB5 document. Will only go two levels deep (deeper is not very useful for a TOC). :)
70-
declare %private function docbook:toc-db5($node as node()) as element(ul) {
70+
declare %public function docbook:toc-db5($node as node()) as element(ul) {
7171
element ul {
7272
attribute class {'toc'},
7373
for $l1 in $node//db5:sect1

src/main/xar-resources/modules/test-suite.xql

+50
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,35 @@ import module namespace diag = "http://exist-db.org/xquery/diagnostics" at "diag
1515

1616
declare namespace db5 = "http://docbook.org/ns/docbook";
1717

18+
(:~ Minimal article from the docs with inline element in next title
19+
: @see author-reference.xml :)
20+
declare variable $tests:article := document {
21+
<article xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0">
22+
<info>
23+
<title>Document title</title>
24+
<date>1Q18</date>
25+
</info>
26+
<para>Introductory paragraph(s)</para>
27+
<sect1 xml:id="main-id">
28+
<title>Title of first main section</title>
29+
<para>Lorem ipsum main</para>
30+
<sect2 xml:id="sub-id">
31+
<title>Title of first sub-section</title>
32+
<para>Lorem ipsum sub</para>
33+
<sect3 xml:id="subsub-id">
34+
<title>Title of first subsub-section</title>
35+
<para>Lorem ipsum subsub</para>
36+
</sect3>
37+
</sect2>
38+
</sect1>
39+
<sect1 xml:id="next-id">
40+
<title>Title of <tag>second</tag> main section</title>
41+
<para>Lorem ipsum next</para>
42+
</sect1>
43+
</article>
44+
45+
};
46+
1847
declare
1948
%test:name('section-headings')
2049
%test:assertEmpty
@@ -51,3 +80,24 @@ function tests:orphan-listing() {
5180
$l || ' is missing in ' || $l/ancestor::li/h3/code)
5281
else ()
5382
};
83+
84+
declare
85+
%test:name('ToC rendering')
86+
%test:assertTrue
87+
function tests:toc-inline() {
88+
let $output := <ul class="toc">
89+
<li>
90+
<a href="#main-id">Title of first main section</a>
91+
<ul>
92+
<li>
93+
<a href="#sub-id">Title of first sub-section</a>
94+
</li>
95+
</ul>
96+
</li>
97+
<li>
98+
<a href="#next-id">Title of second main section</a>
99+
</li>
100+
</ul>
101+
return
102+
docbook:toc-db5($tests:article) eq $output
103+
};

0 commit comments

Comments
 (0)