dex/db/key_test.go

17 lines
388 B
Go
Raw Normal View History

2015-08-18 05:57:27 +05:30
package db
import (
"testing"
)
func TestNewPrivateKeySetRepoInvalidKey(t *testing.T) {
_, err := NewPrivateKeySetRepo(nil, false, []byte("sharks"))
2015-08-18 05:57:27 +05:30
if err == nil {
t.Errorf("Expected non-nil error for key secret that was not 32 bytes")
}
_, err = NewPrivateKeySetRepo(nil, false)
if err == nil {
t.Fatalf("Expected non-nil error when creating repo with no key secrets")
2015-08-18 05:57:27 +05:30
}
}