[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole 349ffa1ea9 5/6: Merge branch 'master' into rs
From: |
ELPA Syncer |
Subject: |
[elpa] externals/hyperbole 349ffa1ea9 5/6: Merge branch 'master' into rsw and fix a few tests |
Date: |
Fri, 27 Dec 2024 09:58:26 -0500 (EST) |
branch: externals/hyperbole
commit 349ffa1ea947277bad9e61e9050c8c371e27a1b9
Merge: 79441e9b4a 4f8fa6f04d
Author: bw <rsw@gnu.org>
Commit: bw <rsw@gnu.org>
Merge branch 'master' into rsw and fix a few tests
---
ChangeLog | 15 ++++++
test/hywiki-tests.el | 144 ++++++++++++++++++++++++++++++++++++++++-----------
2 files changed, 129 insertions(+), 30 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b901872170..4e0a657b22 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2024-12-26 Bob Weiner <rsw@gnu.org>
+* test/hywiki-tests.el (hywiki-tests--add-activity,
+ hywiki-tests--add-org-id): Fix Mats prior updates
+ to work with new typed referents.
+
* hywiki.el (hywiki-add-path-link): Add optional FILE and POS arguments
to better evaluate intermittent test bug in 'hywiki-tests--add-path-link'.
It fails on a call to this function only when all tests are run; never
@@ -56,6 +60,12 @@
to 'hywiki-maybe-highlight-wikiwords-in-frame'.
Rename 'hywiki-get-page-list' to 'hywiki-get-wikiword-list'.
+2024-12-24 Mats Lidell <matsl@gnu.org>
+
+* test/hywiki-tests.el (hywiki-tests--a-wikiword-in-hywiki-directory)
+ (hywiki-tests--wikiword-identified-with-delimiters): Add tests for
+ hywiki words with delimiters.
+
2024-12-23 Bob Weiner <rsw@gnu.org>
* test/hywiki-tests.el (hywiki-tests--add-*): Rewrite to handle typed
@@ -82,6 +92,11 @@
(hywiki-create-page): Add type to hash value so is a cons of
(page . <page-file-path>).
+2024-12-23 Mats Lidell <matsl@gnu.org>
+
+* test/hywiki-tests.el (hywiki-tests--add-activity)
+ (hywiki-tests--add-org-roam-node): Add tests.
+
2024-12-22 Bob Weiner <rsw@gnu.org>
* hywiki.el (hywiki-find-referent): Fix doc string to describe how
diff --git a/test/hywiki-tests.el b/test/hywiki-tests.el
index 5593d3d3fc..d7df9fae4b 100644
--- a/test/hywiki-tests.el
+++ b/test/hywiki-tests.el
@@ -3,7 +3,7 @@
;; Author: Mats Lidell
;;
;; Orig-Date: 18-May-24 at 23:59:48
-;; Last-Mod: 26-Dec-24 at 22:49:26 by Bob Weiner
+;; Last-Mod: 26-Dec-24 at 23:34:51 by Bob Weiner
;;
;; SPDX-License-Identifier: GPL-3.0-or-later
;;
@@ -22,6 +22,7 @@
(require 'with-simulated-input)
(require 'hy-test-helpers)
(require 'hywiki)
+(require 'hsys-org)
(require 'ox-publish)
(ert-deftest hywiki-tests--hywiki-create-page--adds-file-in-wiki-folder ()
@@ -95,6 +96,68 @@
(hywiki-mode 0)
(hy-delete-dir-and-buffer hywiki-directory))))
+(ert-deftest hywiki-tests--a-wikiword-in-hywiki-directory ()
+ "Verify WikiWord is identified if in `hywiki-directory'."
+ (let* ((hsys-org-enable-smart-keys t)
+ (hywiki-directory (make-temp-file "hywiki" t))
+ (referent (hywiki-add-page "WikiWord"))
+ (wiki-page (cdr referent)))
+ (unwind-protect
+ (with-current-buffer (find-file-noselect wiki-page)
+ (hywiki-mode 0)
+ (insert "AnotherWikiWord")
+ (newline nil t)
+ (goto-char 4)
+ (should (hywiki-word-at)))
+ (hy-delete-file-and-buffer wiki-page)
+ (hy-delete-dir-and-buffer hywiki-directory))))
+
+(ert-deftest hywiki-tests--wikiword-identified-with-delimiters ()
+ "Verify WikiWord is identified when surrounded by delimiters."
+ (let ((hsys-org-enable-smart-keys t)
+ (hywiki-directory (make-temp-file "hywiki" t)))
+ (unwind-protect
+ (progn
+ (hywiki-mode 1)
+
+ ;; Matches a WikiWord
+ (dolist (v '("WikiWord" "[WikiWord]" "[[WikiWord]]" "{WikiWord}"
"(WikiWord)"
+ "<WikiWord>" "<<WikiWord>>" "{[[WikiWord]]}"
"([[WikiWord]])"
+ "[WikiWord AnotherWord]"
+ ))
+ (with-temp-buffer
+ (org-mode)
+ (insert v)
+ (newline nil t)
+ (goto-char 6)
+ (should (string= "WikiWord" (hywiki-word-at)))))
+
+ ;; Identifies as org link (Note: Not checked if target
+ ;; exists.) AND matches WikiWord
+ (dolist (v '("[[hy:WikiWord]]" "[[hy:WikiWord\\]]]"))
+ (with-temp-buffer
+ (org-mode)
+ (insert v)
+ (newline nil t)
+ (goto-char 6)
+ (font-lock-ensure)
+ (should (hsys-org-face-at-p 'org-link))
+ (should (string= "WikiWord" (hywiki-word-at)))))
+
+ ;; Identifies as org link (Note: Not checked if target
+ ;; exists.) AND DOES NOT match WikiWord
+ (dolist (v '("[[WikiWord AnotherWord]]"))
+ (with-temp-buffer
+ (org-mode)
+ (insert v)
+ (newline nil t)
+ (goto-char 6)
+ (font-lock-ensure)
+ (should (hsys-org-face-at-p 'org-link))
+ (should-not (string= "WikiWord" (hywiki-word-at))))))
+ (hywiki-mode 0)
+ (hy-delete-dir-and-buffer hywiki-directory))))
+
(ert-deftest hywiki-tests--at-wikiword-finds-word-and-section ()
"Verify `hywiki-word-at' finds WikiWord and section if available."
(let ((hywiki-directory (make-temp-file "hywiki" t)))
@@ -600,7 +663,17 @@ Note special meaning of `hywiki-allow-plurals-flag'."
(should (equal referent (hywiki-get-referent "WikiWord"))))
(hy-delete-dir-and-buffer hywiki-directory))))
-;; hywiki-add-activity -- Requires activities
+(ert-deftest hywiki-tests--add-activity ()
+ "Verify `hywiki-add-activity'."
+ (let ((hywiki-directory (make-temp-file "hywiki" t))
+ (wikiword "WikiWord"))
+ (unwind-protect
+ (mocklet ((require => t)
+ (activities-completing-read => "activity"))
+ (hywiki-add-activity wikiword)
+ (should (equal '(activity . "activity")
+ (hywiki-get-referent wikiword))))
+ (hy-delete-dir-and-buffer hywiki-directory))))
(ert-deftest hywiki-tests--add-bookmark ()
"Verify `hywiki-add-bookmark'."
@@ -696,34 +769,45 @@ Note special meaning of `hywiki-allow-plurals-flag'."
(ert-deftest hywiki-tests--add-org-id ()
"Verify `hywiki-add-org-id'."
;; Error case - Non org-mode buffer
- (let ((filea (make-temp-file "hypb" nil ".txt")))
- (unwind-protect
- (with-current-buffer (find-file filea)
- (mocklet (((hmouse-choose-link-and-referent-windows) => (list nil
(get-buffer-window))))
- (should-error (hywiki-add-org-id "WikiWord") :type '(error))))
- (hy-delete-file-and-buffer filea)))
-
- (let ((filea (make-temp-file "hypb" nil ".org")))
- (unwind-protect
- (with-current-buffer (find-file filea)
- (insert "* header\n")
-
- ;; Error-case - No Org ID and read only
- (setq buffer-read-only t)
- (mocklet (((hmouse-choose-link-and-referent-windows) => (list nil
(get-buffer-window))))
- (should-error (hywiki-add-org-id "WikiWord") :type '(error))
-
- ;; Normal case - Org-mode with Org ID
- (goto-char (point-max))
- (setq buffer-read-only nil)
- (defvar hywiki-test--org-id)
- (let ((referent-value (cdr (hywiki-add-org-id "WikiWord"))))
- (if (stringp referent-value)
- (should (string-prefix-p "ID: " referent-value))
- (error "(hywiki-tests--add-org-id): referent value is a
non-string: %s" referent-value)))))
- (hy-delete-file-and-buffer filea))))
-
-;; hywiki-add-org-roam-node -- Requires org-roam
+ (let ((wikiword "WikiWord"))
+ (let ((filea (make-temp-file "hypb" nil ".txt")))
+ (unwind-protect
+ (with-current-buffer (find-file filea)
+ (mocklet (((hmouse-choose-link-and-referent-windows) => (list nil
(get-buffer-window))))
+ (should-error (hywiki-add-org-id wikiword) :type '(error))))
+ (hy-delete-file-and-buffer filea)))
+
+ (let ((filea (make-temp-file "hypb" nil ".org")))
+ (unwind-protect
+ (with-current-buffer (find-file filea)
+ (insert "* header\n")
+
+ ;; Error-case - No Org ID and read only
+ (setq buffer-read-only t)
+ (mocklet (((hmouse-choose-link-and-referent-windows) => (list nil
(get-buffer-window))))
+ (should-error (hywiki-add-org-id wikiword) :type '(error))
+
+ ;; Normal case - Org-mode with Org ID
+ (goto-char (point-max))
+ (setq buffer-read-only nil)
+ (defvar hywiki-test--org-id)
+ (let ((referent-value (cdr (hywiki-add-org-id wikiword))))
+ (if (stringp referent-value)
+ (should (string-prefix-p "ID: " referent-value))
+ (error "(hywiki-tests--add-org-id): referent value is a
non-string: %s" referent-value)))))
+ (hy-delete-file-and-buffer filea)))))
+
+(ert-deftest hywiki-tests--add-org-roam-node ()
+ "Verify `hywiki-add-org-roam-node'."
+ (let ((hywiki-directory (make-temp-file "hywiki" t))
+ (wikiword "WikiWord"))
+ (unwind-protect
+ (mocklet ((require => t)
+ ((org-roam-node-read) => "org-roam-node"))
+ (hywiki-add-org-roam-node wikiword)
+ (should (equal '(org-roam-node . "org-roam-node")
+ (hywiki-get-referent wikiword))))
+ (hy-delete-dir-and-buffer hywiki-directory))))
(provide 'hywiki-tests)
;;; hywiki-tests.el ends here
- [elpa] externals/hyperbole updated (4f8fa6f04d -> 4155006fb4), ELPA Syncer, 2024/12/27
- [elpa] externals/hyperbole bf53ae2171 2/6: hasht.el - Rewrite to use Emacs built-in hash tables, ELPA Syncer, 2024/12/27
- [elpa] externals/hyperbole 79441e9b4a 4/6: hywiki.el - Rewrite to standardize all referents to (type . value), ELPA Syncer, 2024/12/27
- [elpa] externals/hyperbole 349ffa1ea9 5/6: Merge branch 'master' into rsw and fix a few tests,
ELPA Syncer <=
- [elpa] externals/hyperbole 0a6b11fcea 3/6: ibut:create - Display any itype error in *Messages* buffer, ELPA Syncer, 2024/12/27
- [elpa] externals/hyperbole 7f06e076aa 1/6: Fix "pcomplete" cyclic dep errors in Hyperbole tests on on rsw sys, ELPA Syncer, 2024/12/27
- [elpa] externals/hyperbole 4155006fb4 6/6: Merge pull request #629 from rswgnu/rsw, ELPA Syncer, 2024/12/27