-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathexample_test.go
50 lines (39 loc) · 1.04 KB
/
example_test.go
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
package storage
import (
"log"
inspect "github.com/vadv/gopher-lua-libs/inspect"
time "github.com/vadv/gopher-lua-libs/time"
lua "github.com/yuin/gopher-lua"
)
// storage.open(), storage_ud:get(), storage_ud:set()
func Example_package() {
state := lua.NewState()
Preload(state)
inspect.Preload(state)
time.Preload(state)
source := `
local storage = require("storage")
local inspect = require("inspect")
local s, err = storage.open("./test/db-example.json")
if err then error(err) end
local err = s:set("key", {"one", "two", 1}, 10)
if err then error(err) end
local value, found, err = s:get("key")
if err then error(err) end
if not found then error("must be found") end
print(inspect(value, {newline="", indent=""}))
local list = s:keys()
print(#list == 1)
local dump, err = s:dump()
if err then error(err) end
print(inspect(dump, {newline="", indent=""}))
os.remove("./test/db-example.json")
`
if err := state.DoString(source); err != nil {
log.Fatal(err.Error())
}
// Output:
// { "one", "two", 1 }
// true
// {key = { "one", "two", 1 }}
}