103 lines
2.5 KiB
Go
103 lines
2.5 KiB
Go
/*
|
|
Copyright 2024 API Testing Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
package server
|
|
|
|
import (
|
|
context "context"
|
|
"net"
|
|
|
|
"github.com/linuxsuren/api-testing/pkg/logging"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials/insecure"
|
|
"google.golang.org/grpc/test/bufconn"
|
|
)
|
|
|
|
type fakeServer struct {
|
|
UnimplementedRunnerServer
|
|
version string
|
|
err error
|
|
}
|
|
|
|
var (
|
|
fakeLogger = logging.DefaultLogger(logging.LogLevelInfo).WithName("fake_server")
|
|
)
|
|
|
|
// NewServer creates a fake server
|
|
func NewServer(version string, err error) RunnerServer {
|
|
t := &fakeServer{
|
|
version: version,
|
|
err: err,
|
|
}
|
|
return t
|
|
}
|
|
|
|
// Run runs the task
|
|
func (s *fakeServer) Run(ctx context.Context, in *TestTask) (*TestResult, error) {
|
|
return &TestResult{}, s.err
|
|
}
|
|
|
|
// GetVersion returns the version
|
|
func (s *fakeServer) GetVersion(ctx context.Context, in *Empty) (reply *Version, err error) {
|
|
reply = &Version{
|
|
Version: s.version,
|
|
}
|
|
err = s.err
|
|
return
|
|
}
|
|
|
|
// Sample returns a sample of the test task
|
|
func (s *fakeServer) Sample(ctx context.Context, in *Empty) (reply *HelloReply, err error) {
|
|
reply = &HelloReply{
|
|
Message: "",
|
|
}
|
|
err = s.err
|
|
return
|
|
}
|
|
|
|
// NewFakeClient creates a fake client
|
|
func NewFakeClient(ctx context.Context, version string, err error) (RunnerClient, func()) {
|
|
buffer := 101024 * 1024
|
|
lis := bufconn.Listen(buffer)
|
|
|
|
baseServer := grpc.NewServer()
|
|
RegisterRunnerServer(baseServer, NewServer(version, err))
|
|
go func() {
|
|
if err := baseServer.Serve(lis); err != nil {
|
|
fakeLogger.Info("error serving server", "error", err)
|
|
}
|
|
}()
|
|
|
|
conn, err := grpc.DialContext(ctx, "",
|
|
grpc.WithContextDialer(func(context.Context, string) (net.Conn, error) {
|
|
return lis.Dial()
|
|
}), grpc.WithTransportCredentials(insecure.NewCredentials()))
|
|
if err != nil {
|
|
fakeLogger.Info("error connecting to server", "error", err)
|
|
}
|
|
|
|
closer := func() {
|
|
err := lis.Close()
|
|
if err != nil {
|
|
fakeLogger.Info("error closing listener", "error", err)
|
|
}
|
|
baseServer.Stop()
|
|
}
|
|
|
|
client := NewRunnerClient(conn)
|
|
return client, closer
|
|
}
|