2021-12-05 13:45:17 +00:00
|
|
|
package server
|
2021-07-08 21:08:58 +00:00
|
|
|
|
|
|
|
import (
|
2022-08-28 14:53:30 +00:00
|
|
|
"net/http/httptest"
|
2021-07-08 21:08:58 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
2021-12-05 14:02:44 +00:00
|
|
|
|
|
|
|
"codeberg.org/codeberg/pages/server/cache"
|
2022-06-11 21:02:06 +00:00
|
|
|
"codeberg.org/codeberg/pages/server/gitea"
|
2022-08-28 14:53:30 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-07-08 21:08:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHandlerPerformance(t *testing.T) {
|
2022-11-12 01:54:56 +00:00
|
|
|
giteaClient, _ := gitea.NewClient("https://codeberg.org", "", cache.NewKeyValueCache(), false, false)
|
2021-12-05 13:45:17 +00:00
|
|
|
testHandler := Handler(
|
2022-08-28 14:53:30 +00:00
|
|
|
"codeberg.page", "raw.codeberg.org",
|
2022-06-11 21:02:06 +00:00
|
|
|
giteaClient,
|
2022-11-12 01:54:56 +00:00
|
|
|
"https://docs.codeberg.org/pages/raw-content/",
|
2022-08-28 14:53:30 +00:00
|
|
|
[]string{"/.well-known/acme-challenge/"},
|
|
|
|
[]string{"raw.codeberg.org", "fonts.codeberg.org", "design.codeberg.org"},
|
2021-12-05 14:02:44 +00:00
|
|
|
cache.NewKeyValueCache(),
|
|
|
|
cache.NewKeyValueCache(),
|
2021-12-05 13:45:17 +00:00
|
|
|
)
|
|
|
|
|
2022-03-30 19:31:09 +00:00
|
|
|
testCase := func(uri string, status int) {
|
2022-08-28 14:53:30 +00:00
|
|
|
req := httptest.NewRequest("GET", uri, nil)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
|
|
|
|
log.Printf("Start: %v\n", time.Now())
|
2022-03-30 19:31:09 +00:00
|
|
|
start := time.Now()
|
2022-08-28 14:53:30 +00:00
|
|
|
testHandler(w, req)
|
2022-03-30 19:31:09 +00:00
|
|
|
end := time.Now()
|
2022-08-28 14:53:30 +00:00
|
|
|
log.Printf("Done: %v\n", time.Now())
|
|
|
|
|
|
|
|
resp := w.Result()
|
|
|
|
|
|
|
|
if resp.StatusCode != status {
|
|
|
|
t.Errorf("request failed with status code %d", resp.StatusCode)
|
2022-03-30 19:31:09 +00:00
|
|
|
} else {
|
|
|
|
t.Logf("request took %d milliseconds", end.Sub(start).Milliseconds())
|
|
|
|
}
|
2021-07-08 21:08:58 +00:00
|
|
|
}
|
2021-07-13 08:28:06 +00:00
|
|
|
|
2022-03-30 19:31:09 +00:00
|
|
|
testCase("https://mondstern.codeberg.page/", 424) // TODO: expect 200
|
|
|
|
testCase("https://mondstern.codeberg.page/", 424) // TODO: expect 200
|
|
|
|
testCase("https://example.momar.xyz/", 424) // TODO: expect 200
|
|
|
|
testCase("https://codeberg.page/", 424) // TODO: expect 200
|
2021-07-08 21:08:58 +00:00
|
|
|
}
|