qpath 0.1.1

Register, list, and maintain frequently used file and directory paths
;;; qpath-test.el --- Tests for qpath.el -*- lexical-binding: t; -*-

;; Copyright (C) 2026 Akinori Musha
;; SPDX-License-Identifier: MIT

;;; Code:

(require 'ert)
(require 'qpath)

(defmacro qpath-test--with-command (script &rest body)
  "Run BODY with `qpath-command' bound to temporary SCRIPT."
  (declare (indent 1))
  `(let ((qpath-command (make-temp-file "qpath-test-command")))
     (unwind-protect
         (progn
           (with-temp-file qpath-command
             (insert ,script))
           (set-file-modes qpath-command #o755)
           ,@body)
       (delete-file qpath-command))))

(ert-deftest qpath-read-parses-json-output ()
  (qpath-test--with-command
      "#!/bin/sh
printf '[{\"abbr\":\"i\",\"desc\":\"Init\",\"path\":\"/tmp/init.el\",\"shell_path\":\"/tmp/init.el\"}]'
"
    (let ((entries (qpath--read "file")))
      (should (= 1 (length entries)))
      (should (equal "i" (gethash "abbr" (car entries))))
      (should (equal "Init" (gethash "desc" (car entries)))))))

(ert-deftest qpath-update-refreshes-caches ()
  (qpath-test--with-command
      "#!/bin/sh
case \"$3\" in
  file)
    printf '[{\"abbr\":\"i\",\"desc\":\"Init\",\"path\":\"/tmp/init.el\",\"shell_path\":\"/tmp/init.el\"}]'
    ;;
  directory)
    printf '[{\"abbr\":\"s\",\"desc\":\"Src\",\"path\":\"/tmp/\",\"shell_path\":\"/tmp/\"}]'
    ;;
esac
"
    (let ((visit-command (symbol-function 'qpath-visit-file))
          (insert-command (symbol-function 'qpath-insert-directory))
          (qpath-visit-file-extra-sections
           '(["Version Control"
              ("=" "Show diff" ignore)]))
          qpath--file-cache
          qpath--directory-cache)
      (should (qpath-update t))
      (should (equal "i" (gethash "abbr" (car qpath--file-cache))))
      (should (equal "s" (gethash "abbr" (car qpath--directory-cache))))
      (should (eq visit-command (symbol-function 'qpath-visit-file)))
      (should (eq insert-command (symbol-function 'qpath-insert-directory))))))

(ert-deftest qpath-suffixes-use-command-symbols ()
  (let* ((file (make-temp-file "qpath-test-file"))
         (directory (file-name-as-directory temporary-file-directory))
         (file-entry (make-hash-table :test 'equal))
         (directory-entry (make-hash-table :test 'equal)))
    (unwind-protect
        (progn
          (puthash "abbr" "i" file-entry)
          (puthash "desc" "Init" file-entry)
          (puthash "path" file file-entry)
          (puthash "abbr" "t" directory-entry)
          (puthash "desc" "Temporary files" directory-entry)
          (puthash "path" directory directory-entry)
          (puthash "shell_path" directory directory-entry)
          (let* ((qpath--file-cache (list file-entry))
                 (qpath--directory-cache (list directory-entry))
                 (file-suffix (car (qpath--file-suffixes)))
                 (directory-suffix (car (qpath--directory-suffixes)))
                 (file-command (nth 2 file-suffix))
                 (directory-command (nth 2 directory-suffix)))
            (should (symbolp file-command))
            (should (commandp file-command))
            (should (symbolp directory-command))
            (should (commandp directory-command))
            (with-temp-buffer
              (call-interactively directory-command)
              (should (equal directory (buffer-string))))))
      (delete-file file))))

(ert-deftest qpath-transient-setup-accepts-generated-suffixes ()
  (let* ((file (make-temp-file "qpath-test-file"))
         (directory (file-name-as-directory temporary-file-directory))
         (file-entry (make-hash-table :test 'equal))
         (directory-entry (make-hash-table :test 'equal)))
    (unwind-protect
        (progn
          (puthash "abbr" "i" file-entry)
          (puthash "desc" "Init" file-entry)
          (puthash "path" file file-entry)
          (puthash "abbr" "t" directory-entry)
          (puthash "desc" "Temporary files" directory-entry)
          (puthash "path" directory directory-entry)
          (puthash "shell_path" directory directory-entry)
          (let ((qpath--file-cache (list file-entry))
                (qpath--directory-cache (list directory-entry)))
            (qpath--define-transients)
            (transient-setup 'qpath--visit-file-transient)
            (transient-setup 'qpath--insert-directory-transient)))
      (delete-file file))))

(ert-deftest qpath-transient-setup-accepts-prefix-keys ()
  (let* ((single-file (make-temp-file "qpath-test-single-file"))
         (double-file (make-temp-file "qpath-test-double-file"))
         (single-entry (make-hash-table :test 'equal))
         (double-entry (make-hash-table :test 'equal)))
    (unwind-protect
        (progn
          (puthash "abbr" "i" single-entry)
          (puthash "desc" "Single key" single-entry)
          (puthash "path" single-file single-entry)
          (puthash "abbr" "ii" double-entry)
          (puthash "desc" "Double key" double-entry)
          (puthash "path" double-file double-entry)
          (let ((qpath--file-cache (list single-entry double-entry))
                qpath--directory-cache)
            (qpath--define-transients)
            (transient-setup 'qpath--visit-file-transient)))
      (delete-file single-file)
      (delete-file double-file))))

(provide 'qpath-test)

;;; qpath-test.el ends here