summaryrefslogtreecommitdiff
path: root/internal/runtimeconfig/store_test.go
blob: ca201a2294bcbb40413a6985bcf2a68c117eb7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
package runtimeconfig

import (
	"bytes"
	"io"
	"log"
	"os"
	"path/filepath"
	"strings"
	"testing"

	"codeberg.org/snonux/hexai/internal/appconfig"
)

func TestStoreReloadSkipsEnvOverrides(t *testing.T) {
	logger := log.New(io.Discard, "", 0)
	tmp := t.TempDir()
	configDir := filepath.Join(tmp, "hexai")
	if err := os.MkdirAll(configDir, 0o755); err != nil {
		t.Fatalf("failed to create config dir: %v", err)
	}
	configPath := filepath.Join(configDir, "config.toml")
	if err := os.WriteFile(configPath, []byte("[general]\nmax_tokens = 64\n"), 0o644); err != nil {
		t.Fatalf("failed to write config file: %v", err)
	}

	t.Setenv("XDG_CONFIG_HOME", tmp)
	t.Setenv("HEXAI_MAX_TOKENS", "321")
	t.Setenv("HEXAI_PROVIDER", "")

	initial := appconfig.Load(logger)
	if initial.MaxTokens != 321 {
		t.Fatalf("expected env override to win initial load, got %d", initial.MaxTokens)
	}

	store := New(initial)
	if err := os.WriteFile(configPath, []byte("[general]\nmax_tokens = 128\n"), 0o644); err != nil {
		t.Fatalf("failed to update config file: %v", err)
	}

	changes, err := store.Reload(logger, appconfig.LoadOptions{IgnoreEnv: true})
	if err != nil {
		t.Fatalf("reload failed: %v", err)
	}

	if snap := store.Snapshot(); snap.MaxTokens != 128 {
		t.Fatalf("expected reload to apply file value, got %d", snap.MaxTokens)
	}

	found := false
	for _, change := range changes {
		if change.Key == "max_tokens" {
			found = true
			if change.Old != "321" || change.New != "128" {
				t.Fatalf("unexpected change diff: %+v", change)
			}
		}
	}
	if !found {
		t.Fatalf("expected max_tokens change in diff, got %#v", changes)
	}
}

func TestStoreReloadLogsSummary(t *testing.T) {
	var buf bytes.Buffer
	logger := log.New(&buf, "", 0)
	tmp := t.TempDir()
	configDir := filepath.Join(tmp, "hexai")
	if err := os.MkdirAll(configDir, 0o755); err != nil {
		t.Fatalf("mkdir: %v", err)
	}
	configPath := filepath.Join(configDir, "config.toml")
	if err := os.WriteFile(configPath, []byte("[general]\nmax_tokens = 64\n"), 0o644); err != nil {
		t.Fatalf("write config: %v", err)
	}

	t.Setenv("XDG_CONFIG_HOME", tmp)
	t.Setenv("HEXAI_MAX_TOKENS", "321")
	t.Setenv("HEXAI_PROVIDER", "")

	initial := appconfig.Load(logger)
	store := New(initial)
	if err := os.WriteFile(configPath, []byte("[general]\nmax_tokens = 128\n"), 0o644); err != nil {
		t.Fatalf("update config: %v", err)
	}

	_, err := store.Reload(logger, appconfig.LoadOptions{IgnoreEnv: true})
	if err != nil {
		t.Fatalf("reload failed: %v", err)
	}
	logOutput := buf.String()
	if !strings.Contains(logOutput, "Reloaded config (1 changes):") {
		t.Fatalf("expected summary line in log, got %q", logOutput)
	}
	if !strings.Contains(logOutput, "- max_tokens: 321 → 128") {
		t.Fatalf("expected change details in log, got %q", logOutput)
	}
}

func TestSubscribe_NilListener(t *testing.T) {
	store := New(appconfig.App{})
	unsub := store.Subscribe(nil)
	// Should return a no-op unsubscribe without panicking.
	unsub()
}

func TestSubscribe_ReceivesUpdates(t *testing.T) {
	store := New(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 100}})

	var gotOld, gotNew appconfig.App
	callCount := 0
	unsub := store.Subscribe(func(old, new appconfig.App) {
		gotOld = old
		gotNew = new
		callCount++
	})

	store.Set(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 200}})
	if callCount != 1 {
		t.Fatalf("expected listener called once, got %d", callCount)
	}
	if gotOld.MaxTokens != 100 || gotNew.MaxTokens != 200 {
		t.Fatalf("unexpected old/new: %d / %d", gotOld.MaxTokens, gotNew.MaxTokens)
	}

	// After unsubscribe, listener must not be called again.
	unsub()
	store.Set(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 300}})
	if callCount != 1 {
		t.Fatalf("expected listener not called after unsubscribe, got %d", callCount)
	}
}

func TestSubscribe_MultipleListeners(t *testing.T) {
	store := New(appconfig.App{})
	calls := [2]int{}
	unsub0 := store.Subscribe(func(_, _ appconfig.App) { calls[0]++ })
	unsub1 := store.Subscribe(func(_, _ appconfig.App) { calls[1]++ })

	store.Set(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 1}})
	if calls[0] != 1 || calls[1] != 1 {
		t.Fatalf("expected both listeners called once: %v", calls)
	}

	// Unsubscribe first listener only.
	unsub0()
	store.Set(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 2}})
	if calls[0] != 1 || calls[1] != 2 {
		t.Fatalf("expected only second listener called: %v", calls)
	}
	unsub1()
}

func TestSet_ReturnsChanges(t *testing.T) {
	store := New(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 10, Provider: "ollama"}})
	changes := store.Set(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 20, Provider: "ollama"}})
	found := false
	for _, ch := range changes {
		if ch.Key == "max_tokens" {
			found = true
			if ch.Old != "10" || ch.New != "20" {
				t.Fatalf("unexpected change values: %+v", ch)
			}
		}
	}
	if !found {
		t.Fatalf("expected max_tokens in changes, got %+v", changes)
	}
}

func TestSet_NoChanges(t *testing.T) {
	cfg := appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 10}}
	store := New(cfg)
	changes := store.Set(cfg)
	if len(changes) != 0 {
		t.Fatalf("expected no changes, got %+v", changes)
	}
}

func TestReload_NilLogger(t *testing.T) {
	// Reload with nil logger should not panic; it exercises the nil-logger guard
	// in Reload (skipping logger.Print). LoadWithOptions returns defaults when
	// logger is nil, so the store gets default config applied.
	store := New(appconfig.App{CoreConfig: appconfig.CoreConfig{MaxTokens: 1}})
	changes, err := store.Reload(nil, appconfig.LoadOptions{IgnoreEnv: true})
	if err != nil {
		t.Fatalf("reload failed: %v", err)
	}
	// Config was updated from our custom value (1) to defaults (4000).
	if snap := store.Snapshot(); snap.MaxTokens != 4000 {
		t.Fatalf("expected default 4000, got %d", snap.MaxTokens)
	}
	// Should report a change for max_tokens at minimum.
	found := false
	for _, ch := range changes {
		if ch.Key == "max_tokens" {
			found = true
		}
	}
	if !found {
		t.Fatalf("expected max_tokens change, got %+v", changes)
	}
}

func TestFormatSummary_NoChanges(t *testing.T) {
	result := FormatSummary("Test", nil)
	if result != "Test (no changes detected)." {
		t.Fatalf("unexpected: %q", result)
	}
}

func TestFormatSummary_WithChanges(t *testing.T) {
	changes := []Change{
		{Key: "a", Old: "1", New: "2"},
		{Key: "b", Old: "x", New: "y"},
	}
	result := FormatSummary("Reloaded", changes)
	if !strings.Contains(result, "Reloaded (2 changes):") {
		t.Fatalf("missing header: %q", result)
	}
	if !strings.Contains(result, "- a: 1 → 2") || !strings.Contains(result, "- b: x → y") {
		t.Fatalf("missing details: %q", result)
	}
}

func TestStringifyValue_BoolAndFloat(t *testing.T) {
	// Exercise the bool and float branches via Diff on App fields.
	temp1 := 0.5
	temp2 := 0.9
	oldCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{CodingTemperature: &temp1}}
	newCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{CodingTemperature: &temp2}}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "coding_temperature" {
			found = true
			if ch.Old != "0.5" || ch.New != "0.9" {
				t.Fatalf("unexpected values: %+v", ch)
			}
		}
	}
	if !found {
		t.Fatalf("expected coding_temperature change, got %+v", changes)
	}
}

func TestStringifyValue_NilPointer(t *testing.T) {
	// nil *float64 should produce "(unset)".
	oldCfg := appconfig.App{}
	temp := 0.3
	newCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{CodingTemperature: &temp}}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "coding_temperature" {
			found = true
			if ch.Old != "(unset)" {
				t.Fatalf("expected (unset) for nil ptr, got %q", ch.Old)
			}
		}
	}
	if !found {
		t.Fatalf("expected coding_temperature change")
	}
}

func TestStringifyValue_NilBoolPointer(t *testing.T) {
	// CompletionWaitAll is *bool; nil should produce "(unset)".
	b := true
	oldCfg := appconfig.App{}
	newCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{CompletionWaitAll: &b}}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "completion_wait_all" {
			found = true
			if ch.Old != "(unset)" || ch.New != "true" {
				t.Fatalf("unexpected: old=%q new=%q", ch.Old, ch.New)
			}
		}
	}
	if !found {
		t.Fatalf("expected completion_wait_all change")
	}
}

func TestStringifyValue_StringSlice(t *testing.T) {
	// TriggerCharacters is []string; exercise the string-slice branch.
	oldCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{TriggerCharacters: []string{".", ":"}}}
	newCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{TriggerCharacters: []string{".", ":", "("}}}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "trigger_characters" {
			found = true
			if ch.Old != ".,::" || ch.New != ".,:,(" {
				// Join uses comma separator.
				if ch.Old != ".,:" || ch.New != ".,:,(" {
					t.Fatalf("unexpected: old=%q new=%q", ch.Old, ch.New)
				}
			}
		}
	}
	if !found {
		t.Fatalf("expected trigger_characters change, got %+v", changes)
	}
}

func TestStringifyValue_NilSlice(t *testing.T) {
	// nil slice vs non-nil slice.
	oldCfg := appconfig.App{}
	newCfg := appconfig.App{CoreConfig: appconfig.CoreConfig{TriggerCharacters: []string{"x"}}}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "trigger_characters" {
			found = true
			if ch.Old != "" {
				t.Fatalf("expected empty for nil slice, got %q", ch.Old)
			}
		}
	}
	if !found {
		t.Fatalf("expected trigger_characters change")
	}
}

func TestStringifyValue_SurfaceConfigWithTemperature(t *testing.T) {
	// Exercise the SurfaceConfig temperature branch.
	temp := 0.750
	oldCfg := appconfig.App{
		ProviderConfig: appconfig.ProviderConfig{
			CompletionConfigs: []appconfig.SurfaceConfig{
				{Provider: "openai", Model: "gpt-4o", Temperature: &temp},
			},
		},
	}
	newCfg := appconfig.App{
		ProviderConfig: appconfig.ProviderConfig{
			CompletionConfigs: []appconfig.SurfaceConfig{
				{Provider: "openai", Model: "gpt-4o"},
			},
		},
	}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "completion_configs" {
			found = true
			if !strings.Contains(ch.Old, "@0.750") {
				t.Fatalf("expected temperature in old value, got %q", ch.Old)
			}
		}
	}
	if !found {
		t.Fatalf("expected completion_configs change")
	}
}

func TestStringifyValue_SurfaceConfigEmptyProvider(t *testing.T) {
	// Exercise the SurfaceConfig branch where provider is empty.
	oldCfg := appconfig.App{
		ProviderConfig: appconfig.ProviderConfig{
			ChatConfigs: []appconfig.SurfaceConfig{
				{Provider: "", Model: "some-model"},
			},
		},
	}
	newCfg := appconfig.App{}
	changes := Diff(oldCfg, newCfg)
	found := false
	for _, ch := range changes {
		if ch.Key == "chat_configs" {
			found = true
			if ch.Old != "some-model" {
				t.Fatalf("expected 'some-model', got %q", ch.Old)
			}
		}
	}
	if !found {
		t.Fatalf("expected chat_configs change")
	}
}

func TestDiff_SurfaceModel(t *testing.T) {
	oldCfg := appconfig.App{ProviderConfig: appconfig.ProviderConfig{CompletionConfigs: []appconfig.SurfaceConfig{{Provider: "openai", Model: "gpt-4o"}}}}
	newCfg := appconfig.App{ProviderConfig: appconfig.ProviderConfig{CompletionConfigs: []appconfig.SurfaceConfig{{Provider: "anthropic", Model: "claude-3-5-sonnet"}}}}
	changes := Diff(oldCfg, newCfg)
	if len(changes) == 0 {
		t.Fatalf("expected diff entries, got none")
	}
	found := false
	for _, ch := range changes {
		if ch.Key == "completion_configs" {
			if !strings.Contains(ch.Old, "gpt-4o") || !strings.Contains(ch.New, "claude-3-5-sonnet") {
				t.Fatalf("unexpected diff contents: %+v", ch)
			}
			found = true
		}
	}
	if !found {
		t.Fatalf("expected completion configs diff, got %+v", changes)
	}
}