2014-06-07 12:56:22 +04:00
|
|
|
package ledis
|
2014-05-27 12:05:24 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestBinLog(t *testing.T) {
|
|
|
|
cfg := new(BinLogConfig)
|
|
|
|
|
|
|
|
cfg.MaxFileNum = 1
|
|
|
|
cfg.MaxFileSize = 1024
|
|
|
|
cfg.Path = "/tmp/ledis_binlog"
|
|
|
|
|
|
|
|
os.RemoveAll(cfg.Path)
|
|
|
|
|
2014-07-04 11:45:23 +04:00
|
|
|
b, err := NewBinLog(cfg)
|
2014-05-27 12:05:24 +04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := b.Log(make([]byte, 1024)); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := b.Log(make([]byte, 1024)); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if fs, err := ioutil.ReadDir(cfg.Path); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
} else if len(fs) != 2 {
|
|
|
|
t.Fatal(len(fs))
|
|
|
|
}
|
|
|
|
}
|