-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembed_bench_test.go
More file actions
209 lines (178 loc) · 4.95 KB
/
Copy pathembed_bench_test.go
File metadata and controls
209 lines (178 loc) · 4.95 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
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
// SPDX-License-Identifier: EUPL-1.2
// Benchmarks for the embed primitives in embed.go.
// Per AX-11 — Embed is the substrate behind c.Data() and every package
// that ships brain prompts, CLI templates, agent flows, or onboarding
// docs. Mount() / ReadFile() / ReadString() fire on every persona
// boot; Sub() / List() drive the directory walkers; AddAsset /
// GetAsset back the in-memory asset registry used by generated packs.
//
// Run: go test -bench='BenchmarkEmbed' -benchmem -run='^$' .
package core_test
import (
"embed"
"testing/fstest"
. "dappco.re/go"
)
// Sinks defeat compiler DCE.
var (
embedSinkResult Result
embedSinkEmbed *Embed
embedSinkFS FS
embedSinkString string
)
// embedFixture returns a small FS suitable for the per-op read paths.
func embedFixture() FS {
return FS(fstest.MapFS{
"prompts/code.md": &fstest.MapFile{Data: []byte("# Code prompt body\nLong enough to bench against.\n")},
"prompts/review.md": &fstest.MapFile{Data: []byte("# Review prompt\nChecklist content here.\n")},
"flow/deploy/homelab.yml": &fstest.MapFile{Data: []byte("target: homelab\n")},
"flow/deploy/de1.yml": &fstest.MapFile{Data: []byte("target: de1\n")},
"agent/persona/code.md": &fstest.MapFile{Data: []byte("persona body\n")},
})
}
// --- Mount ---
func BenchmarkEmbed_Mount_Root(b *B) {
fsys := embedFixture()
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = Mount(fsys, ".")
}
}
func BenchmarkEmbed_Mount_Sub(b *B) {
fsys := embedFixture()
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = Mount(fsys, "prompts")
}
}
// --- Embed read paths ---
func BenchmarkEmbed_ReadFile(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = emb.ReadFile("prompts/code.md")
}
}
func BenchmarkEmbed_ReadString(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = emb.ReadString("prompts/code.md")
}
}
func BenchmarkEmbed_Open(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = emb.Open("prompts/code.md")
if embedSinkResult.OK {
CloseStream(embedSinkResult.Value)
}
}
}
func BenchmarkEmbed_ReadDir(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = emb.ReadDir("prompts")
}
}
// --- Sub + FS accessors ---
func BenchmarkEmbed_Sub(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = emb.Sub("prompts")
}
}
func BenchmarkEmbed_FS(b *B) {
r := Mount(embedFixture(), ".")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkFS = emb.FS()
}
}
func BenchmarkEmbed_BaseDirectory(b *B) {
r := Mount(embedFixture(), "prompts")
emb := r.Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkString = emb.BaseDirectory()
}
}
// --- In-memory asset registry (AddAsset / GetAsset) ---
func BenchmarkEmbed_AddAsset(b *B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
AddAsset("bench", "key", "value")
}
}
func BenchmarkEmbed_GetAsset_Hit(b *B) {
AddAsset("bench-hit", "key", "value")
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = GetAsset("bench-hit", "key")
}
}
func BenchmarkEmbed_GetAsset_Miss(b *B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = GetAsset("bench-miss", "noexist")
}
}
func BenchmarkEmbed_GetAssetBytes_Hit(b *B) {
AddAsset("bench-bytes", "key", "value")
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = GetAssetBytes("bench-bytes", "key")
}
}
// --- MountEmbed / EmbedFS (need a real compile-time embed.FS) ---
//go:embed embed.go
var benchEmbedFS embed.FS
func BenchmarkMountEmbed(b *B) {
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = MountEmbed(benchEmbedFS, ".")
}
}
func BenchmarkEmbed_EmbedFS(b *B) {
emb := MountEmbed(benchEmbedFS, ".").Value.(*Embed)
b.ReportAllocs()
for i := 0; i < b.N; i++ {
_ = emb.EmbedFS()
}
}
// --- asset codegen: scan + pack (covers getAllFiles / compress / compressFile) ---
func BenchmarkScanAssets(b *B) {
files := []string{"embed_bench_test.go"}
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = ScanAssets(files)
}
}
func BenchmarkGeneratePack(b *B) {
dir := b.TempDir()
WriteFile(PathJoin(dir, "asset.txt"), []byte("content"), 0o644)
pkg := ScannedPackage{PackageName: "generated", BaseDirectory: dir, Groups: []string{dir}}
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = GeneratePack(pkg)
}
}
// Extract copies (and template-renders) an FS to disk — covers the
// isTemplate / renderPath / copyFile extraction helpers.
func BenchmarkExtract(b *B) {
fsys := embedFixture()
base := b.TempDir()
b.ReportAllocs()
for i := 0; i < b.N; i++ {
embedSinkResult = Extract(fsys, PathJoin(base, Itoa(i)), nil)
}
}