-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata_example_test.go
More file actions
139 lines (118 loc) · 4.01 KB
/
data_example_test.go
File metadata and controls
139 lines (118 loc) · 4.01 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
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 := 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_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 := 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 := 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 := 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 := 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 := fs.TempDir("core-data-source")
target := 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: []
}