Merge pull request #784 from enj/enj/r/specific_private
dynamiccert: prevent misuse of NewServingCert
This commit is contained in:
commit
8ce4bb6dc1
@ -55,7 +55,11 @@ type provider struct {
|
|||||||
// NewServingCert returns a Private that is go routine safe.
|
// NewServingCert returns a Private that is go routine safe.
|
||||||
// It can only hold key pairs that have IsCA=false.
|
// It can only hold key pairs that have IsCA=false.
|
||||||
func NewServingCert(name string) Private {
|
func NewServingCert(name string) Private {
|
||||||
return &provider{name: name}
|
return struct {
|
||||||
|
Private
|
||||||
|
}{
|
||||||
|
Private: &provider{name: name},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewCA returns a Provider that is go routine safe.
|
// NewCA returns a Provider that is go routine safe.
|
||||||
|
@ -12,6 +12,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/google/go-cmp/cmp"
|
"github.com/google/go-cmp/cmp"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
"k8s.io/apimachinery/pkg/util/wait"
|
"k8s.io/apimachinery/pkg/util/wait"
|
||||||
"k8s.io/apiserver/pkg/server/dynamiccertificates"
|
"k8s.io/apiserver/pkg/server/dynamiccertificates"
|
||||||
@ -224,3 +225,19 @@ func poolSubjects(pool *x509.CertPool) [][]byte {
|
|||||||
}
|
}
|
||||||
return pool.Subjects()
|
return pool.Subjects()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestNewServingCert(t *testing.T) {
|
||||||
|
got := NewServingCert("")
|
||||||
|
|
||||||
|
ok1 := assert.Implements(fakeT{}, (*Private)(nil), got)
|
||||||
|
ok2 := assert.Implements(fakeT{}, (*Public)(nil), got)
|
||||||
|
ok3 := assert.Implements(fakeT{}, (*Provider)(nil), got)
|
||||||
|
|
||||||
|
require.True(t, ok1, "NewServingCert must implement Private")
|
||||||
|
require.False(t, ok2, "NewServingCert must not implement Public")
|
||||||
|
require.False(t, ok3, "NewServingCert must not implement Provider")
|
||||||
|
}
|
||||||
|
|
||||||
|
type fakeT struct{}
|
||||||
|
|
||||||
|
func (fakeT) Errorf(string, ...interface{}) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user