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>
30 lines
718 B
Go
30 lines
718 B
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 TestStringContainsAll(t *testing.T) {
|
|
s := `insert,delete,update`
|
|
|
|
test.S(t).ExpectFalse(StringContainsAll(s))
|
|
test.S(t).ExpectFalse(StringContainsAll(s, ""))
|
|
test.S(t).ExpectFalse(StringContainsAll(s, "drop"))
|
|
test.S(t).ExpectTrue(StringContainsAll(s, "insert"))
|
|
test.S(t).ExpectFalse(StringContainsAll(s, "insert", "drop"))
|
|
test.S(t).ExpectTrue(StringContainsAll(s, "insert", ""))
|
|
test.S(t).ExpectTrue(StringContainsAll(s, "insert", "update", "delete"))
|
|
}
|