-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_test.go
More file actions
181 lines (172 loc) · 4.97 KB
/
cache_test.go
File metadata and controls
181 lines (172 loc) · 4.97 KB
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
package cli
import (
"bytes"
"encoding/json"
"path/filepath"
"strings"
"testing"
)
// TestCacheInfoCommand asserts `codeiq cache info` prints all canonical
// summary keys (path, size_bytes, version, file_count, node_count,
// edge_count).
func TestCacheInfoCommand(t *testing.T) {
dir := statsFixtureDir(t)
root := NewRootCommand()
root.SetArgs([]string{
"cache", "info",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err != nil {
t.Fatalf("cache info: %v\n%s", err, out.String())
}
var got map[string]any
if err := json.Unmarshal(out.Bytes(), &got); err != nil {
t.Fatalf("cache info JSON invalid: %v\n%s", err, out.String())
}
for _, k := range []string{"path", "size_bytes", "version", "file_count", "node_count", "edge_count"} {
if _, ok := got[k]; !ok {
t.Errorf("cache info missing %q", k)
}
}
}
// TestCacheListCommandTable asserts the default table output begins with
// the PATH / LANGUAGE / NODES / EDGES / HASH column header.
func TestCacheListCommandTable(t *testing.T) {
dir := statsFixtureDir(t)
root := NewRootCommand()
root.SetArgs([]string{
"cache", "list",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err != nil {
t.Fatalf("cache list: %v\n%s", err, out.String())
}
if !strings.Contains(out.String(), "PATH") {
t.Fatalf("cache list missing PATH column header:\n%s", out.String())
}
if !strings.Contains(out.String(), "LANGUAGE") {
t.Errorf("cache list missing LANGUAGE column:\n%s", out.String())
}
}
// TestCacheListCommandJSON asserts the --json flag produces a JSON array.
func TestCacheListCommandJSON(t *testing.T) {
dir := statsFixtureDir(t)
root := NewRootCommand()
root.SetArgs([]string{
"cache", "list", "--json",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err != nil {
t.Fatalf("cache list --json: %v\n%s", err, out.String())
}
var arr []any
if err := json.Unmarshal(out.Bytes(), &arr); err != nil {
t.Fatalf("cache list --json invalid JSON: %v\n%s", err, out.String())
}
}
// TestCacheClearRequiresYes asserts the clear subcommand bails without
// `--yes`.
func TestCacheClearRequiresYes(t *testing.T) {
dir := statsFixtureDir(t)
root := NewRootCommand()
root.SetArgs([]string{
"cache", "clear",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err == nil {
t.Fatalf("expected error without --yes, got success:\n%s", out.String())
} else if !strings.Contains(err.Error(), "yes") {
t.Errorf("error must mention --yes: %v", err)
}
}
// TestCacheClearWipesEntries asserts `codeiq cache clear --yes` empties
// the entries table.
func TestCacheClearWipesEntries(t *testing.T) {
dir := statsFixtureDir(t)
// Sanity: pre-clear there is at least one entry.
root := NewRootCommand()
root.SetArgs([]string{
"cache", "list", "--json",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var listOut bytes.Buffer
root.SetOut(&listOut)
root.SetErr(&listOut)
if err := root.Execute(); err != nil {
t.Fatalf("pre-clear list: %v", err)
}
// Clear.
root = NewRootCommand()
root.SetArgs([]string{
"cache", "clear", "--yes",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err != nil {
t.Fatalf("cache clear: %v\n%s", err, out.String())
}
if !strings.Contains(out.String(), "cleared") {
t.Errorf("clear output must mention `cleared`: %s", out.String())
}
// Post-clear: list must be empty.
root = NewRootCommand()
root.SetArgs([]string{
"cache", "list", "--json",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var afterList bytes.Buffer
root.SetOut(&afterList)
root.SetErr(&afterList)
if err := root.Execute(); err != nil {
t.Fatalf("post-clear list: %v", err)
}
trimmed := strings.TrimSpace(afterList.String())
if trimmed != "null" && trimmed != "[]" {
t.Errorf("expected empty list after clear, got: %q", trimmed)
}
}
// TestCacheInspectByPath asserts a cache.inspect call against a relative
// path returns a non-empty entry.
func TestCacheInspectByPath(t *testing.T) {
dir := statsFixtureDir(t)
root := NewRootCommand()
root.SetArgs([]string{
"cache", "inspect", "User.java",
"--cache-path", filepath.Join(dir, "cache.sqlite"),
dir,
})
var out bytes.Buffer
root.SetOut(&out)
root.SetErr(&out)
if err := root.Execute(); err != nil {
t.Fatalf("cache inspect: %v\n%s", err, out.String())
}
var got map[string]any
if err := json.Unmarshal(out.Bytes(), &got); err != nil {
t.Fatalf("cache inspect JSON invalid: %v\n%s", err, out.String())
}
if got["ContentHash"] == "" && got["content_hash"] == "" {
t.Errorf("cache inspect missing ContentHash:\n%s", out.String())
}
}