47d49c6b92
* Add a go.mod file * run go mod vendor again * Move to a well-supported ini file reader * Remove GO111MODULE=off * Use go 1.16 * Rename github.com/outbrain/golib -> github.com/openark/golib * Remove *.go-e files * Fix for `strconv.ParseInt: parsing "": invalid syntax` error * Add test for '[osc]' section Co-authored-by: Nate Wernimont <nate.wernimont@workiva.com>
59 lines
1.2 KiB
Go
59 lines
1.2 KiB
Go
/*
|
|
Copyright 2016 GitHub Inc.
|
|
See https://github.com/github/gh-ost/blob/master/LICENSE
|
|
*/
|
|
|
|
package base
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/openark/golib/log"
|
|
test "github.com/openark/golib/tests"
|
|
)
|
|
|
|
func init() {
|
|
log.SetLevel(log.ERROR)
|
|
}
|
|
|
|
func TestParseLoadMap(t *testing.T) {
|
|
{
|
|
loadList := ""
|
|
m, err := ParseLoadMap(loadList)
|
|
test.S(t).ExpectNil(err)
|
|
test.S(t).ExpectEquals(len(m), 0)
|
|
}
|
|
{
|
|
loadList := "threads_running=20,threads_connected=10"
|
|
m, err := ParseLoadMap(loadList)
|
|
test.S(t).ExpectNil(err)
|
|
test.S(t).ExpectEquals(len(m), 2)
|
|
test.S(t).ExpectEquals(m["threads_running"], int64(20))
|
|
test.S(t).ExpectEquals(m["threads_connected"], int64(10))
|
|
}
|
|
{
|
|
loadList := "threads_running=20=30,threads_connected=10"
|
|
_, err := ParseLoadMap(loadList)
|
|
test.S(t).ExpectNotNil(err)
|
|
}
|
|
{
|
|
loadList := "threads_running=20,threads_connected"
|
|
_, err := ParseLoadMap(loadList)
|
|
test.S(t).ExpectNotNil(err)
|
|
}
|
|
}
|
|
|
|
func TestString(t *testing.T) {
|
|
{
|
|
m, _ := ParseLoadMap("")
|
|
s := m.String()
|
|
test.S(t).ExpectEquals(s, "")
|
|
}
|
|
{
|
|
loadList := "threads_running=20,threads_connected=10"
|
|
m, _ := ParseLoadMap(loadList)
|
|
s := m.String()
|
|
test.S(t).ExpectEquals(s, "threads_connected=10,threads_running=20")
|
|
}
|
|
}
|