test

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 16, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const SpecFile string = `` /* 1005-byte string literal not displayed */

Variables

View Source
var LogError = func(err error) {
	log.Println(fmt.Sprintf("Error: %v", err))
}

Functions

func SchemaPath

func SchemaPath(r *http.Request) (string, bool)

func SpecFileHandler

func SpecFileHandler() http.Handler

Types

type API

type API struct {
	PostPetsHandler PostPetsHandlerFunc

	// not found
	NotFoundHandler http.Handler
	// spec file
	SpecFileHandler http.Handler

	Middlewares []func(h http.Handler) http.Handler
}

func (*API) ServeHTTP

func (rt *API) ServeHTTP(rw http.ResponseWriter, r *http.Request)

func (API) TestClient

func (a API) TestClient() *Client

type Client

type Client struct {
	BaseURL    string
	HTTPClient HTTPClient
}

func NewClient

func NewClient(baseURL string, httpClient HTTPClient) *Client

func (*Client) PostPets

func (c *Client) PostPets(ctx context.Context, request PostPetsParams) (PostPetsResponse, error)

PostPets POST /pets

type ErrParseParam

type ErrParseParam struct {
	In        string
	Parameter string
	Reason    string
	Err       error
}

func (ErrParseParam) Error

func (e ErrParseParam) Error() string

func (ErrParseParam) Unwrap

func (e ErrParseParam) Unwrap() error

type HTTPClient

type HTTPClient interface {
	Do(*http.Request) (*http.Response, error)
}

type HTTPClientFunc

type HTTPClientFunc func(*http.Request) (*http.Response, error)

func (HTTPClientFunc) Do

type Maybe

type Maybe[T any] struct {
	IsSet bool
	Value T
}

func Just

func Just[T any](v T) Maybe[T]

func Nothing

func Nothing[T any]() Maybe[T]

func (Maybe[T]) Get

func (m Maybe[T]) Get() (zero T, _ bool)

func (*Maybe[T]) Set

func (m *Maybe[T]) Set(v T)

type NewPet

type NewPet struct {
	Name string                  `json:"name"`
	Tag  Nullable[string]        `json:"tag"`
	Tago Maybe[Nullable[string]] `json:"tago"`
}

type Nullable

type Nullable[T any] struct {
	IsSet bool
	Value T
}

func Null

func Null[T any]() Nullable[T]

func Pointer

func Pointer[T any](v T) Nullable[T]

func (Nullable[T]) Get

func (m Nullable[T]) Get() (zero T, _ bool)

func (Nullable[T]) MarshalJSON

func (m Nullable[T]) MarshalJSON() ([]byte, error)

func (*Nullable[T]) Set

func (m *Nullable[T]) Set(v T)

func (*Nullable[T]) UnmarshalJSON

func (m *Nullable[T]) UnmarshalJSON(bs []byte) error

type Pet

type Pet struct {
	ID   int64                   `json:"id"`
	Name string                  `json:"name"`
	Tag  Nullable[string]        `json:"tag"`
	Tago Maybe[Nullable[string]] `json:"tago"`
}

type PetResponse

type PetResponse struct {
	Body Pet
}

PetResponse - Pet output response

func NewPetResponse

func NewPetResponse(body Pet) PetResponse

func (PetResponse) Write

func (r PetResponse) Write(w http.ResponseWriter, code int)

type PostPetsHandlerFunc

type PostPetsHandlerFunc func(ctx context.Context, r PostPetsRequest) PostPetsResponse

func (PostPetsHandlerFunc) ServeHTTP

func (f PostPetsHandlerFunc) ServeHTTP(w http.ResponseWriter, r *http.Request)

type PostPetsParams

type PostPetsParams struct {
	Body NewPet
}

func (PostPetsParams) HTTP

func (r PostPetsParams) HTTP() *http.Request

func (PostPetsParams) Parse

func (r PostPetsParams) Parse() (PostPetsParams, error)

type PostPetsRequest

type PostPetsRequest interface {
	HTTP() *http.Request
	Parse() (PostPetsParams, error)
}

func PostPetsHTTPRequest

func PostPetsHTTPRequest(r *http.Request) PostPetsRequest

type PostPetsResponse

type PostPetsResponse interface {
	// contains filtered or unexported methods
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL