shock/example_key_test.go
jolheiser de4e822f7d
Refactor to using Init funcs and add gob serializer
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-08-03 16:11:20 -05:00

56 lines
1.1 KiB
Go

package shock
import (
"fmt"
"io/ioutil"
"os"
"path"
)
// TestUserSettings object
type TestUserSettings struct {
UserID uint64 `json:"user_id"`
Theme string `json:"theme"`
}
func ExampleTestUserSettings() {
dir, err := ioutil.TempDir(os.TempDir(), "shock")
if err != nil {
panic(err)
}
dbPath := path.Join(dir, "shock.db")
db, err = Open(dbPath, os.ModePerm, DefaultOptions)
if err != nil {
panic(err)
}
// Get a bucket to work with instead of specifying each time
bucket := db.Bucket("test-user-settings")
if err := bucket.Init(); err != nil {
panic(err)
}
// Add a new TestUserSettings
t := &TestUserSettings{
UserID: 1,
Theme: "dark",
}
if err := bucket.PutWithKey(t.UserID, t); err != nil {
panic(err)
}
// Get the TestUser from the DB later (via sequence ID)
var tt TestUserSettings
if err := bucket.Get(t.UserID, &tt); err != nil {
panic(err)
}
if err := db.Bolt.Close(); err != nil {
fmt.Printf("Could not close DB %s: %v\n", dbPath, err)
}
if err := os.RemoveAll(dir); err != nil {
fmt.Printf("Could not delete temp dir %s: %v\n", dir, err)
}
}