-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_example_test.go
More file actions
175 lines (150 loc) · 5.07 KB
/
Copy pathdata_example_test.go
File metadata and controls
175 lines (150 loc) · 5.07 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
package core_test
import . "dappco.re/go"
// ExampleData_New mounts a prompts directory as named embedded Lethean data. Mounted data
// can be read, listed, and extracted through Result-returning helpers.
func ExampleData_New() {
fs := (&Fs{}).New("/")
dir := MustCast[string](fs.TempDir("core-data-example"))
defer fs.DeleteAll(dir)
fs.Write(Path(dir, "prompts", "hello.txt"), "hello")
c := New()
r := c.Data().New(NewOptions(
Option{Key: "name", Value: "agent"},
Option{Key: "source", Value: DirFS(dir)},
Option{Key: "path", Value: "prompts"},
))
Println(r.OK)
Println(c.Data().Mounts())
// Output:
// true
// [agent]
}
// ExampleData_MountDir mounts a real directory on disk as a Data mount, so dev-mode
// assets read straight from disk serve identically to embedded prod assets mounted
// through New.
func ExampleData_MountDir() {
c := New()
r := c.Data().MountDir("docs", "tests/data")
Println(r.OK)
read := c.Data("docs").ReadString("test.txt")
Println(read.Value)
// Output:
// true
// hello from testdata
}
// ExampleData_ReadFile reads a named file through `Data.ReadFile` for embedded Lethean
// data. Mounted data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_ReadFile() {
fs := (&Fs{}).New("/")
dir := MustCast[string](fs.TempDir("core-data-example"))
defer fs.DeleteAll(dir)
fs.Write(Path(dir, "prompts", "hello.txt"), "hello")
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "agent"},
Option{Key: "source", Value: DirFS(dir)},
Option{Key: "path", Value: "prompts"},
))
r := c.Data().ReadFile("agent/hello.txt")
Println(string(r.Value.([]byte)))
// Output: hello
}
// ExampleData_ReadString reads text content through `Data.ReadString` for embedded Lethean
// data. Mounted data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_ReadString() {
fs := (&Fs{}).New("/")
dir := MustCast[string](fs.TempDir("core-data-example"))
defer fs.DeleteAll(dir)
fs.Write(Path(dir, "prompts", "hello.txt"), "hello")
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "agent"},
Option{Key: "source", Value: DirFS(dir)},
Option{Key: "path", Value: "prompts"},
))
r := c.Data().ReadString("agent/hello.txt")
Println(r.Value)
// Output: hello
}
// ExampleData_List lists entries through `Data.List` for embedded Lethean data. Mounted
// data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_List() {
fs := (&Fs{}).New("/")
dir := MustCast[string](fs.TempDir("core-data-example"))
defer fs.DeleteAll(dir)
fs.Write(Path(dir, "prompts", "hello.txt"), "hello")
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "agent"},
Option{Key: "source", Value: DirFS(dir)},
Option{Key: "path", Value: "prompts"},
))
r := c.Data().List("agent/.")
Println(r.OK)
// Output: true
}
// ExampleData_ListNames lists entry names through `Data.ListNames` for embedded Lethean
// data. Mounted data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_ListNames() {
fs := (&Fs{}).New("/")
dir := MustCast[string](fs.TempDir("core-data-example"))
defer fs.DeleteAll(dir)
fs.Write(Path(dir, "prompts", "hello.txt"), "hello")
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "agent"},
Option{Key: "source", Value: DirFS(dir)},
Option{Key: "path", Value: "prompts"},
))
r := c.Data().ListNames("agent/.")
Println(r.Value)
// Output: [hello]
}
// ExampleData_Extract extracts embedded files through `Data.Extract` for embedded Lethean
// data. Mounted data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_Extract() {
fs := (&Fs{}).New("/")
source := MustCast[string](fs.TempDir("core-data-source"))
target := MustCast[string](fs.TempDir("core-data-target"))
defer fs.DeleteAll(source)
defer fs.DeleteAll(target)
fs.Write(Path(source, "templates", "README.md.tmpl"), "hello {{.Name}}")
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "starter"},
Option{Key: "source", Value: DirFS(source)},
Option{Key: "path", Value: "templates"},
))
r := c.Data().Extract("starter/.", target, map[string]string{"Name": "codex"})
Println(r.OK)
Println(fs.Read(Path(target, "README.md")).Value)
// Output:
// true
// hello codex
}
// ExampleData_Mounts lists mounted data sources through `Data.Mounts` for embedded Lethean
// data. Mounted data can be read, listed, and extracted through Result-returning helpers.
func ExampleData_Mounts() {
c := New()
Println(c.Data().Mounts())
// Output: []
}
// ExampleData_On binds a mount so paths become relative to it — the
// named-resource accessor for embedded content.
func ExampleData_On() {
c := New()
c.Data().New(NewOptions(
Option{Key: "name", Value: "brain"},
Option{Key: "source", Value: EmbeddedTestFS},
Option{Key: "path", Value: "tests/data"},
))
r := c.Data("brain").ReadString("test.txt")
Println(r.OK)
// Output: true
}
// ExampleData_Exists is the capability check for named mounts.
func ExampleData_Exists() {
c := New()
Println(c.Data("ghost").Exists())
// Output: false
}