2019-03-11 19:56:47 +00:00
|
|
|
package provisioner
|
|
|
|
|
|
|
|
import (
|
2019-07-30 01:24:34 +00:00
|
|
|
"context"
|
2019-03-11 19:56:47 +00:00
|
|
|
"crypto/x509"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/smallstep/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_noop(t *testing.T) {
|
|
|
|
p := noop{}
|
|
|
|
assert.Equals(t, "noop", p.GetID())
|
|
|
|
assert.Equals(t, "noop", p.GetName())
|
|
|
|
assert.Equals(t, noopType, p.GetType())
|
|
|
|
assert.Equals(t, nil, p.Init(Config{}))
|
|
|
|
assert.Equals(t, nil, p.AuthorizeRenewal(&x509.Certificate{}))
|
|
|
|
assert.Equals(t, nil, p.AuthorizeRevoke("foo"))
|
|
|
|
|
|
|
|
kid, key, ok := p.GetEncryptedKey()
|
|
|
|
assert.Equals(t, "", kid)
|
|
|
|
assert.Equals(t, "", key)
|
|
|
|
assert.Equals(t, false, ok)
|
|
|
|
|
2019-07-30 01:24:34 +00:00
|
|
|
ctx := NewContextWithMethod(context.Background(), SignMethod)
|
|
|
|
sigOptions, err := p.AuthorizeSign(ctx, "foo")
|
2019-03-11 19:56:47 +00:00
|
|
|
assert.Equals(t, []SignOption{}, sigOptions)
|
|
|
|
assert.Equals(t, nil, err)
|
|
|
|
}
|