Add user storage test
This commit is contained in:
parent
0c5b4bb04e
commit
137cf3224d
6 changed files with 105 additions and 33 deletions
|
@ -6,12 +6,6 @@ import (
|
|||
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
|
||||
)
|
||||
|
||||
var Path directory
|
||||
|
||||
func SetDirectory(dir string) {
|
||||
Path = directory(dir)
|
||||
}
|
||||
|
||||
func DefaultDirectory() string {
|
||||
home, _ := homedir.Dir()
|
||||
return filepath.Join(home, ".dispatch")
|
||||
|
|
|
@ -8,6 +8,8 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
Path directory
|
||||
|
||||
db *bolt.DB
|
||||
|
||||
bucketUsers = []byte("Users")
|
||||
|
@ -16,9 +18,16 @@ var (
|
|||
bucketMessages = []byte("Messages")
|
||||
)
|
||||
|
||||
func Initialize() {
|
||||
log.Println("Storing data at", Path.Root())
|
||||
func Initialize(dir string) {
|
||||
Path = directory(dir)
|
||||
|
||||
err := os.MkdirAll(Path.Logs(), 0700)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func Open() {
|
||||
var err error
|
||||
db, err = bolt.Open(Path.Database(), 0600, nil)
|
||||
if err != nil {
|
||||
|
@ -37,8 +46,3 @@ func Initialize() {
|
|||
func Close() {
|
||||
db.Close()
|
||||
}
|
||||
|
||||
func Clear() {
|
||||
os.RemoveAll(Path.Logs())
|
||||
os.Remove(Path.Database())
|
||||
}
|
||||
|
|
65
storage/user_test.go
Normal file
65
storage/user_test.go
Normal file
|
@ -0,0 +1,65 @@
|
|||
package storage
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"testing"
|
||||
|
||||
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func tempdir() string {
|
||||
f, _ := ioutil.TempDir("", "")
|
||||
return f
|
||||
}
|
||||
|
||||
func TestUser(t *testing.T) {
|
||||
Initialize(tempdir())
|
||||
Open()
|
||||
|
||||
srv := Server{
|
||||
Name: "Freenode",
|
||||
Address: "irc.freenode.net",
|
||||
Nick: "test",
|
||||
}
|
||||
chan1 := Channel{
|
||||
Server: srv.Address,
|
||||
Name: "#test",
|
||||
}
|
||||
chan2 := Channel{
|
||||
Server: srv.Address,
|
||||
Name: "#testing",
|
||||
}
|
||||
|
||||
user := NewUser("unique")
|
||||
user.AddServer(srv)
|
||||
user.AddChannel(chan1)
|
||||
user.AddChannel(chan2)
|
||||
user.Close()
|
||||
|
||||
users := LoadUsers()
|
||||
assert.Len(t, users, 1)
|
||||
|
||||
user = users[0]
|
||||
assert.Equal(t, "unique", user.UUID)
|
||||
|
||||
servers := user.GetServers()
|
||||
assert.Len(t, servers, 1)
|
||||
assert.Equal(t, srv, servers[0])
|
||||
|
||||
channels := user.GetChannels()
|
||||
assert.Len(t, channels, 2)
|
||||
assert.Equal(t, chan1, channels[0])
|
||||
assert.Equal(t, chan2, channels[1])
|
||||
|
||||
user.SetNick("bob", srv.Address)
|
||||
assert.Equal(t, "bob", user.GetServers()[0].Nick)
|
||||
|
||||
user.RemoveChannel(srv.Address, chan1.Name)
|
||||
channels = user.GetChannels()
|
||||
assert.Len(t, channels, 1)
|
||||
assert.Equal(t, chan2, channels[0])
|
||||
|
||||
user.RemoveServer(srv.Address)
|
||||
assert.Len(t, user.GetServers(), 0)
|
||||
assert.Len(t, user.GetChannels(), 0)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue