components-contrib/tests/conformance/utils/utils.go

131 lines
2.7 KiB
Go

/*
Copyright 2021 The Dapr 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 utils
import (
"fmt"
"io"
"net"
"net/http"
"net/http/httptest"
"os"
"os/signal"
"github.com/gorilla/mux"
"github.com/dapr/kit/logger"
)
type CommonConfig struct {
ComponentType string
ComponentName string
Operations map[string]struct{}
}
type server struct {
Data []byte
}
//nolint:gochecknoglobals
var (
s server
testLogger = logger.NewLogger("utils")
)
func (cc CommonConfig) HasOperation(operation string) bool {
_, exists := cc.Operations[operation]
return exists
}
func (cc CommonConfig) CopyMap(config map[string]string) map[string]string {
m := map[string]string{}
for k, v := range config {
m[k] = v
}
return m
}
func StartHTTPServer(port int, ready chan bool) {
l, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
if err != nil {
testLogger.Errorf("Error starting test HTTP serer: %v", err)
return
}
testLogger.Info(("Starting HTTP Server"))
ts := httptest.NewUnstartedServer(appRouter())
// NewUnstartedServer creates a listener. Close that listener and replace
// with the one we created.
ts.Listener.Close()
ts.Listener = l
// Start the server.
ts.Start()
defer ts.Close()
ready <- true
testLogger.Info(("Registering Signal"))
stop := make(chan os.Signal, 1)
signal.Notify(stop, os.Interrupt)
testLogger.Info(("Waiting to stop Server"))
<-stop
testLogger.Info(("Stopping Server"))
}
func appRouter() *mux.Router {
router := mux.NewRouter().StrictSlash(true)
router.HandleFunc("/call", handleCall).Methods("POST")
router.Use(mux.CORSMethodMiddleware(router))
return router
}
func handleCall(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case http.MethodPost:
s.handlePost(r)
case http.MethodGet:
w.Write(s.handleGet())
default:
w.WriteHeader(http.StatusInternalServerError)
}
}
func (s *server) handleGet() []byte {
return s.Data
}
func (s *server) handlePost(r *http.Request) {
data, err := io.ReadAll(r.Body)
defer r.Body.Close()
if err == nil {
s.Data = data
}
}
func NewStringSet(values ...string) map[string]struct{} {
set := make(map[string]struct{}, len(values))
for _, value := range values {
set[value] = struct{}{}
}
return set
}