aboutsummaryrefslogtreecommitdiff
path: root/tests/test-gloss--edit-smoke.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-04-30 01:07:44 -0500
committerCraig Jennings <c@cjennings.net>2026-04-30 01:07:44 -0500
commitd313c37f14511564849c70c564c14ca51bd4ae7c (patch)
tree315a0bf268c937f406e3060f07325dae9378152c /tests/test-gloss--edit-smoke.el
parenteefd55510cf6b180a7dcc9be40fde894d9adf3ac (diff)
downloadgloss-d313c37f14511564849c70c564c14ca51bd4ae7c.tar.gz
gloss-d313c37f14511564849c70c564c14ca51bd4ae7c.zip
test: add gloss secondary commands test suite (red phase)
Six test files for the remaining stub commands. All 14 tests fail at this commit because the implementations are stubs. `gloss--add-finish-internal' (the pure save side of `gloss-add') gets N/B/E coverage on validation and the persistence side effect. `gloss--stats-text' (the pure stats string formatter) covers empty, populated, and missing-file cases. The interactive commands (`gloss-edit', `gloss-list-terms', `gloss-reload', `gloss-drill-export') get smoke tests only — the design treats them as mode-glue with 70% coverage targets, since prompts and `switch-to-buffer' are framework behaviour Emacs already tests. Two error-path tests assert the message contains a specific substring, not just that `user-error' was raised. The stubs raise `user-error' too, so a bare `should-error' would pass for the wrong reason. The substring check anchors red against the real error path.
Diffstat (limited to 'tests/test-gloss--edit-smoke.el')
-rw-r--r--tests/test-gloss--edit-smoke.el38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/test-gloss--edit-smoke.el b/tests/test-gloss--edit-smoke.el
new file mode 100644
index 0000000..6d1a2a0
--- /dev/null
+++ b/tests/test-gloss--edit-smoke.el
@@ -0,0 +1,38 @@
+;;; test-gloss--edit-smoke.el --- Smoke tests for gloss-edit -*- lexical-binding: t -*-
+
+;; SPDX-License-Identifier: GPL-3.0-or-later
+
+;;; Commentary:
+;; Smoke tests for `gloss-edit'. Switches to the source buffer and
+;; positions point at the heading; installs a buffer-local
+;; `after-save-hook' so cache refresh follows hand edits.
+
+;;; Code:
+
+(require 'ert)
+(require 'gloss)
+(require 'testutil-gloss)
+
+(ert-deftest test-gloss-edit-known-term-positions-at-heading ()
+ "Smoke: edit on a known term puts point at its heading line."
+ (gloss-test--with-temp-glossary gloss-test--sample-content
+ (save-window-excursion
+ (gloss-edit "anaphora")
+ (should (looking-at-p "^\\* anaphora")))))
+
+(ert-deftest test-gloss-edit-installs-buffer-local-cache-refresh-hook ()
+ "Smoke: edit installs `gloss--after-save-refresh-cache' buffer-locally."
+ (gloss-test--with-temp-glossary gloss-test--sample-content
+ (save-window-excursion
+ (gloss-edit "anaphora")
+ (should (memq 'gloss--after-save-refresh-cache after-save-hook))
+ (should (local-variable-p 'after-save-hook)))))
+
+(ert-deftest test-gloss-edit-unknown-term-raises ()
+ "Error: edit on a non-existent term raises `user-error' naming the term."
+ (gloss-test--with-temp-glossary gloss-test--sample-content
+ (let ((err (should-error (gloss-edit "no-such-term") :type 'user-error)))
+ (should (string-match-p "no-such-term" (error-message-string err))))))
+
+(provide 'test-gloss--edit-smoke)
+;;; test-gloss--edit-smoke.el ends here