Rename CAPool to CaPool.

pull/605/head
Mariano Cano 3 years ago
parent 9db68db509
commit 529eb4bae9

@ -49,7 +49,7 @@ type Options struct {
// certificate authority.
Project string `json:"-"`
Location string `json:"-"`
CAPool string `json:"-"`
CaPool string `json:"-"`
}
// CertificateIssuer contains the properties used to use the StepCAS certificate

@ -100,9 +100,10 @@ func New(ctx context.Context, opts apiv1.Options) (*CloudCAS, error) {
return nil, errors.New("cloudCAS 'project' cannot be empty")
case opts.Location == "":
return nil, errors.New("cloudCAS 'location' cannot be empty")
case opts.CAPool == "":
case opts.CaPool == "":
return nil, errors.New("cloudCAS 'caPool' cannot be empty")
}
} else {
if opts.CertificateAuthority == "" {
return nil, errors.New("cloudCAS 'certificateAuthority' cannot be empty")
@ -118,8 +119,8 @@ func New(ctx context.Context, opts apiv1.Options) (*CloudCAS, error) {
if opts.Location == "" {
opts.Location = parts[3]
}
if opts.CAPool == "" {
opts.CAPool = parts[5]
if opts.CaPool == "" {
opts.CaPool = parts[5]
}
}
}
@ -134,7 +135,7 @@ func New(ctx context.Context, opts apiv1.Options) (*CloudCAS, error) {
certificateAuthority: opts.CertificateAuthority,
project: opts.Project,
location: opts.Location,
caPool: opts.CAPool,
caPool: opts.CaPool,
}, nil
}

@ -290,7 +290,7 @@ func TestNew(t *testing.T) {
caPool: testCaPool,
}, false},
{"ok creator", args{context.Background(), apiv1.Options{
IsCreator: true, Project: testProject, Location: testLocation, CAPool: testCaPool,
IsCreator: true, Project: testProject, Location: testLocation, CaPool: testCaPool,
}}, &CloudCAS{
client: &testClient{},
project: testProject,
@ -311,7 +311,7 @@ func TestNew(t *testing.T) {
IsCreator: true, Project: testProject, Location: "",
}}, nil, true},
{"fail caPool", args{context.Background(), apiv1.Options{
IsCreator: true, Project: testProject, Location: testLocation, CAPool: "",
IsCreator: true, Project: testProject, Location: testLocation, CaPool: "",
}}, nil, true},
}
for _, tt := range tests {

Loading…
Cancel
Save