mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-07 10:17:51 +00:00
497 lines
14 KiB
Go
497 lines
14 KiB
Go
package genswagger
|
|
|
|
import (
|
|
"encoding/json"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
protodescriptor "github.com/golang/protobuf/protoc-gen-go/descriptor"
|
|
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/descriptor"
|
|
"github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule"
|
|
)
|
|
|
|
func crossLinkFixture(f *descriptor.File) *descriptor.File {
|
|
for _, m := range f.Messages {
|
|
m.File = f
|
|
}
|
|
for _, svc := range f.Services {
|
|
svc.File = f
|
|
for _, m := range svc.Methods {
|
|
m.Service = svc
|
|
for _, b := range m.Bindings {
|
|
b.Method = m
|
|
for _, param := range b.PathParams {
|
|
param.Method = m
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return f
|
|
}
|
|
|
|
func TestApplyTemplateSimple(t *testing.T) {
|
|
msgdesc := &protodescriptor.DescriptorProto{
|
|
Name: proto.String("ExampleMessage"),
|
|
}
|
|
meth := &protodescriptor.MethodDescriptorProto{
|
|
Name: proto.String("Example"),
|
|
InputType: proto.String("ExampleMessage"),
|
|
OutputType: proto.String("ExampleMessage"),
|
|
}
|
|
svc := &protodescriptor.ServiceDescriptorProto{
|
|
Name: proto.String("ExampleService"),
|
|
Method: []*protodescriptor.MethodDescriptorProto{meth},
|
|
}
|
|
msg := &descriptor.Message{
|
|
DescriptorProto: msgdesc,
|
|
}
|
|
file := descriptor.File{
|
|
FileDescriptorProto: &protodescriptor.FileDescriptorProto{
|
|
SourceCodeInfo: &protodescriptor.SourceCodeInfo{},
|
|
Name: proto.String("example.proto"),
|
|
Package: proto.String("example"),
|
|
Dependency: []string{"a.example/b/c.proto", "a.example/d/e.proto"},
|
|
MessageType: []*protodescriptor.DescriptorProto{msgdesc},
|
|
Service: []*protodescriptor.ServiceDescriptorProto{svc},
|
|
},
|
|
GoPkg: descriptor.GoPackage{
|
|
Path: "example.com/path/to/example/example.pb",
|
|
Name: "example_pb",
|
|
},
|
|
Messages: []*descriptor.Message{msg},
|
|
Services: []*descriptor.Service{
|
|
{
|
|
ServiceDescriptorProto: svc,
|
|
Methods: []*descriptor.Method{
|
|
{
|
|
MethodDescriptorProto: meth,
|
|
RequestType: msg,
|
|
ResponseType: msg,
|
|
Bindings: []*descriptor.Binding{
|
|
{
|
|
HTTPMethod: "GET",
|
|
Body: &descriptor.Body{FieldPath: nil},
|
|
PathTmpl: httprule.Template{
|
|
Version: 1,
|
|
OpCodes: []int{0, 0},
|
|
Template: "/v1/echo", // TODO(achew22): Figure out what this should really be
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
result, err := applyTemplate(param{File: crossLinkFixture(&file), reg: descriptor.NewRegistry()})
|
|
if err != nil {
|
|
t.Errorf("applyTemplate(%#v) failed with %v; want success", file, err)
|
|
return
|
|
}
|
|
got := new(swaggerObject)
|
|
err = json.Unmarshal([]byte(result), got)
|
|
if err != nil {
|
|
t.Errorf("json.Unmarshal(%s) failed with %v; want success", result, err)
|
|
return
|
|
}
|
|
if want, is, name := "2.0", got.Swagger, "Swagger"; !reflect.DeepEqual(is, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, is, want)
|
|
}
|
|
if want, is, name := "", got.BasePath, "BasePath"; !reflect.DeepEqual(is, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, is, want)
|
|
}
|
|
if want, is, name := []string{"http", "https"}, got.Schemes, "Schemes"; !reflect.DeepEqual(is, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, is, want)
|
|
}
|
|
if want, is, name := []string{"application/json"}, got.Consumes, "Consumes"; !reflect.DeepEqual(is, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, is, want)
|
|
}
|
|
if want, is, name := []string{"application/json"}, got.Produces, "Produces"; !reflect.DeepEqual(is, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, is, want)
|
|
}
|
|
|
|
// If there was a failure, print out the input and the json result for debugging.
|
|
if t.Failed() {
|
|
t.Errorf("had: %s", file)
|
|
t.Errorf("got: %s", result)
|
|
}
|
|
}
|
|
|
|
func TestApplyTemplateRequestWithoutClientStreaming(t *testing.T) {
|
|
t.Skip()
|
|
msgdesc := &protodescriptor.DescriptorProto{
|
|
Name: proto.String("ExampleMessage"),
|
|
Field: []*protodescriptor.FieldDescriptorProto{
|
|
{
|
|
Name: proto.String("nested"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_MESSAGE.Enum(),
|
|
TypeName: proto.String("NestedMessage"),
|
|
Number: proto.Int32(1),
|
|
},
|
|
},
|
|
}
|
|
nesteddesc := &protodescriptor.DescriptorProto{
|
|
Name: proto.String("NestedMessage"),
|
|
Field: []*protodescriptor.FieldDescriptorProto{
|
|
{
|
|
Name: proto.String("int32"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_INT32.Enum(),
|
|
Number: proto.Int32(1),
|
|
},
|
|
{
|
|
Name: proto.String("bool"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_BOOL.Enum(),
|
|
Number: proto.Int32(2),
|
|
},
|
|
},
|
|
}
|
|
meth := &protodescriptor.MethodDescriptorProto{
|
|
Name: proto.String("Echo"),
|
|
InputType: proto.String("ExampleMessage"),
|
|
OutputType: proto.String("ExampleMessage"),
|
|
ClientStreaming: proto.Bool(false),
|
|
}
|
|
svc := &protodescriptor.ServiceDescriptorProto{
|
|
Name: proto.String("ExampleService"),
|
|
Method: []*protodescriptor.MethodDescriptorProto{meth},
|
|
}
|
|
|
|
meth.ServerStreaming = proto.Bool(false)
|
|
|
|
msg := &descriptor.Message{
|
|
DescriptorProto: msgdesc,
|
|
}
|
|
nested := &descriptor.Message{
|
|
DescriptorProto: nesteddesc,
|
|
}
|
|
|
|
nestedField := &descriptor.Field{
|
|
Message: msg,
|
|
FieldDescriptorProto: msg.GetField()[0],
|
|
}
|
|
intField := &descriptor.Field{
|
|
Message: nested,
|
|
FieldDescriptorProto: nested.GetField()[0],
|
|
}
|
|
boolField := &descriptor.Field{
|
|
Message: nested,
|
|
FieldDescriptorProto: nested.GetField()[1],
|
|
}
|
|
file := descriptor.File{
|
|
FileDescriptorProto: &protodescriptor.FileDescriptorProto{
|
|
SourceCodeInfo: &protodescriptor.SourceCodeInfo{},
|
|
Name: proto.String("example.proto"),
|
|
Package: proto.String("example"),
|
|
MessageType: []*protodescriptor.DescriptorProto{msgdesc, nesteddesc},
|
|
Service: []*protodescriptor.ServiceDescriptorProto{svc},
|
|
},
|
|
GoPkg: descriptor.GoPackage{
|
|
Path: "example.com/path/to/example/example.pb",
|
|
Name: "example_pb",
|
|
},
|
|
Messages: []*descriptor.Message{msg, nested},
|
|
Services: []*descriptor.Service{
|
|
{
|
|
ServiceDescriptorProto: svc,
|
|
Methods: []*descriptor.Method{
|
|
{
|
|
MethodDescriptorProto: meth,
|
|
RequestType: msg,
|
|
ResponseType: msg,
|
|
Bindings: []*descriptor.Binding{
|
|
{
|
|
HTTPMethod: "POST",
|
|
PathTmpl: httprule.Template{
|
|
Version: 1,
|
|
OpCodes: []int{0, 0},
|
|
Template: "/v1/echo", // TODO(achew): Figure out what this hsould really be
|
|
},
|
|
PathParams: []descriptor.Parameter{
|
|
{
|
|
FieldPath: descriptor.FieldPath([]descriptor.FieldPathComponent{
|
|
{
|
|
Name: "nested",
|
|
Target: nestedField,
|
|
},
|
|
{
|
|
Name: "int32",
|
|
Target: intField,
|
|
},
|
|
}),
|
|
Target: intField,
|
|
},
|
|
},
|
|
Body: &descriptor.Body{
|
|
FieldPath: descriptor.FieldPath([]descriptor.FieldPathComponent{
|
|
{
|
|
Name: "nested",
|
|
Target: nestedField,
|
|
},
|
|
{
|
|
Name: "bool",
|
|
Target: boolField,
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
result, err := applyTemplate(param{File: crossLinkFixture(&file)})
|
|
if err != nil {
|
|
t.Errorf("applyTemplate(%#v) failed with %v; want success", file, err)
|
|
return
|
|
}
|
|
var obj swaggerObject
|
|
err = json.Unmarshal([]byte(result), &obj)
|
|
if err != nil {
|
|
t.Errorf("applyTemplate(%#v) failed with %v; want success", file, err)
|
|
return
|
|
}
|
|
if want, got := "2.0", obj.Swagger; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).Swagger = %s want to be %s", file, got, want)
|
|
}
|
|
if want, got := "", obj.BasePath; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).BasePath = %s want to be %s", file, got, want)
|
|
}
|
|
if want, got := []string{"http", "https"}, obj.Schemes; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).Schemes = %s want to be %s", file, got, want)
|
|
}
|
|
if want, got := []string{"application/json"}, obj.Consumes; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).Consumes = %s want to be %s", file, got, want)
|
|
}
|
|
if want, got := []string{"application/json"}, obj.Produces; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).Produces = %s want to be %s", file, got, want)
|
|
}
|
|
if want, got, name := "Generated for ExampleService.Echo - ", obj.Paths["/v1/echo"].Post.Summary, "Paths[/v1/echo].Post.Summary"; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("applyTemplate(%#v).%s = %s want to be %s", file, name, got, want)
|
|
}
|
|
|
|
// If there was a failure, print out the input and the json result for debugging.
|
|
if t.Failed() {
|
|
t.Errorf("had: %s", file)
|
|
t.Errorf("got: %s", result)
|
|
}
|
|
}
|
|
|
|
func TestApplyTemplateRequestWithClientStreaming(t *testing.T) {
|
|
t.Skip()
|
|
msgdesc := &protodescriptor.DescriptorProto{
|
|
Name: proto.String("ExampleMessage"),
|
|
Field: []*protodescriptor.FieldDescriptorProto{
|
|
{
|
|
Name: proto.String("nested"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_MESSAGE.Enum(),
|
|
TypeName: proto.String("NestedMessage"),
|
|
Number: proto.Int32(1),
|
|
},
|
|
},
|
|
}
|
|
nesteddesc := &protodescriptor.DescriptorProto{
|
|
Name: proto.String("NestedMessage"),
|
|
Field: []*protodescriptor.FieldDescriptorProto{
|
|
{
|
|
Name: proto.String("int32"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_INT32.Enum(),
|
|
Number: proto.Int32(1),
|
|
},
|
|
{
|
|
Name: proto.String("bool"),
|
|
Label: protodescriptor.FieldDescriptorProto_LABEL_OPTIONAL.Enum(),
|
|
Type: protodescriptor.FieldDescriptorProto_TYPE_BOOL.Enum(),
|
|
Number: proto.Int32(2),
|
|
},
|
|
},
|
|
}
|
|
meth := &protodescriptor.MethodDescriptorProto{
|
|
Name: proto.String("Echo"),
|
|
InputType: proto.String("ExampleMessage"),
|
|
OutputType: proto.String("ExampleMessage"),
|
|
ClientStreaming: proto.Bool(true),
|
|
ServerStreaming: proto.Bool(true),
|
|
}
|
|
svc := &protodescriptor.ServiceDescriptorProto{
|
|
Name: proto.String("ExampleService"),
|
|
Method: []*protodescriptor.MethodDescriptorProto{meth},
|
|
}
|
|
|
|
msg := &descriptor.Message{
|
|
DescriptorProto: msgdesc,
|
|
}
|
|
nested := &descriptor.Message{
|
|
DescriptorProto: nesteddesc,
|
|
}
|
|
|
|
nestedField := &descriptor.Field{
|
|
Message: msg,
|
|
FieldDescriptorProto: msg.GetField()[0],
|
|
}
|
|
intField := &descriptor.Field{
|
|
Message: nested,
|
|
FieldDescriptorProto: nested.GetField()[0],
|
|
}
|
|
boolField := &descriptor.Field{
|
|
Message: nested,
|
|
FieldDescriptorProto: nested.GetField()[1],
|
|
}
|
|
file := descriptor.File{
|
|
FileDescriptorProto: &protodescriptor.FileDescriptorProto{
|
|
SourceCodeInfo: &protodescriptor.SourceCodeInfo{},
|
|
Name: proto.String("example.proto"),
|
|
Package: proto.String("example"),
|
|
MessageType: []*protodescriptor.DescriptorProto{msgdesc, nesteddesc},
|
|
Service: []*protodescriptor.ServiceDescriptorProto{svc},
|
|
},
|
|
GoPkg: descriptor.GoPackage{
|
|
Path: "example.com/path/to/example/example.pb",
|
|
Name: "example_pb",
|
|
},
|
|
Messages: []*descriptor.Message{msg, nested},
|
|
Services: []*descriptor.Service{
|
|
{
|
|
ServiceDescriptorProto: svc,
|
|
Methods: []*descriptor.Method{
|
|
{
|
|
MethodDescriptorProto: meth,
|
|
RequestType: msg,
|
|
ResponseType: msg,
|
|
Bindings: []*descriptor.Binding{
|
|
{
|
|
HTTPMethod: "POST",
|
|
PathTmpl: httprule.Template{
|
|
Version: 1,
|
|
OpCodes: []int{0, 0},
|
|
Template: "/v1/echo", // TODO(achew): Figure out what this hsould really be
|
|
},
|
|
PathParams: []descriptor.Parameter{
|
|
{
|
|
FieldPath: descriptor.FieldPath([]descriptor.FieldPathComponent{
|
|
{
|
|
Name: "nested",
|
|
Target: nestedField,
|
|
},
|
|
{
|
|
Name: "int32",
|
|
Target: intField,
|
|
},
|
|
}),
|
|
Target: intField,
|
|
},
|
|
},
|
|
Body: &descriptor.Body{
|
|
FieldPath: descriptor.FieldPath([]descriptor.FieldPathComponent{
|
|
{
|
|
Name: "nested",
|
|
Target: nestedField,
|
|
},
|
|
{
|
|
Name: "bool",
|
|
Target: boolField,
|
|
},
|
|
}),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
_, err := applyTemplate(param{File: crossLinkFixture(&file)})
|
|
if err == nil {
|
|
t.Errorf("applyTemplate(%#v) should have failed cause swagger doesn't support streaming", file)
|
|
return
|
|
}
|
|
}
|
|
|
|
func TestTemplateToSwaggerPath(t *testing.T) {
|
|
var tests = []struct {
|
|
input string
|
|
expected string
|
|
}{
|
|
{"/test", "/test"},
|
|
{"/{test}", "/{test}"},
|
|
{"/{test=prefix/*}", "/{test}"},
|
|
{"/{test=prefix/that/has/multiple/parts/to/it/*}", "/{test}"},
|
|
{"/{test1}/{test2}", "/{test1}/{test2}"},
|
|
{"/{test1}/{test2}/", "/{test1}/{test2}/"},
|
|
}
|
|
|
|
for _, data := range tests {
|
|
actual := templateToSwaggerPath(data.input)
|
|
if data.expected != actual {
|
|
t.Errorf("Expected templateToSwaggerPath(%v) = %v, actual: %v", data.input, data.expected, actual)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestResolveFullyQualifiedNameToSwaggerName(t *testing.T) {
|
|
var tests = []struct {
|
|
input string
|
|
output string
|
|
listOfFQMNs []string
|
|
}{
|
|
{
|
|
".a.b.C",
|
|
"C",
|
|
[]string{
|
|
".a.b.C",
|
|
},
|
|
},
|
|
{
|
|
".a.b.C",
|
|
"abC",
|
|
[]string{
|
|
".a.C",
|
|
".a.b.C",
|
|
},
|
|
},
|
|
{
|
|
".a.b.C",
|
|
"abC",
|
|
[]string{
|
|
".C",
|
|
".a.C",
|
|
".a.b.C",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, data := range tests {
|
|
output := resolveFullyQualifiedNameToSwaggerName(data.input, data.listOfFQMNs)
|
|
if output != data.output {
|
|
t.Errorf("Expected fullyQualifiedNameToSwaggerName(%v) to be %s but got %s",
|
|
data.input, data.output, output)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestFQMNtoSwaggerName(t *testing.T) {
|
|
var tests = []struct {
|
|
input string
|
|
expected string
|
|
}{
|
|
{"/test", "/test"},
|
|
{"/{test}", "/{test}"},
|
|
{"/{test=prefix/*}", "/{test}"},
|
|
{"/{test=prefix/that/has/multiple/parts/to/it/*}", "/{test}"},
|
|
{"/{test1}/{test2}", "/{test1}/{test2}"},
|
|
{"/{test1}/{test2}/", "/{test1}/{test2}/"},
|
|
}
|
|
|
|
for _, data := range tests {
|
|
actual := templateToSwaggerPath(data.input)
|
|
if data.expected != actual {
|
|
t.Errorf("Expected templateToSwaggerPath(%v) = %v, actual: %v", data.input, data.expected, actual)
|
|
}
|
|
}
|
|
}
|