aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ai-config-gptel-local-tools.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-23 20:12:58 -0400
committerCraig Jennings <c@cjennings.net>2026-06-23 20:12:58 -0400
commit10fa6f4e2e7150ad99827721ada1ae4badcc5e90 (patch)
tree960065c8e69f1e7a4150ecf522e2f813c239b5ee /tests/test-ai-config-gptel-local-tools.el
parentf4cc70c69e7707dd4a686637e14885f5443fcca6 (diff)
downloaddotemacs-10fa6f4e2e7150ad99827721ada1ae4badcc5e90.tar.gz
dotemacs-10fa6f4e2e7150ad99827721ada1ae4badcc5e90.zip
chore(ai): archive gptel and remove it from the live config
I archived gptel to archive/gptel/ since I rarely use it. Moved there: the six gptel modules (ai-config, ai-conversations, ai-conversations-browser, ai-mcp, ai-quick-ask, ai-rewrite), the gptel-tools/ directory, custom/gptel-prompts.el, their test files and utilities, and the four gptel-only specs. Scrubbed from the live config: the ai-config require in init.el, which also drops the whole C-; a keymap; the gptel-mode emojify hook in font-config.el; the gptel-tools entries in the Makefile clean target and the coverage runner; and the gptel feature notes in README. Cancelled the open gptel tasks in todo.org (the AI Open Work issues, the feature-extension brainstorm, the velox gptel-magit bug). ai-term stays. It is the ghostel Claude launcher, independent of gptel. Verified: every module loads, a batch init launch reaches completion clean, and the full test suite shows only pre-existing coverage failures unrelated to this change.
Diffstat (limited to 'tests/test-ai-config-gptel-local-tools.el')
-rw-r--r--tests/test-ai-config-gptel-local-tools.el57
1 files changed, 0 insertions, 57 deletions
diff --git a/tests/test-ai-config-gptel-local-tools.el b/tests/test-ai-config-gptel-local-tools.el
deleted file mode 100644
index 8d3a45ac..00000000
--- a/tests/test-ai-config-gptel-local-tools.el
+++ /dev/null
@@ -1,57 +0,0 @@
-;;; test-ai-config-gptel-local-tools.el --- Tests for local GPTel tool loading -*- lexical-binding: t; -*-
-
-;;; Commentary:
-
-;; Tests for optional local GPTel tool loading from ai-config.el.
-
-;;; Code:
-
-(require 'ert)
-
-(add-to-list 'load-path (expand-file-name "tests" user-emacs-directory))
-(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
-(setq load-prefer-newer t)
-(require 'testutil-ai-config)
-(require 'ai-config)
-
-(defun test-ai-config-gptel-local-tools--write-tool (dir feature)
- "Write a temporary tool module named FEATURE into DIR."
- (let ((file (expand-file-name (format "%s.el" feature) dir)))
- (write-region
- (format ";;; %s.el --- test tool -*- lexical-binding: t; -*-\n(provide '%s)\n"
- feature feature)
- nil
- file
- nil
- 'silent)))
-
-(ert-deftest test-ai-config-gptel-local-tools-missing-directory-is-non-fatal ()
- "Missing optional tool directory should not signal or load anything."
- (let ((dir (expand-file-name "missing-gptel-tools/"
- (make-temp-file "gptel-tools-home-" t))))
- (should-not (cj/gptel-load-local-tools dir '(test_missing_tool)))))
-
-(ert-deftest test-ai-config-gptel-local-tools-loads-present-tools ()
- "Present tool modules should be loaded and returned in request order."
- (let ((dir (make-temp-file "gptel-tools-" t))
- (features '(test_gptel_tool_one test_gptel_tool_two)))
- (dolist (feature features)
- (test-ai-config-gptel-local-tools--write-tool dir feature))
- (should (equal (cj/gptel-load-local-tools dir features)
- features))
- (dolist (feature features)
- (should (featurep feature)))))
-
-(ert-deftest test-ai-config-gptel-local-tools-skips-missing-tool-files ()
- "Missing optional tool files should not prevent present tools from loading."
- (let ((dir (make-temp-file "gptel-tools-" t))
- (present 'test_gptel_present_tool)
- (missing 'test_gptel_missing_tool))
- (test-ai-config-gptel-local-tools--write-tool dir present)
- (should (equal (cj/gptel-load-local-tools dir (list present missing))
- (list present)))
- (should (featurep present))
- (should-not (featurep missing))))
-
-(provide 'test-ai-config-gptel-local-tools)
-;;; test-ai-config-gptel-local-tools.el ends here