diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-01 22:14:07 -0400 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-01 22:14:07 -0400 |
| commit | 4ea52a61560b6fa25b3d04f484c1ab140c723133 (patch) | |
| tree | 5345d635fac9f123c119a97ba48cf6e94b24b567 /tests | |
| parent | 6c8ee35aa8f1bddf264b880925270b33ff576a46 (diff) | |
| download | dotemacs-4ea52a61560b6fa25b3d04f484c1ab140c723133.tar.gz dotemacs-4ea52a61560b6fa25b3d04f484c1ab140c723133.zip | |
fix(treesit): prompt before grammar installs, add explicit bootstrap
treesit-auto-install was t, so opening a file could silently trigger a network download and compiler build mid-edit. It now prompts, and cj/install-treesit-grammars is the deliberate fresh-machine bootstrap that installs everything in one command.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test-prog-general--install-treesit-grammars.el | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test-prog-general--install-treesit-grammars.el b/tests/test-prog-general--install-treesit-grammars.el new file mode 100644 index 00000000..62bf3920 --- /dev/null +++ b/tests/test-prog-general--install-treesit-grammars.el @@ -0,0 +1,34 @@ +;;; test-prog-general--install-treesit-grammars.el --- Grammar bootstrap command -*- lexical-binding: t; -*- + +;;; Commentary: +;; `treesit-auto-install' is set to `prompt' so opening a file never silently +;; downloads and builds a grammar. `cj/install-treesit-grammars' is the +;; explicit fresh-machine bootstrap: it loads treesit-auto and installs every +;; grammar in one deliberate command. + +;;; Code: + +(require 'ert) +(require 'cl-lib) + +(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory)) +(require 'prog-general) + +;; Satisfy the command's (require 'treesit-auto) without the real package, +;; which isn't available in batch runs. +(provide 'treesit-auto) + +(ert-deftest test-prog-general-install-treesit-grammars-is-a-command () + "Normal: the bootstrap entry point exists and is interactive." + (should (commandp 'cj/install-treesit-grammars))) + +(ert-deftest test-prog-general-install-treesit-grammars-installs-all () + "Normal: the command delegates to treesit-auto-install-all." + (let ((called 0)) + (cl-letf (((symbol-function 'treesit-auto-install-all) + (lambda (&rest _) (setq called (1+ called))))) + (cj/install-treesit-grammars) + (should (= called 1))))) + +(provide 'test-prog-general--install-treesit-grammars) +;;; test-prog-general--install-treesit-grammars.el ends here |
