emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 7f5fca94835434271de93393aceac33201246933 7168 bytes (raw)
name: testing/lisp/test-org-ctags.el 	 # note: path name is non-authoritative(*)

  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
 
;;; test-org-ctags.el --- tests for org-ctags.el  -*- lexical-binding: t -*-

;; Copyright (C) 2024 Max Nikulin
;; Authors: Max Nikulin

;; 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 <https://www.gnu.org/licenses/>.

;;; Code:

;; Alternative implementation for `test-org-ctags/mock-command'
;; is required for cmd.exe.
(unless (string-equal "-c" shell-command-switch)
  (signal 'missing-test-dependency "POSIX shell"))

(require 'org-ctags)

;;;; Helpers:

(defun test-org-ctags/mock-command (temp-file command-name)
  "Define shell function COMMAND-NAME wrining arguments to TEMP-FILE."
  ;; Failure exit code is used to prevent further `org-ctags' actions.
  (format "%s() { printf '%%s\\n' %s \"$@\" >%s 2>&1 ; false ; } ; %s"
          command-name command-name
          (shell-quote-argument temp-file)
          command-name))

(defun test-org-ctags/get-args (temp-file base magic)
  "Read list of strings from TEMP-FILE.

If TEMP-FILE does not start from MAGIC then return
its content as a string.  Otherwise strip first line
and trailing newline, replace BASE with \"TMPDIR\" string,
return list of lines."
  (let* ((case-fold-search nil)
         (content
          (and
           (file-exists-p temp-file)
           (with-temp-buffer
             (insert-file-contents temp-file)
             (goto-char (point-min))
             (when (looking-at magic)
               (while (search-forward base nil 'noerror)
                 (replace-match "TMPDIR" 'fixedcase 'literal)))
            (goto-char (point-max))
            (when (and (bolp) (> (point) 1))
              (delete-char -1))
            (buffer-string)))))
    (if (and content (string-prefix-p magic content))
        (cdr (split-string content "\n"))
      content)))

(defmacro test-org-ctags/with-fake-ctags
    (temp-dir subdir &rest body)
  "Run BODY with `org-ctags-path-to-ctags' set to a test function.

Create a buffer backed by a file in the TEMP-DIR/SUBDIR directory."
  (declare (indent 2))
  (let ((buffer (gensym "buffer"))
        (base (gensym "base"))
        (dir (gensym "dir"))
        (temp-file (gensym "temp-file")))
    `(let* ((,base ,temp-dir)
            (,dir (concat ,base "/" ,subdir))
            (,temp-file (concat ,dir "/ctags.txt"))
            (org-ctags-path-to-ctags
             (test-org-ctags/mock-command ,temp-file "ctags-mock"))
            ,buffer)
       (make-directory ,dir)
       (unwind-protect
           ;; `org-ctags' commands call `buffer-file-name'.
           (with-current-buffer
               (setq ,buffer (find-file-noselect ,temp-file))
             (insert "Sould be overwritten by org-ctags mock script")
             (save-buffer)
             ,@body
             (test-org-ctags/get-args ,temp-file ,base "ctags-mock\n"))
         (kill-buffer ,buffer)
         (delete-file ,temp-file)
         (delete-directory ,dir)))))
\f
;;;; Comparator to have informative failures:

(defun test-org-ctags/list-elements (lst &optional indicies)
  "Select INDICIES elements from LST list.

INDICIES should be sorted in growing order."
  (if (not (and indicies (listp lst)))
      lst
    (let (selected
          (prev 0))
      (dolist (i indicies (nreverse selected))
        (setq lst (nthcdr (- i prev) lst))
        (setq prev i)
        (push (car lst) selected)))))

(defun test-org-ctags/list-elements-equal-p
    (expect actual indicies &rest _comments)
  "Call `equal' for lists EXPECT and INDICIES elements from ACTUAL.

_COMMENTS should appear in failure message."
  (equal expect
         (test-org-ctags/list-elements actual indicies)))

(defun test-org-ctags/list-elements-equal-explain
    (expect actual indicies &rest _comments)
  "`ert-eplainer' for `test-org-ctags/list-elements-equal-p'."
  (if (listp actual)
      (list
       'selected-elements
       (test-org-ctags/list-elements actual indicies))
    "Shell command failed"))

(put 'test-org-ctags/list-elements-equal-p
     'ert-explainer
     'test-org-ctags/list-elements-equal-explain)
\f
;;;; Tests:

(ert-deftest test-org-ctags/create-tags-escape ()
  "Test that `org-ctags-create-tags' escapes shell arguments."
  (let ((temp-dir (make-temp-file "test-org-ctags-" 'dir)))
    (unwind-protect
        (progn
          (should
           (test-org-ctags/list-elements-equal-p
            (list (format "--regex-orgmode=%s" org-ctags-tag-regexp))
            (test-org-ctags/with-fake-ctags temp-dir "regexp"
              (org-ctags-create-tags))
            '(2)
            "Regexp should be escaped."))

          (should
           (test-org-ctags/list-elements-equal-p
            '("TMPDIR/regular/ctags.txt")
            (test-org-ctags/with-fake-ctags temp-dir "regular"
              (org-ctags-create-tags (concat temp-dir "/regular")))
            '(7)
            "Wildcard should be expanded."
            "Directory passed as an argument."))

          (should
           (test-org-ctags/list-elements-equal-p
            '("TMPDIR/space char/TAGS" "TMPDIR/space char/ctags.txt")
            (test-org-ctags/with-fake-ctags temp-dir "space char"
              (org-ctags-create-tags (concat temp-dir "/space char")))
            '(4 7)
            "Space characters should not split arguments."
            "Directory passed as an argument."))

          (should
           (test-org-ctags/list-elements-equal-p
            '("TMPDIR/apostrophe' sep '/TAGS" "TMPDIR/apostrophe' sep '/ctags.txt")
            (test-org-ctags/with-fake-ctags temp-dir "apostrophe' sep '"
              (org-ctags-create-tags))
            '(4 7)
            "Apostrophes should be regular characters."
            "Path is derived from `default-directory'."))

          (should
           (test-org-ctags/list-elements-equal-p
            '("TMPDIR/def-dir.$HOME/TAGS" "TMPDIR/def-dir.$HOME/ctags.txt")
            (test-org-ctags/with-fake-ctags temp-dir "def-dir.$HOME"
              (org-ctags-create-tags))
            '(4 7)
            "$VARIABLES should not be expanded in directory names."
            "Path is derived from `default-directory'."))

          (should
           (test-org-ctags/list-elements-equal-p
            '("TMPDIR/arg.$HOME/TAGS" "TMPDIR/arg.$HOME/ctags.txt")
            (test-org-ctags/with-fake-ctags temp-dir "arg.$HOME"
              (org-ctags-create-tags (concat temp-dir "/arg.$HOME")))
            '(4 7)
            "$VARIABLES should not be expanded in directory names."
            "Directory passed as an argument")))
      (delete-directory temp-dir))))

(provide 'test-org-ctags)
;;; test-org.el ends here

debug log:

solving 7f5fca948 ...
found 7f5fca948 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).