150 lines
3.8 KiB
Go
150 lines
3.8 KiB
Go
/*
|
|
Copyright 2023 API Testing Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package runner
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/gob"
|
|
"fmt"
|
|
|
|
"github.com/linuxsuren/api-testing/pkg/testing"
|
|
"github.com/linuxsuren/api-testing/pkg/util"
|
|
)
|
|
|
|
type Mutator interface {
|
|
Render(*testing.TestCase) *testing.TestCase
|
|
Message() string
|
|
}
|
|
|
|
type authHeaderMissingMutator struct{}
|
|
|
|
func (m *authHeaderMissingMutator) Render(testcase *testing.TestCase) (result *testing.TestCase) {
|
|
result = &testing.TestCase{}
|
|
_ = DeepCopy(testcase, result)
|
|
delete(result.Request.Header, util.Authorization)
|
|
return
|
|
}
|
|
|
|
func (m *authHeaderMissingMutator) Message() string {
|
|
return "Missing Authorization in header"
|
|
}
|
|
|
|
type authHeaderRandomMutator struct{}
|
|
|
|
func (m *authHeaderRandomMutator) Render(testcase *testing.TestCase) (result *testing.TestCase) {
|
|
result = &testing.TestCase{}
|
|
_ = DeepCopy(testcase, result)
|
|
if result.Request.Header == nil {
|
|
result.Request.Header = make(map[string]string)
|
|
}
|
|
result.Request.Header[util.Authorization] = util.String(6)
|
|
return
|
|
}
|
|
|
|
func (m *authHeaderRandomMutator) Message() string {
|
|
return "Random Authorization in header"
|
|
}
|
|
|
|
type requiredQueryMutator struct {
|
|
field string
|
|
}
|
|
|
|
func (m *requiredQueryMutator) Render(testcase *testing.TestCase) (result *testing.TestCase) {
|
|
result = &testing.TestCase{}
|
|
_ = DeepCopy(testcase, result)
|
|
delete(result.Request.Query, m.field)
|
|
return
|
|
}
|
|
|
|
func (m *requiredQueryMutator) Message() string {
|
|
return fmt.Sprintf("Missing required query field: %q", m.field)
|
|
}
|
|
|
|
type minLengthQueryMutator struct {
|
|
field string
|
|
length int
|
|
}
|
|
|
|
func (m *minLengthQueryMutator) Render(testcase *testing.TestCase) (result *testing.TestCase) {
|
|
result = &testing.TestCase{}
|
|
_ = DeepCopy(testcase, result)
|
|
if result.Request.Query != nil && m.length > 1 {
|
|
result.Request.Query[m.field] = util.String(m.length - 1)
|
|
}
|
|
return
|
|
}
|
|
|
|
func (m *minLengthQueryMutator) Message() string {
|
|
return fmt.Sprintf("Min length query field: %q", m.field)
|
|
}
|
|
|
|
func DeepCopy(src, dist interface{}) (err error) {
|
|
buf := bytes.Buffer{}
|
|
if err = gob.NewEncoder(&buf).Encode(src); err != nil {
|
|
return
|
|
}
|
|
return gob.NewDecoder(&buf).Decode(dist)
|
|
}
|
|
|
|
type reverseHTTPRunner struct {
|
|
TestCaseRunner
|
|
}
|
|
|
|
func NewReverseHTTPRunner(normal TestCaseRunner) TestCaseRunner {
|
|
return &reverseHTTPRunner{
|
|
TestCaseRunner: normal,
|
|
}
|
|
}
|
|
|
|
func (r *reverseHTTPRunner) RunTestCase(testcase *testing.TestCase, dataContext interface{},
|
|
ctx context.Context) (output interface{}, err error) {
|
|
// find all the mutators
|
|
|
|
var mutators []Mutator
|
|
if _, ok := testcase.Request.Header[util.Authorization]; ok {
|
|
mutators = append(mutators, &authHeaderMissingMutator{}, &authHeaderRandomMutator{})
|
|
}
|
|
|
|
for k := range testcase.Request.Query {
|
|
verifier := testcase.Request.Query.GetVerifier(k)
|
|
if verifier == nil {
|
|
continue
|
|
}
|
|
|
|
if verifier.Required {
|
|
mutators = append(mutators, &requiredQueryMutator{field: k})
|
|
}
|
|
if verifier.MinLength > 0 {
|
|
mutators = append(mutators, &minLengthQueryMutator{
|
|
field: k,
|
|
length: verifier.MinLength,
|
|
})
|
|
}
|
|
}
|
|
|
|
for _, mutator := range mutators {
|
|
mutationCase := mutator.Render(testcase)
|
|
_, reverseErr := r.TestCaseRunner.RunTestCase(mutationCase, dataContext, ctx)
|
|
if reverseErr == nil {
|
|
err = fmt.Errorf("testcase %q failed when: %q", testcase.Name, mutator.Message())
|
|
return
|
|
}
|
|
}
|
|
return
|
|
}
|