1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
package openapi3
import (
"testing"
"github.com/stretchr/testify/require"
)
var operation *Operation
func initOperation() {
operation = NewOperation()
operation.Description = "Some description"
operation.Summary = "Some summary"
operation.Tags = []string{"tag1", "tag2"}
}
func TestAddParameter(t *testing.T) {
initOperation()
operation.AddParameter(NewQueryParameter("param1"))
operation.AddParameter(NewCookieParameter("param2"))
require.Equal(t, "param1", operation.Parameters.GetByInAndName("query", "param1").Name)
require.Equal(t, "param2", operation.Parameters.GetByInAndName("cookie", "param2").Name)
}
func TestAddResponse(t *testing.T) {
initOperation()
operation.AddResponse(200, NewResponse())
operation.AddResponse(400, NewResponse())
require.NotNil(t, "status 200", operation.Responses.Get(200).Value)
require.NotNil(t, "status 400", operation.Responses.Get(400).Value)
}
|