summaryrefslogtreecommitdiff
path: root/internal/lsp/triggers_config_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-06 10:25:36 +0300
committerPaul Buetow <paul@buetow.org>2025-09-06 10:25:36 +0300
commit5be9532cfa630f4aacd8d879c3e4f5cc316da0fa (patch)
tree0a901680fccd1e2703ffdbd9284ccff932be1d67 /internal/lsp/triggers_config_test.go
parent70f1d0e78c57dfa5beae779b3d392b6e6fa44c14 (diff)
feat(lsp): configurable inline/chat triggers; switch inline markers to >text>/>>text>; update docs and example config; tests updated to new triggers and raise LSP coverage to >=85%; chore: remove semicolon legacy; chore(mage): auto-refresh coverage daily if docs/coverage.out is older than 24h
Diffstat (limited to 'internal/lsp/triggers_config_test.go')
-rw-r--r--internal/lsp/triggers_config_test.go74
1 files changed, 74 insertions, 0 deletions
diff --git a/internal/lsp/triggers_config_test.go b/internal/lsp/triggers_config_test.go
new file mode 100644
index 0000000..7fd6ecd
--- /dev/null
+++ b/internal/lsp/triggers_config_test.go
@@ -0,0 +1,74 @@
+package lsp
+
+import (
+ "bytes"
+ "encoding/json"
+ "io"
+ "log"
+ "testing"
+ "time"
+)
+
+func TestShouldSuppressForChatTriggerEOL_CustomConfig(t *testing.T) {
+ s := newTestServer()
+ // Customize: only ")#" at EOL suppresses
+ s.chatSuffix = "#"
+ s.chatPrefixes = []string{")"}
+
+ p := CompletionParams{TextDocument: TextDocumentIdentifier{URI: "file:///x"}, Position: Position{Line:0, Character:6}}
+ if !s.shouldSuppressForChatTriggerEOL("ok)#", p) {
+ t.Fatalf("expected suppression for custom prefix+suffix at EOL")
+ }
+ if s.shouldSuppressForChatTriggerEOL("ok]#", p) {
+ t.Fatalf("did not expect suppression for non-matching prefix")
+ }
+}
+
+func TestNewServer_AssignsTriggerGlobals_AndParsingUsesThem(t *testing.T) {
+ var out bytes.Buffer
+ s := NewServer(bytes.NewReader(nil), &out, log.New(io.Discard, "", 0), ServerOptions{
+ InlineOpen: "<", InlineClose: ">", ChatSuffix: ")", ChatPrefixes: []string{":"},
+ })
+ _ = s // ensure server constructed applies globals
+ if inlineOpenChar != '<' || inlineCloseChar != '>' {
+ t.Fatalf("inline markers not applied: %q %q", string(inlineOpenChar), string(inlineCloseChar))
+ }
+ if chatSuffixChar != ')' || len(chatPrefixSingles) == 0 || chatPrefixSingles[0] != ":" {
+ t.Fatalf("chat markers not applied: suffix=%q prefixes=%v", string(chatSuffixChar), chatPrefixSingles)
+ }
+ if txt, l, r, ok := findStrictInlineTag("x<do>y"); !ok || txt != "do" || l != 1 || r != 5 {
+ t.Fatalf("findStrictInlineTag failed: ok=%v txt=%q l=%d r=%d", ok, txt, l, r)
+ }
+ if got := stripTrailingTrigger("note:)"); got != "note:" {
+ t.Fatalf("stripTrailingTrigger failed: %q", got)
+ }
+}
+
+func TestIsTriggerEvent_BareDoubleOpenBlocksEvenWithContextTriggerChar(t *testing.T) {
+ s := newTestServer()
+ s.inlineOpen = ">" // ensure bare ">>" check is active
+ s.triggerChars = []string{"."}
+ // LSP context indicates TriggerCharacter '.' but current line is bare ">>"
+ ctx := struct {
+ TriggerKind int `json:"triggerKind"`
+ TriggerCharacter string `json:"triggerCharacter"`
+ }{TriggerKind: 2, TriggerCharacter: "."}
+ raw, _ := json.Marshal(ctx)
+ p := CompletionParams{Position: Position{Line: 0, Character: 2}, Context: json.RawMessage(raw)}
+ if s.isTriggerEvent(p, ">>") {
+ t.Fatalf("bare double-open should block trigger event even with context trigger char")
+ }
+}
+
+func TestDetectAndHandleChat_CustomConfig_InsertsReply(t *testing.T) {
+ var out bytes.Buffer
+ s := NewServer(bytes.NewReader(nil), &out, log.New(io.Discard, "", 0), ServerOptions{ChatSuffix: "#", ChatPrefixes: []string{")"}})
+ s.llmClient = fakeLLM{resp: "Hello\nmulti-line reply"}
+ uri := "file:///chat2.go"
+ s.setDocument(uri, "ok)#\n\n")
+ out.Reset()
+ s.detectAndHandleChat(uri)
+ // Give time for applyEdit request
+ for i := 0; i < 20 && out.Len() == 0; i++ { time.Sleep(10 * time.Millisecond) }
+ if out.Len() == 0 { t.Fatalf("no output written for custom chat config") }
+}