0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Minor test improvements

This commit is contained in:
Matthew Holt 2015-10-27 12:53:31 -06:00
parent a6ea1e6b55
commit 362ead2760
2 changed files with 14 additions and 2 deletions

12
caddy/assets/path_test.go Normal file
View file

@ -0,0 +1,12 @@
package assets
import (
"strings"
"testing"
)
func TestPath(t *testing.T) {
if actual := Path(); !strings.HasSuffix(actual, ".caddy") {
t.Errorf("Expected path to be a .caddy folder, got: %v", actual)
}
}

View file

@ -10,14 +10,14 @@ import (
)
func init() {
rsaKeySizeToUse = 128 // makes tests faster
rsaKeySizeToUse = 128 // make tests faster; small key size OK for testing
}
func TestSaveAndLoadRSAPrivateKey(t *testing.T) {
keyFile := "test.key"
defer os.Remove(keyFile)
privateKey, err := rsa.GenerateKey(rand.Reader, 128) // small key size is OK for testing
privateKey, err := rsa.GenerateKey(rand.Reader, rsaKeySizeToUse)
if err != nil {
t.Fatal(err)
}