aboutsummaryrefslogtreecommitdiff
path: root/seam-test.el
blob: b1920450bfa51c9ba7a13df0e1f9701d0ebbb82b (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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
;;; seam-test.el --- Tests for Seam  -*- lexical-binding: t -*-

;; Copyright (C) 2025 Spencer Williams

;; Author: Spencer Williams <spnw@plexwave.org>

;; SPDX-License-Identifier: GPL-3.0-or-later

;; This file is not part of GNU Emacs.

;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; This program 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 General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Tests for Seam.

;;; Code:

;;; FIXME: Tests can fail if certain buffer names are already in use
;;; on the test runner's system.

(require 'seam)
(require 'seam-export)
(require 'ert)
(require 'cl-lib)

(defvar seam-test-directory nil)

(defmacro seam-test-environment (&rest body)
  (declare (indent 0))
  `(let* ((seam-test-directory (make-temp-file "seam-test" t))
          (seam-note-directory seam-test-directory)
          (default-directory seam-test-directory)
          (seam-note-types '("private" "public"))
          (seam-default-note-type "private")
          (seam-title-formatter (lambda (title _type) title))
          (seam-export-template-file nil)
          (seam-export-template-string seam-export-default-template-string)
          (seam-export-alist
           `((,(file-name-concat seam-test-directory "html")
              :types ("public")
              :root-path "/")))
          ;; Manually install hooks in test directory.
          (dir-locals-directory-cache
           (cons (list seam-test-directory 'seam-note-directory nil)
                 dir-locals-directory-cache)))
     (unwind-protect
         (progn ,@body)
       (delete-directory seam-test-directory t))))

(defmacro seam-test-with-notes (options varlist &rest body)
  (declare (indent 2))
  `(seam-test-environment
     (let ,options
       (let ,(cl-loop for (name . args) in varlist
                      collect `(,name (seam-make-note ,@args)))
         (unwind-protect (progn ,@body)
           (mapcar #'kill-buffer (list ,@(mapcar #'car varlist))))))))

(defun seam-test-remove-testdir (filename)
  (string-remove-prefix (concat seam-test-directory "/") filename))

(defun seam-test-list-files ()
  (mapcar
   #'seam-test-remove-testdir
   (directory-files-recursively seam-test-directory "")))

(defun seam-test-add-contents (buffer contents)
  (with-current-buffer buffer
    (insert contents)
    (insert "\n")
    (save-buffer)))

(defun seam-test-replace-contents (buffer contents)
  (with-current-buffer buffer
    (erase-buffer)
    (insert contents)
    (insert "\n")
    (save-buffer)))

(defun seam-test-link-to-buffer (buffer)
  (format "[[seam:%s]]" (file-name-base (buffer-file-name buffer))))

(defun seam-test-links-from-html (file)
  (with-temp-buffer
    (insert-file-contents file)
    (delete-dups
     (cl-loop for ret = (re-search-forward "<a href=\"/\\(.*\\)?\">" nil t)
              while ret collect (match-string 1)))))

(ert-deftest seam-test-make-note-private ()
  (should
   (equal
    '("private/note.org")
    (seam-test-with-notes ()
        ((note "Note"))
      (seam-test-list-files)))))

(ert-deftest seam-test-make-note-public ()
  (should
   (equal
    '("html/note.html" "public/note.org")
    (seam-test-with-notes ()
        ((note "Note" "public"))
      (seam-test-list-files)))))

(ert-deftest seam-test-make-note-weird-filename ()
  (should
   (equal
    '("./Weird file name!" ("private/weird-file-name.org"))
    (seam-test-with-notes ()
        ((weird "./Weird file name! "))
      (list (buffer-name weird)
            (seam-test-list-files))))))

(ert-deftest seam-test-get-title-from-buffer ()
  (seam-test-with-notes () ((note "Note"))
    (should
     (equal
      (buffer-name note)
      (seam-get-title-from-buffer note)))))

(ert-deftest seam-test-get-title-from-file ()
  (seam-test-with-notes () ((note "Note"))
    (should
     (equal
      (buffer-name note)
      (seam-get-title-from-file (buffer-file-name note))))))

(ert-deftest seam-test-make-note-invalid-type ()
  (should-error
   (seam-test-environment
     (kill-buffer (seam-make-note "Note" "invalid-type")))))

(ert-deftest seam-test-make-note-name-conflict ()
  (should-error
   (seam-test-environment
     (kill-buffer (seam-make-note " Note 1 "))
     (kill-buffer (seam-make-note "Note_1")))))

(ert-deftest seam-test-make-note-name-conflict-different-types ()
  (should-error
   (seam-test-environment
     (kill-buffer (seam-make-note "Note"))
     (kill-buffer (seam-make-note "Note" "public")))))

(ert-deftest seam-test-rename-note ()
  (should
   (equal
    '("New name" ("private/new-name.org"))
    (seam-test-with-notes () ((note "Note"))
      (with-current-buffer note
        (erase-buffer)
        (insert "* New name\n")
        (save-buffer)
        (list (buffer-name) (seam-test-list-files)))))))

(ert-deftest seam-test-rename-conflict ()
  (should-error
   (seam-test-with-notes ()
       (let ((note1 "Note 1")
             (note2 "Note 2"))
         (with-current-buffer note2
           (erase-buffer)
           (insert "* note_1!\n")
           (unwind-protect
               (save-buffer)
             (set-buffer-modified-p nil)))))))

(ert-deftest seam-test-buffer-name-format-default ()
  (should
   (equal
    "Note (private)"
    (seam-test-with-notes ((seam-title-formatter #'seam-format-title-default))
        ((note "Note"))
      (buffer-name note)))))

(ert-deftest seam-test-buffer-name-format-custom ()
  (should
   (equal
    "[private] Note"
    (seam-test-with-notes ((seam-title-formatter
                            (lambda (title type) (format "[%s] %s" type title))))
        ((note "Note"))
      (buffer-name note)))))

(ert-deftest seam-test-link-update ()
  "Test that renaming a note updates its HTML and that of notes which link to it."
  (should
   (equal '(("qux.html")
            ("public/qux.org")
            ("html/foo.html" "html/qux.html" "public/foo.org" "public/qux.org"))
          (seam-test-with-notes ()
              ((foo "foo" "public")
               (bar "bar" "public"))
            (progn
              (seam-test-add-contents foo (seam-test-link-to-buffer bar))
              (seam-test-replace-contents bar "* qux")
              (list
               (seam-test-links-from-html "html/foo.html")
               (mapcar #'seam-test-remove-testdir (seam-get-links-from-file (buffer-file-name foo)))
               (seam-test-list-files)))))))

(ert-deftest seam-test-link-to-private ()
  "Test that a private link does not get exported in HTML."
  (should-error
   (seam-test-with-notes ()
       ((foo "foo" "public")
        (bar "bar"))
     (seam-test-add-contents foo (seam-test-link-to-buffer bar))
     (with-temp-buffer
       (insert-file-contents "html/foo.html")
       (buffer-string)
       (re-search-forward "<a href=\"/bar.html\">")))))

(ert-deftest seam-test-link-no-extension ()
  "Test that the :no-extension option causes links to render without .html
extension."
  (should
   (identity
    (seam-test-with-notes ((seam-export-alist
                            `((,(file-name-concat seam-test-directory "html")
                               :types ("public")
                               :root-path "/"
                               :no-extension t))))
        ((foo "foo" "public")
         (bar "bar" "public"))
      (seam-test-add-contents foo (seam-test-link-to-buffer bar))
      (with-temp-buffer
        (insert-file-contents "html/foo.html")
        (buffer-string)
        (re-search-forward "<a href=\"/bar\">"))))))

(ert-deftest seam-test-link-getters ()
  (should
   (equal
    '(("private/bar.org" "private/qux.org")
      ("private/foo.org")
      ("private/bar.org" "private/foo.org"))
    (seam-test-with-notes ()
        ((foo "foo")
         (bar "bar")
         (qux "qux"))
      (seam-test-add-contents foo (seam-test-link-to-buffer bar))
      (seam-test-add-contents foo (seam-test-link-to-buffer qux))
      (seam-test-add-contents bar (seam-test-link-to-buffer qux))
      (list
       (mapcar #'seam-test-remove-testdir (seam-get-links-from-file (buffer-file-name foo)))
       (mapcar #'seam-test-remove-testdir (seam-get-links-to-file (buffer-file-name bar)))
       (mapcar #'seam-test-remove-testdir (seam-get-links-to-file (buffer-file-name qux))))))))

(ert-deftest seam-test-delete-note ()
  "Test that deleting a note also deletes its HTML and re-exports linking
notes such that they no longer link to it."
  (should
   (equal
    '(nil ("html/foo.html" "public/foo.org"))
    (seam-test-with-notes ()
        ((foo "foo" "public")
         (bar "bar" "public"))
      (with-current-buffer foo
        (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
      (let ((delete-by-moving-to-trash nil))
        (seam-delete-note (buffer-file-name bar)))
      (list
       (seam-test-links-from-html "html/foo.html")
       (seam-test-list-files))))))

(ert-deftest seam-test-backlinks-public ()
  "Test that linking to a note from a public note creates a backlink."
  (should
   (identity
    (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
        ((foo "foo" "public")
         (bar "bar" "public"))
      (with-current-buffer foo
        (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
      (with-temp-buffer
        (insert-file-contents "html/bar.html")
        (re-search-forward "<a href=\"/foo.html\">"))))))

(ert-deftest seam-test-backlinks-private ()
  "Test that linking to a note from a private note does not create a
backlink."
  (should-error
   (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
       ((foo "foo")
        (bar "bar" "public"))
     (with-current-buffer foo
       (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
     (with-temp-buffer
       (insert-file-contents "html/bar.html")
       (re-search-forward "<a href=\"/foo.html\">")))))

(ert-deftest seam-test-backlinks-delete ()
  "Test that deleting a note removes backlink."
  (should-error
   (seam-test-with-notes ((seam-export-template-string "{{backlinks}}"))
       ((foo "foo" "public")
        (bar "bar" "public"))
     (with-current-buffer foo
       (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
     (let ((delete-by-moving-to-trash nil))
       (seam-delete-note (buffer-file-name foo)))
     (with-temp-buffer
       (insert-file-contents "html/bar.html")
       (re-search-forward "<a href=\"/foo.html\">")))))

(ert-deftest seam-test-set-type-private ()
  "Test that setting a public note to private will delete its HTML file and
update linking HTML files such that they no longer link to it."
  (should
   (equal
    '(nil ("html/foo.html" "private/bar.org" "public/foo.org"))
    (seam-test-with-notes ()
        ((foo "foo" "public")
         (bar "bar" "public"))
      (with-current-buffer foo
        (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
      (seam-set-note-type (buffer-file-name bar) "private")
      (list
       (seam-test-links-from-html "html/foo.html")
       (seam-test-list-files))))))

(ert-deftest seam-test-set-type-public ()
  "Test that setting a private note to public will export its HTML file and
update linking HTML files such that they link to it."
  (should
   (equal
    '(("bar.html")
      ("html/bar.html" "html/foo.html" "public/bar.org" "public/foo.org"))
    (seam-test-with-notes ()
        ((foo "foo" "public")
         (bar "bar"))
      (with-current-buffer foo
        (seam-test-add-contents foo (seam-test-link-to-buffer bar)))
      (seam-set-note-type (buffer-file-name bar) "public")
      (list
       (seam-test-links-from-html "html/foo.html")
       (seam-test-list-files))))))

(ert-deftest seam-test-set-type-invalid ()
  "Test that setting a note to an invalid type raises an error."
  (should-error
   (seam-test-with-notes ()
       ((foo "foo"))
     (seam-set-note-type (buffer-file-name foo) "invalid-type"))))

(ert-deftest seam-test-follow-link-existing ()
  "Test that following a link to an existing note opens that note."
  (should
   (equal
    "bar"
    (seam-test-with-notes ()
        ((foo "foo")
         (bar "bar"))
      (with-current-buffer foo
        (seam-test-add-contents foo "[[seam:bar]]")
        (org-previous-link)
        (org-open-at-point)
        (buffer-name))))))

(ert-deftest seam-test-follow-link-new ()
  "Test that following a link to an nonexistent note creates and opens that note."
  (should
   (equal
    '("bar" ("private/bar.org" "private/foo.org"))
    (seam-test-with-notes ()
        ((foo "foo"))
      (with-current-buffer foo
        (seam-test-add-contents foo "[[seam:bar]]")
        (goto-char 1)
        (org-next-link)
        (org-open-at-point)
        (unwind-protect
            (list
             (buffer-name)
             (seam-test-list-files))
          (kill-buffer)))))))

(ert-deftest seam-test-escape-title ()
  (should
   (equal
    "&ldquo;quotes&rdquo; &amp; &lt;symbols&gt;\n"
    (seam-test-with-notes ((seam-export-template-string "{{title}}"))
        ((note "\"quotes\" & <symbols>" "public"))
      (seam-export--file-string "html/quotes-symbols.html")))))

(provide 'seam-test)

;;; seam-test.el ends here