2021-12-22 23:20:43 +01:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"heckel.io/ntfy/server"
|
|
|
|
"math/rand"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2021-12-25 10:35:08 +01:00
|
|
|
rand.Seed(time.Now().UnixMilli())
|
2021-12-22 23:20:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// StartServer starts a server.Server with a random port and waits for the server to be up
|
|
|
|
func StartServer(t *testing.T) (*server.Server, int) {
|
2021-12-24 15:01:29 +01:00
|
|
|
return StartServerWithConfig(t, server.NewConfig())
|
|
|
|
}
|
|
|
|
|
|
|
|
// StartServerWithConfig starts a server.Server with a random port and waits for the server to be up
|
|
|
|
func StartServerWithConfig(t *testing.T, conf *server.Config) (*server.Server, int) {
|
2021-12-22 23:20:43 +01:00
|
|
|
port := 10000 + rand.Intn(20000)
|
|
|
|
conf.ListenHTTP = fmt.Sprintf(":%d", port)
|
|
|
|
s, err := server.New(conf)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
if err := s.Run(); err != nil && err != http.ErrServerClosed {
|
|
|
|
panic(err) // 'go vet' complains about 't.Fatal(err)'
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
WaitForPortUp(t, port)
|
|
|
|
return s, port
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopServer stops the test server and waits for the port to be down
|
|
|
|
func StopServer(t *testing.T, s *server.Server, port int) {
|
|
|
|
s.Stop()
|
|
|
|
WaitForPortDown(t, port)
|
|
|
|
}
|