Files
vpp/extras/hs-test/tools/http_server/http_server.go
adrianvillin 28bd8f07d3 hs-test: experimental support for multiple test instances
- appending PID to interface and container names
- added a check for used IP addresses
- TestEnvoyProxyHttpTcp and TestTcpWithLoss are broken when running multiple instances

Type: test

Change-Id: Ib917079ec7cf851dee59ff9c67e74f48c7c5e3c6
Signed-off-by: adrianvillin <avillin@cisco.com>
2024-03-12 16:48:46 +00:00

27 lines
422 B
Go

package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
if len(os.Args) < 3 {
fmt.Println("arg expected")
os.Exit(1)
}
http.HandleFunc("/httpTestFile", func(w http.ResponseWriter, r *http.Request) {
file, _ := os.Open("httpTestFile" + os.Args[2])
defer file.Close()
io.Copy(w, file)
})
err := http.ListenAndServe(os.Args[1], nil)
if err != nil {
fmt.Printf("%v\n", err)
os.Exit(1)
}
}