mirror of https://github.com/ory/kratos
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
// Copyright © 2023 Ory Corp
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package serve_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ory/kratos/internal/testhelpers"
|
|
)
|
|
|
|
func TestServe(t *testing.T) {
|
|
_, _ = testhelpers.StartE2EServer(t, "./stub/kratos.yml", nil)
|
|
}
|
|
|
|
func TestServeTLSBase64(t *testing.T) {
|
|
_, _, certBase64, keyBase64 := testhelpers.GenerateTLSCertificateFilesForTests(t)
|
|
publicPort, adminPort := testhelpers.StartE2EServerOnly(t,
|
|
"./stub/kratos.yml",
|
|
true,
|
|
testhelpers.ConfigOptions{
|
|
"serve.public.tls.key.base64": keyBase64,
|
|
"serve.public.tls.cert.base64": certBase64,
|
|
"serve.admin.tls.key.base64": keyBase64,
|
|
"serve.admin.tls.cert.base64": certBase64,
|
|
},
|
|
)
|
|
testhelpers.CheckE2EServerOnHTTPS(t, publicPort, adminPort)
|
|
}
|
|
|
|
func TestServeTLSPaths(t *testing.T) {
|
|
certPath, keyPath, _, _ := testhelpers.GenerateTLSCertificateFilesForTests(t)
|
|
|
|
publicPort, adminPort := testhelpers.StartE2EServerOnly(t,
|
|
"./stub/kratos.yml",
|
|
true,
|
|
testhelpers.ConfigOptions{
|
|
"serve.public.tls.key.path": keyPath,
|
|
"serve.public.tls.cert.path": certPath,
|
|
"serve.admin.tls.key.path": keyPath,
|
|
"serve.admin.tls.cert.path": certPath,
|
|
},
|
|
)
|
|
testhelpers.CheckE2EServerOnHTTPS(t, publicPort, adminPort)
|
|
}
|