aboutsummaryrefslogtreecommitdiff
path: root/tests/resolve.test
blob: 41e93d840c88d18ffe76cf1800b35bf6db5b54fb (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
;;; Excercise the `resolve' routines.                  -*- Scheme -*-
;;;
;;; Copyright (C) 2009, 2021  Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of Skribilo.
;;;
;;; Skribilo is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU Lesser General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; Skribilo 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 Lesser
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU Lesser General Public License
;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

(define-module (tests resolve)
  #:use-module (skribilo ast)
  #:use-module (skribilo engine)
  #:use-module (skribilo resolve)
  #:use-module (skribilo package base)
  #:use-module (srfi srfi-64))

(define %engine
  (find-engine 'base))


(test-begin "resolve")

(test-assert "parents"
  (let* ((doc (document #:title "Doc"
                (chapter #:title "C"
                  (section #:title "S"
                    (p "par")))))
         (ch  (car (markup-body doc)))
         (sec (car (markup-body ch)))
         (par (car (markup-body sec))))
    (and (is-markup? ch 'chapter)
         (eq? (ast-parent ch) 'unspecified)
         (begin
           (resolve! doc %engine '())
           (and (eq? (ast-parent ch) doc)
                (eq? (ast-parent sec) ch)
                (eq? (ast-parent par) sec))))))

(test-assert "root document has no parent"
  (let ((doc (document #:title "Doc")))
    (resolve! doc %engine '())
    (and (not (ast-parent doc))
         (eq? doc (ast-document doc)))))

(test-assert "nested document has a parent"
  ;; Nested documents are sometimes used in the manual.
  (let* ((doc (document #:title "Doc"
                (document #:title "Nested Doc"
                  (chapter #:title "C"))))
         (sub (car (markup-body doc)))
         (ch  (car (markup-body sub))))
    (resolve! doc %engine '())
    (and (not (ast-parent doc))
         (document? sub)
         (eq? doc (ast-document doc))
         (eq? doc (ast-parent sub)))))

(test-assert "nested document is its own `ast-document'"
  (let* ((doc (document #:title "Doc"
                (document #:title "Nested Doc"
                  (chapter #:title "C"))))
         (sub (car (markup-body doc)))
         (ch  (car (markup-body sub))))
    (resolve! doc %engine '())
    (and (document? sub)
         (eq? sub (ast-document sub))
         (eq? sub (ast-document ch)))))

(test-assert "unresolved node in body"
  (let* ((resolved? #f)
         (doc (document #:title "Doc"
                (resolve (lambda (n e env)
                           (set! resolved? #t))))))
    (and (not resolved?)
         (begin
           (resolve! doc %engine '())
           resolved?))))

(test-assert "unresolved node in unresolved node in body"
  (let* ((resolved? #f)
         (doc (document #:title "Doc"
                (resolve (lambda (n e env)
                           (resolve (lambda (n e env)
                                      (set! resolved? #t))))))))
    (and (not resolved?)
         (begin
           (resolve! doc %engine '())
           resolved?))))

(test-assert "unresolved node in options"
  (let* ((resolved? #f)
         (doc (document #:title
                (resolve (lambda (n e env)
                           (set! resolved? #t)))
                "body...")))
    (and (not resolved?)
         (begin
           (resolve! doc %engine '())
           resolved?))))

(test-assert "unresolved node in processor body"
  (let* ((resolved? #f)
         (doc (document #:title "Doc"
                (processor #:combinator (lambda (e1 e2) e1)
                           (resolve (lambda (n e env)
                                      (set! resolved? #t)))))))
    (and (not resolved?)
         (begin
           (resolve! doc %engine '())
           resolved?))))

(test-assert "unresolved node in nested document"
  (let* ((resolved? #f)
         (doc (document #:title "Outer"
                (document #:title "Inner"
                  (resolve (lambda (n e env)
                             (set! resolved? #t)))))))
    (and (not resolved?)
         (begin
           (resolve! doc %engine '())
           resolved?))))

(test-assert "unresolved node product has a parent"
  (let* ((doc (document #:title "Doc"
                (resolve (lambda (n e env)
                           (chapter #:title "C"))))))
    (resolve! doc %engine '())

    (let ((ch (car (markup-body doc))))
      (and (is-markup? ch 'chapter)
           (eq? (ast-parent ch) doc)))))

(test-assert "node bindings"
  (let* ((doc (document #:title "Doc"
                (chapter #:title "C" #:ident "c"
                  (section #:title "S" #:ident "s"))))
         (ch  (car (markup-body doc)))
         (sec (car (markup-body ch))))
    (and (not (document-lookup-node doc "c"))
         (not (document-lookup-node doc "s"))
         (begin
           (resolve! doc %engine '())
           (and (eq? (document-lookup-node doc "c") ch)
                (eq? (document-lookup-node doc "s") sec))))))

(test-assert "unresolved node bindings"
  ;; Make sure nodes returned by `unresolved' nodes are eventually bound.
  (let* ((doc (document #:title "Doc"
                (resolve (lambda (n e env)
                           (chapter #:title "C" #:ident "c"
                             (section #:title "S" #:ident "s")))))))
    (and (not (document-lookup-node doc "c"))
         (not (document-lookup-node doc "s"))
         (begin
           (resolve! doc %engine '())
           (and (is-markup? (document-lookup-node doc "c") 'chapter)
                (is-markup? (document-lookup-node doc "s") 'section))))))

(test-assert "nested document bindings"
  ;; Bindings in nested documents are scoped.  This was not the case prior
  ;; to 0.9.2.
  (let* ((doc (document #:title "Doc"
                (chapter #:ident "outer")
                (document #:title "Nested Doc"
                  (chapter #:ident "inner"))))
         (out (car  (markup-body doc)))
         (sub (cadr (markup-body doc)))
         (in  (car  (markup-body sub))))
    (resolve! doc %engine '())
    (and (let ((x (document-lookup-node doc "outer")))
           (and (is-markup? x 'chapter)
                (eq? (ast-document x) doc)))
         (not (document-lookup-node doc "inner"))
         (let ((x (document-lookup-node sub "inner")))
           (and (is-markup? x 'chapter)
                (eq? (ast-document x) sub))))))

(test-assert "resolved nested document bindings"
  ;; Prior to 0.9.2, nodes of a sub-document returned by an `unresolved' node
  ;; would be bound in the root document.
  (let* ((doc (document #:title "Doc"
                (resolve (lambda (n e env)
                           (document #:title "Nested Doc"
                             (chapter #:ident "inner")))))))
    (resolve! doc %engine '())
    (and (not (document-lookup-node doc "inner"))
         (let* ((sub (car (markup-body doc)))
                (ch  (car (markup-body sub)))
                (x   (document-lookup-node sub "inner")))
           (and (document? sub)
                (is-markup? x 'chapter)
                (eq? x ch)
                (eq? (ast-parent x) sub)
                (eq? (ast-document x) sub))))))

(test-assert "node bindings in processor body"
  (let* ((doc (document #:title "Doc"
                (processor #:combinator (lambda (e1 e2) e1)
                  (chapter #:ident "c")))))
    (resolve! doc %engine '())
    (let* ((proc (car (markup-body doc)))
           (ch   (car (markup-body proc)))
           (ch*  (document-lookup-node doc "c")))
      (eq? ch ch*))))

(test-end "resolve")