fixed v4 chages #124

Closed
devstigneev wants to merge 13 commits from devstigneev:v4_prepared into v4
Showing only changes of commit 916d248147 - Show all commits

View File

@@ -61,9 +61,16 @@ func TestNewPathRequest(t *testing.T) {
func TestNewPathRequestWithEmptyBody(t *testing.T) {
val := struct{}{}
cases := []string{
"",
"*",
"{}",
"nil",
`{"type": "invalid"}`,
}
for _, body := range cases {
for _, m := range []string{"POST", "PUT", "PATCH", "GET", "DELETE"} {
body := `{"type": "invalid"}`
path, nmsg, err := newPathRequest("/v1/test", m, body, val, []string{"protobuf", "json"}, nil)
if err != nil {
t.Fatal(err)
@@ -81,6 +88,7 @@ func TestNewPathRequestWithEmptyBody(t *testing.T) {
t.Fatalf("invalid path: %v nmsg: %v", path, nmsg)
}
}
}
}
func TestNewPathVarRequest(t *testing.T) {