copy InsecureSkipVerify from the tls.Config to the mint.Config

mint now supports InsecureSkipVerify.
This commit is contained in:
Marten Seemann 2018-02-01 11:47:47 +08:00
parent 97413c5281
commit 706a828e16
2 changed files with 8 additions and 0 deletions

View file

@ -49,6 +49,13 @@ var _ = Describe("Packing and unpacking Initial packets", func() {
Expect(mintConf.ServerName).To(Equal("www.example.com"))
})
It("sets InsecureSkipVerify", func() {
conf := &tls.Config{InsecureSkipVerify: true}
mintConf, err := tlsToMintConfig(conf, protocol.PerspectiveClient)
Expect(err).ToNot(HaveOccurred())
Expect(mintConf.InsecureSkipVerify).To(BeTrue())
})
It("sets the certificate chain", func() {
tlsConf := testdata.GetTLSConfig()
mintConf, err := tlsToMintConfig(tlsConf, protocol.PerspectiveClient)