test

package
v0.1.29 Latest Latest
Warning

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

Go to latest
Published: Oct 23, 2024 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const SpecFile string = `` /* 514-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 {
	GetPetsPetIDHandler GetPetsPetIDHandlerFunc

	// 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 added in v0.1.28

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) GetPetsPetID

func (c *Client) GetPetsPetID(ctx context.Context, request GetPetsPetIDParams) (GetPetsPetIDResponse, error)

GetPetsPetID GET /pets/{pet_id}

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 GetPetsPetIDHandlerFunc

type GetPetsPetIDHandlerFunc func(ctx context.Context, r GetPetsPetIDRequest) GetPetsPetIDResponse

func (GetPetsPetIDHandlerFunc) ServeHTTP

type GetPetsPetIDParams added in v0.0.3

type GetPetsPetIDParams struct {
	Path GetPetsPetIDParamsPath
}

func (GetPetsPetIDParams) HTTP added in v0.0.3

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

func (GetPetsPetIDParams) Parse added in v0.0.3

type GetPetsPetIDParamsPath added in v0.1.18

type GetPetsPetIDParamsPath struct {
	PetID int32
}

type GetPetsPetIDRequest

type GetPetsPetIDRequest interface {
	HTTP() *http.Request
	Parse() (GetPetsPetIDParams, error)
}

func GetPetsPetIDHTTPRequest

func GetPetsPetIDHTTPRequest(r *http.Request) GetPetsPetIDRequest

type GetPetsPetIDResponse

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

func NewGetPetsPetIDResponse200JSON

func NewGetPetsPetIDResponse200JSON(body Pet) GetPetsPetIDResponse

type GetPetsPetIDResponse200JSON

type GetPetsPetIDResponse200JSON struct {
	Body Pet
}

func (GetPetsPetIDResponse200JSON) Write

type HTTPClient

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

type HTTPClientFunc added in v0.0.11

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

func (HTTPClientFunc) Do added in v0.0.11

type Maybe added in v0.1.5

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

func Just added in v0.1.5

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

func Nothing added in v0.1.27

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

func (Maybe[T]) Get added in v0.1.27

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

func (*Maybe[T]) Set added in v0.1.6

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

type Nullable added in v0.1.25

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

func Null added in v0.1.27

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

func Pointer added in v0.1.27

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

func (Nullable[T]) Get added in v0.1.27

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

func (Nullable[T]) MarshalJSON added in v0.1.28

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

func (*Nullable[T]) Set added in v0.1.25

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

func (*Nullable[T]) UnmarshalJSON added in v0.1.28

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

type Pet

type Pet struct {
	ID   int32  `json:"id"`
	Name string `json:"name"`
}

Jump to

Keyboard shortcuts

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