ntfy/test/server.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.1 KiB
Go
Raw Permalink Normal View History

2021-12-22 23:20:43 +01:00
package test
import (
"fmt"
2023-11-17 02:54:58 +01:00
"heckel.io/ntfy/v2/server"
2021-12-22 23:20:43 +01:00
"math/rand"
"net/http"
2022-01-16 04:33:35 +01:00
"path/filepath"
2021-12-22 23:20:43 +01:00
"testing"
)
// 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) {
2024-03-21 02:33:54 +01:00
port := 10000 + rand.Intn(30000)
2021-12-22 23:20:43 +01:00
conf.ListenHTTP = fmt.Sprintf(":%d", port)
2022-01-16 04:33:35 +01:00
conf.AttachmentCacheDir = t.TempDir()
conf.CacheFile = filepath.Join(t.TempDir(), "cache.db")
2021-12-22 23:20:43 +01:00
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)
}