boltstore/store/config_test.go

22 lines
722 B
Go
Raw Normal View History

2014-06-17 12:53:24 +04:00
package store
2014-06-17 13:21:25 +04:00
import (
"testing"
"github.com/yosssi/boltstore/shared"
)
func TestConfig_setDefault(t *testing.T) {
config := Config{}
config.setDefault()
if config.SessionOptions.Path != shared.DefaultPath {
t.Errorf("config.SessionOptions.Path should be %s (actual: %s)", shared.DefaultPath, config.SessionOptions.Path)
}
if config.SessionOptions.MaxAge != shared.DefaultMaxAge {
t.Errorf("config.SessionOptions.MaxAge should be %s (actual: %s)", shared.DefaultMaxAge, config.SessionOptions.MaxAge)
}
if string(config.DBOptions.BucketName) != shared.DefaultBucketName {
t.Errorf("config.SessionOptions.BucketName should be %+v (actual: %+v)", shared.DefaultBucketName, config.DBOptions.BucketName)
}
}