You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-mitmproxy/proxy/cert_test.go

43 lines
611 B
Go

package proxy
import (
"bytes"
"io/ioutil"
"reflect"
"testing"
)
func TestGetStorePath(t *testing.T) {
path, err := getStorePath("")
if err != nil {
t.Fatal(err)
}
if path == "" {
t.Fatal("should have path")
}
}
func TestNewCA(t *testing.T) {
ca, err := NewCA("")
if err != nil {
t.Fatal(err)
}
data := make([]byte, 0)
buf := bytes.NewBuffer(data)
err = ca.saveTo(buf)
if err != nil {
t.Fatal(err)
}
fileContent, err := ioutil.ReadFile(ca.caFile())
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(fileContent, buf.Bytes()) {
t.Fatal("pem content should equal")
}
}