1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
//go:build go1.23
package sceptest
import (
"crypto/x509"
"fmt"
"net/http"
"sync"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
legacyx509 "github.com/smallstep/certificates/test/integration/scep/internal/x509"
)
func legacyCertificateParser(der []byte) (*x509.Certificate, error) {
certs, err := legacyx509.ParseCertificates(der)
if err != nil {
return nil, fmt.Errorf("failed parsing self signed certificate: %w", err)
}
return certs[0], nil
}
func TestIssuesCertificateToEmulatedWindowsClientGo123(t *testing.T) {
c := newTestCA(t, "Step E2E | SCEP Regular w/ Windows Client")
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
err := c.run()
require.ErrorIs(t, err, http.ErrServerClosed)
}()
// instantiate a client for the CA running at the random address
caClient := newCAClient(t, c.caURL, c.rootFilepath)
requireHealthyCA(t, caClient)
scepClient := createSCEPClient(t, c.caURL, c.root)
cert, err := scepClient.requestCertificateEmulatingWindowsClient(t, "test.localhost", []string{"test.localhost"}, legacyCertificateParser)
require.NoError(t, err)
require.NotNil(t, cert)
assert.Equal(t, "test.localhost", cert.Subject.CommonName)
assert.Equal(t, "Step E2E | SCEP Regular w/ Windows Client Intermediate CA", cert.Issuer.CommonName)
// done testing; stop and wait for the server to quit
err = c.stop()
require.NoError(t, err)
wg.Wait()
}
|