2017-02-10 02:16:16 +00:00
|
|
|
package migrate
|
|
|
|
|
|
|
|
import (
|
2017-02-18 00:59:47 +00:00
|
|
|
nurl "net/url"
|
2017-02-10 02:16:16 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSuintPanicsWithNegativeInput(t *testing.T) {
|
|
|
|
defer func() {
|
|
|
|
if r := recover(); r == nil {
|
|
|
|
t.Fatal("expected suint to panic for -1")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
suint(-1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSuint(t *testing.T) {
|
|
|
|
if u := suint(0); u != 0 {
|
|
|
|
t.Fatalf("expected 0, got %v", u)
|
|
|
|
}
|
|
|
|
}
|
2017-02-18 00:59:47 +00:00
|
|
|
|
|
|
|
func TestFilterCustomQuery(t *testing.T) {
|
|
|
|
n, err := nurl.Parse("foo://host?a=b&x-custom=foo&c=d")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
nx := FilterCustomQuery(n).Query()
|
|
|
|
if nx.Get("x-custom") != "" {
|
|
|
|
t.Fatalf("didn't expect x-custom")
|
|
|
|
}
|
|
|
|
}
|