aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ai-config-auth-source-secret.el
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-ai-config-auth-source-secret.el')
-rw-r--r--tests/test-ai-config-auth-source-secret.el27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/test-ai-config-auth-source-secret.el b/tests/test-ai-config-auth-source-secret.el
deleted file mode 100644
index bab506e5..00000000
--- a/tests/test-ai-config-auth-source-secret.el
+++ /dev/null
@@ -1,27 +0,0 @@
-;;; test-ai-config-auth-source-secret.el --- Tests for the required-secret wrapper -*- lexical-binding: t; -*-
-
-;;; Commentary:
-;; `cj/auth-source-secret' is the required-secret layer over the shared
-;; `cj/auth-source-secret-value' primitive: it returns the secret, or errors
-;; when none is found. These tests stub the primitive to exercise both paths.
-
-;;; Code:
-
-(require 'ert)
-(require 'cl-lib)
-
-(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
-(require 'ai-config)
-
-(ert-deftest test-ai-config-auth-source-secret-returns-value ()
- "Normal: returns the value the primitive resolves."
- (cl-letf (((symbol-function 'cj/auth-source-secret-value) (lambda (&rest _) "sk-x")))
- (should (equal "sk-x" (cj/auth-source-secret "api.example.com" "apikey")))))
-
-(ert-deftest test-ai-config-auth-source-secret-errors-on-miss ()
- "Error: signals when the primitive finds no secret."
- (cl-letf (((symbol-function 'cj/auth-source-secret-value) (lambda (&rest _) nil)))
- (should-error (cj/auth-source-secret "api.example.com" "apikey"))))
-
-(provide 'test-ai-config-auth-source-secret)
-;;; test-ai-config-auth-source-secret.el ends here