Documentation ¶
Overview ¶
Package testing provides testing primitives for the codebase.
Index ¶
- type FakeFrontend
- func (s *FakeFrontend) CreateTicket(ctx context.Context, req *pb.CreateTicketRequest) (*pb.Ticket, error)
- func (s *FakeFrontend) DeleteTicket(ctx context.Context, req *pb.DeleteTicketRequest) (*empty.Empty, error)
- func (s *FakeFrontend) GetTicket(ctx context.Context, req *pb.GetTicketRequest) (*pb.Ticket, error)
- func (s *FakeFrontend) WatchAssignments(req *pb.WatchAssignmentsRequest, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
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.Ticket, 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) (*empty.Empty, 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) GetTicket ¶
func (s *FakeFrontend) GetTicket(ctx context.Context, req *pb.GetTicketRequest) (*pb.Ticket, error)
GetTicket fetches the ticket associated with the specified Ticket id.
func (*FakeFrontend) WatchAssignments ¶ added in v0.10.0
func (s *FakeFrontend) WatchAssignments(req *pb.WatchAssignmentsRequest, stream pb.FrontendService_WatchAssignmentsServer) error
WatchAssignments streams matchmaking results from Open Match for the provided Ticket id.