focalboard/server/integrationtests/clienttestlib.go

81 lines
1.6 KiB
Go
Raw Normal View History

package integrationtests
import (
2021-01-06 21:55:14 +01:00
"log"
"net/http"
2021-01-06 21:55:14 +01:00
"time"
2021-01-26 23:13:46 +01:00
"github.com/mattermost/focalboard/server/client"
"github.com/mattermost/focalboard/server/server"
"github.com/mattermost/focalboard/server/services/config"
)
type TestHelper struct {
Server *server.Server
Client *client.Client
}
func getTestConfig() *config.Configuration {
return &config.Configuration{
ServerRoot: "http://localhost:8888",
Port: 8888,
DBType: "sqlite3",
DBConfigString: ":memory:",
WebPath: "./pack",
FilesPath: "./files",
}
}
func SetupTestHelper() *TestHelper {
2021-02-10 01:07:41 +01:00
sessionToken := "TESTTOKEN"
th := &TestHelper{}
2021-02-10 01:07:41 +01:00
srv, err := server.New(getTestConfig(), sessionToken)
if err != nil {
panic(err)
}
th.Server = srv
2021-02-10 01:07:41 +01:00
th.Client = client.NewClient(srv.Config().ServerRoot, sessionToken)
return th
}
func (th *TestHelper) InitBasic() *TestHelper {
go func() {
2021-01-18 21:59:32 +01:00
if err := th.Server.Start(); err != nil {
panic(err)
}
}()
2021-01-06 21:55:14 +01:00
for {
URL := th.Server.Config().ServerRoot
log.Printf("Polling server at %v", URL)
resp, err := http.Get(URL)
if err != nil {
log.Println("Polling failed:", err)
time.Sleep(100 * time.Millisecond)
continue
}
resp.Body.Close()
// Currently returns 404
// if resp.StatusCode != http.StatusOK {
// log.Println("Not OK:", resp.StatusCode)
// continue
// }
// Reached this point: server is up and running!
log.Println("Server ping OK, statusCode:", resp.StatusCode)
break
}
return th
}
func (th *TestHelper) TearDown() {
err := th.Server.Shutdown()
if err != nil {
panic(err)
}
}