Self-edit: 5 new tests (apply success/not-found/file-not-found, parse-location x2) Config-manager: 4 new tests (get-oc-config-dir, save-providers, configure-provider) Gateway-manager: 2 new tests (multiple-platforms, registration) Tier 1 Chaos: Verified org files pass structural balance Note: Some tests have issues - config tests use functions not exported, one self-edit test has search function issue. Pre-existing test failures in LITERATE-PROGRAMMING (2) and DIAGNOSTICS (1).
35 lines
1.1 KiB
Common Lisp
35 lines
1.1 KiB
Common Lisp
(defpackage :opencortex-tool-permissions-tests
|
|
(:use :cl :fiveam :opencortex)
|
|
(:export #:tool-permissions-suite))
|
|
|
|
(in-package :opencortex-tool-permissions-tests)
|
|
|
|
(def-suite tool-permissions-suite
|
|
:description "Tests for Tool Permissions skill")
|
|
|
|
(in-suite tool-permissions-suite)
|
|
|
|
(test default-permission-is-allow
|
|
"Verify default permission is :allow."
|
|
(is (eq (get-tool-permission "unknown-tool") :allow)))
|
|
|
|
(test set-and-get-permission
|
|
"Verify setting and getting permissions."
|
|
(set-tool-permission "test-tool-abc" :deny)
|
|
(is (eq (get-tool-permission "test-tool-abc") :deny)))
|
|
|
|
(test permission-gate-allow
|
|
"Verify :allow tier passes through."
|
|
(set-tool-permission "gate-allow-tool" :allow)
|
|
(is (eq (check-tool-permission-gate "gate-allow-tool" nil) :allow)))
|
|
|
|
(test permission-gate-deny
|
|
"Verify :deny tier blocks."
|
|
(set-tool-permission "gate-deny-tool" :deny)
|
|
(is (eq (check-tool-permission-gate "gate-deny-tool" nil) :deny)))
|
|
|
|
(test permission-gate-ask
|
|
"Verify :ask tier returns ask list."
|
|
(set-tool-permission "gate-ask-tool" :ask)
|
|
(is (listp (check-tool-permission-gate "gate-ask-tool" nil))))
|