Documentation ¶
Overview ¶
Package testing provides testing primitives for the codebase.
Package testing provides testing primitives for the codebase.
Index ¶
- func GenerateTickets(manifest1, manifest2 Property) []*pb.Ticket
- func NewPbFilter(attributeName string, min, max float64) *pb.Filter
- func NewPbPool(poolName string, filters ...*pb.Filter) *pb.Pool
- type FakeFrontend
- func (s *FakeFrontend) CreateTicket(ctx context.Context, req *pb.CreateTicketRequest) (*pb.CreateTicketResponse, error)
- func (s *FakeFrontend) DeleteTicket(ctx context.Context, req *pb.DeleteTicketRequest) (*pb.DeleteTicketResponse, error)
- func (s *FakeFrontend) GetAssignments(req *pb.GetAssignmentsRequest, stream pb.Frontend_GetAssignmentsServer) error
- func (s *FakeFrontend) GetTicket(ctx context.Context, req *pb.GetTicketRequest) (*pb.Ticket, error)
- type Property
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateTickets ¶
GenerateTickets takes in two property manifests to generate tickets with two fake properties for testing.
func NewPbFilter ¶
NewPbFilter is a wrapper to create protobuf filter objects
Types ¶
type FakeFrontend ¶
type FakeFrontend struct { }
FakeFrontend is an empty gRPC handler.
func (*FakeFrontend) CreateTicket ¶
func (s *FakeFrontend) CreateTicket(ctx context.Context, req *pb.CreateTicketRequest) (*pb.CreateTicketResponse, error)
CreateTicket will create a new ticket, assign a Ticket id to it and put the Ticket in state storage. It will then look through the 'properties' field for the attributes defined as indices the matchmakaking config. If the attributes exist and are valid integers, they will be indexed. Creating a ticket adds the Ticket to the pool of Tickets considered for matchmaking.
func (*FakeFrontend) DeleteTicket ¶
func (s *FakeFrontend) DeleteTicket(ctx context.Context, req *pb.DeleteTicketRequest) (*pb.DeleteTicketResponse, error)
DeleteTicket removes the Ticket from state storage and from corresponding configured indices. Deleting the ticket stops the ticket from being considered for future matchmaking requests.
func (*FakeFrontend) GetAssignments ¶
func (s *FakeFrontend) GetAssignments(req *pb.GetAssignmentsRequest, stream pb.Frontend_GetAssignmentsServer) error
GetAssignments streams matchmaking results from Open Match for the provided Ticket id.
func (*FakeFrontend) GetTicket ¶
func (s *FakeFrontend) GetTicket(ctx context.Context, req *pb.GetTicketRequest) (*pb.Ticket, error)
GetTicket fetches the ticket associated with the specified Ticket id.