forked from TrueCloudLab/certificates
Add some tests for SCEP request decoding
This commit is contained in:
parent
c9a89d13ee
commit
688ae837a4
1 changed files with 113 additions and 0 deletions
113
scep/api/api_test.go
Normal file
113
scep/api/api_test.go
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
// Package api implements a SCEP HTTP server.
|
||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"errors"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
"testing/iotest"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Test_decodeRequest(t *testing.T) {
|
||||||
|
type args struct {
|
||||||
|
r *http.Request
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
args args
|
||||||
|
want request
|
||||||
|
wantErr bool
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "fail/unsupported-method",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodPatch, "http://scep:8080/?operation=AnUnsupportOperation", nil),
|
||||||
|
},
|
||||||
|
want: request{},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "fail/get-unsupported-operation",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodGet, "http://scep:8080/?operation=AnUnsupportOperation", nil),
|
||||||
|
},
|
||||||
|
want: request{},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "fail/get-PKIOperation",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodGet, "http://scep:8080/?operation=PKIOperation&message='somewronginput'", nil),
|
||||||
|
},
|
||||||
|
want: request{},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "fail/post-PKIOperation",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodPost, "http://scep:8080/?operation=PKIOperation", iotest.ErrReader(errors.New("a read error"))),
|
||||||
|
},
|
||||||
|
want: request{},
|
||||||
|
wantErr: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "ok/get-GetCACert",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodGet, "http://scep:8080/?operation=GetCACert", nil),
|
||||||
|
},
|
||||||
|
want: request{
|
||||||
|
Operation: "GetCACert",
|
||||||
|
Message: []byte{},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "ok/get-GetCACaps",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodGet, "http://scep:8080/?operation=GetCACaps", nil),
|
||||||
|
},
|
||||||
|
want: request{
|
||||||
|
Operation: "GetCACaps",
|
||||||
|
Message: []byte{},
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "ok/get-PKIOperation",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodGet, "http://scep:8080/?operation=PKIOperation&message=MTIzNA==", nil),
|
||||||
|
},
|
||||||
|
want: request{
|
||||||
|
Operation: "PKIOperation",
|
||||||
|
Message: []byte("1234"),
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "ok/post-PKIOperation",
|
||||||
|
args: args{
|
||||||
|
r: httptest.NewRequest(http.MethodPost, "http://scep:8080/?operation=PKIOperation", bytes.NewBufferString("1234")),
|
||||||
|
},
|
||||||
|
want: request{
|
||||||
|
Operation: "PKIOperation",
|
||||||
|
Message: []byte("1234"),
|
||||||
|
},
|
||||||
|
wantErr: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
got, err := decodeRequest(tt.args.r)
|
||||||
|
if (err != nil) != tt.wantErr {
|
||||||
|
t.Errorf("decodeRequest() error = %v, wantErr %v", err, tt.wantErr)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(got, tt.want) {
|
||||||
|
t.Errorf("decodeRequest() = %v, want %v", got, tt.want)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue