2021-01-19 04:12:31 +03:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2021-02-06 19:05:55 +03:00
|
|
|
"net/url"
|
|
|
|
"strings"
|
2021-01-19 04:12:31 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Request struct {
|
2021-10-25 19:59:37 +03:00
|
|
|
Name string `json:"name"`
|
|
|
|
Field1 string `json:"field1"`
|
|
|
|
ClientID string
|
|
|
|
Field2 string
|
|
|
|
Field3 int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPathWithHeader(t *testing.T) {
|
|
|
|
req := &Request{Name: "vtolstov", Field1: "field1", ClientID: "1234567890"}
|
|
|
|
p, m, err := newPathRequest(
|
|
|
|
"/api/v1/test?Name={name}&Field1={field1}",
|
|
|
|
"POST",
|
|
|
|
"*",
|
|
|
|
req,
|
|
|
|
nil,
|
|
|
|
map[string]map[string]string{"header": {"ClientID": "true"}},
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
u, err := url.Parse(p)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if m != nil {
|
|
|
|
t.Fatal("new struct must be nil")
|
|
|
|
}
|
|
|
|
if u.Query().Get("Name") != "vtolstov" || u.Query().Get("Field1") != "field1" {
|
|
|
|
t.Fatalf("invalid values %v", u.Query())
|
|
|
|
}
|
2021-01-19 04:12:31 +03:00
|
|
|
}
|
|
|
|
|
2021-09-01 02:06:01 +03:00
|
|
|
func TestPathValues(t *testing.T) {
|
|
|
|
req := &Request{Name: "vtolstov", Field1: "field1"}
|
2021-10-25 19:59:37 +03:00
|
|
|
p, m, err := newPathRequest("/api/v1/test?Name={name}&Field1={field1}", "POST", "*", req, nil, nil)
|
2021-09-01 02:06:01 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
u, err := url.Parse(p)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_ = m
|
|
|
|
if u.Query().Get("Name") != "vtolstov" || u.Query().Get("Field1") != "field1" {
|
|
|
|
t.Fatalf("invalid values %v", u.Query())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-19 04:12:31 +03:00
|
|
|
func TestValidPath(t *testing.T) {
|
|
|
|
req := &Request{Name: "vtolstov", Field1: "field1", Field2: "field2", Field3: 10}
|
2021-10-25 19:59:37 +03:00
|
|
|
p, m, err := newPathRequest("/api/v1/{name}/list", "GET", "", req, nil, nil)
|
2021-01-19 04:12:31 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-02-06 19:05:55 +03:00
|
|
|
u, err := url.Parse(p)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_ = m
|
|
|
|
parts := strings.Split(u.RawQuery, "&")
|
|
|
|
if len(parts) != 3 {
|
|
|
|
t.Fatalf("invalid path: %v", parts)
|
|
|
|
}
|
2021-01-19 04:12:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInvalidPath(t *testing.T) {
|
|
|
|
req := &Request{Name: "vtolstov", Field1: "field1", Field2: "field2", Field3: 10}
|
2021-10-25 19:59:37 +03:00
|
|
|
_, _, err := newPathRequest("/api/v1/{xname}/list", "GET", "", req, nil, nil)
|
2021-01-19 04:12:31 +03:00
|
|
|
if err == nil {
|
2021-10-25 19:59:37 +03:00
|
|
|
t.Fatal("path param must not be filled")
|
2021-01-19 04:12:31 +03:00
|
|
|
}
|
|
|
|
}
|