mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
// black-box testing
|
|
package host_test
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/kataras/iris/v12"
|
|
"github.com/kataras/iris/v12/context"
|
|
"github.com/kataras/iris/v12/core/host"
|
|
"github.com/kataras/iris/v12/httptest"
|
|
)
|
|
|
|
func TestProxy(t *testing.T) {
|
|
expectedIndex := "ok /"
|
|
expectedAbout := "ok /about"
|
|
unexpectedRoute := "unexpected"
|
|
|
|
// proxySrv := iris.New()
|
|
u, err := url.Parse("https://localhost:4444")
|
|
if err != nil {
|
|
t.Fatalf("%v while parsing url", err)
|
|
}
|
|
|
|
config := &tls.Config{
|
|
InsecureSkipVerify: true,
|
|
MinVersion: tls.VersionTLS13,
|
|
}
|
|
proxy := host.NewProxy("", u, config)
|
|
|
|
addr := &net.TCPAddr{
|
|
IP: net.IPv4(127, 0, 0, 1),
|
|
Port: 0,
|
|
}
|
|
|
|
listener, err := net.ListenTCP("tcp", addr)
|
|
if err != nil {
|
|
t.Fatalf("%v while creating listener", err)
|
|
}
|
|
|
|
go proxy.Serve(listener) // should be localhost/127.0.0.1:80 but travis throws permission denied.
|
|
|
|
t.Log(listener.Addr().String())
|
|
<-time.After(time.Second)
|
|
t.Log(listener.Addr().String())
|
|
|
|
app := iris.New()
|
|
app.Get("/", func(ctx *context.Context) {
|
|
ctx.WriteString(expectedIndex)
|
|
})
|
|
|
|
app.Get("/about", func(ctx *context.Context) {
|
|
ctx.WriteString(expectedAbout)
|
|
})
|
|
|
|
app.OnErrorCode(iris.StatusNotFound, func(ctx *context.Context) {
|
|
ctx.WriteString(unexpectedRoute)
|
|
})
|
|
|
|
l, err := net.Listen("tcp", "localhost:4444") // should be localhost/127.0.0.1:443 but travis throws permission denied.
|
|
if err != nil {
|
|
t.Fatalf("%v while creating tcp4 listener for new tls local test listener", err)
|
|
}
|
|
// main server
|
|
go app.Run(iris.Listener(httptest.NewLocalTLSListener(l)), iris.WithoutStartupLog) // nolint:errcheck
|
|
|
|
e := httptest.NewInsecure(t, httptest.URL("http://"+listener.Addr().String()))
|
|
e.GET("/").Expect().Status(iris.StatusOK).Body().Equal(expectedIndex)
|
|
e.GET("/about").Expect().Status(iris.StatusOK).Body().Equal(expectedAbout)
|
|
e.GET("/notfound").Expect().Status(iris.StatusNotFound).Body().Equal(unexpectedRoute)
|
|
}
|