2019-11-08 21:25:53 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-08 21:25:53 +00:00
|
|
|
|
|
|
|
package webhook
|
|
|
|
|
|
|
|
import (
|
2022-11-03 18:23:20 +00:00
|
|
|
"context"
|
2019-11-08 21:25:53 +00:00
|
|
|
"net/http"
|
2022-11-03 18:23:20 +00:00
|
|
|
"net/http/httptest"
|
2019-11-08 21:25:53 +00:00
|
|
|
"net/url"
|
|
|
|
"testing"
|
2022-11-03 18:23:20 +00:00
|
|
|
"time"
|
2019-11-08 21:25:53 +00:00
|
|
|
|
2022-11-03 18:23:20 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
webhook_model "code.gitea.io/gitea/models/webhook"
|
2019-11-08 21:25:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-11-23 14:10:04 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2023-01-01 15:23:15 +00:00
|
|
|
webhook_module "code.gitea.io/gitea/modules/webhook"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2019-11-08 21:25:53 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestWebhookProxy(t *testing.T) {
|
|
|
|
setting.Webhook.ProxyURL = "http://localhost:8080"
|
|
|
|
setting.Webhook.ProxyURLFixed, _ = url.Parse(setting.Webhook.ProxyURL)
|
|
|
|
setting.Webhook.ProxyHosts = []string{"*.discordapp.com", "discordapp.com"}
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
kases := map[string]string{
|
2019-11-08 21:25:53 +00:00
|
|
|
"https://discordapp.com/api/webhooks/xxxxxxxxx/xxxxxxxxxxxxxxxxxxx": "http://localhost:8080",
|
|
|
|
"http://s.discordapp.com/assets/xxxxxx": "http://localhost:8080",
|
|
|
|
"http://github.com/a/b": "",
|
|
|
|
}
|
|
|
|
|
|
|
|
for reqURL, proxyURL := range kases {
|
|
|
|
req, err := http.NewRequest("POST", reqURL, nil)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
u, err := webhookProxy()(req)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
if proxyURL == "" {
|
|
|
|
assert.Nil(t, u)
|
|
|
|
} else {
|
|
|
|
assert.EqualValues(t, proxyURL, u.String())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-03 18:23:20 +00:00
|
|
|
|
|
|
|
func TestWebhookDeliverAuthorizationHeader(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
|
|
|
|
done := make(chan struct{}, 1)
|
|
|
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
assert.Equal(t, "/webhook", r.URL.Path)
|
|
|
|
assert.Equal(t, "Bearer s3cr3t-t0ken", r.Header.Get("Authorization"))
|
|
|
|
w.WriteHeader(200)
|
|
|
|
done <- struct{}{}
|
|
|
|
}))
|
|
|
|
t.Cleanup(s.Close)
|
|
|
|
|
|
|
|
hook := &webhook_model.Webhook{
|
|
|
|
RepoID: 3,
|
|
|
|
URL: s.URL + "/webhook",
|
|
|
|
ContentType: webhook_model.ContentTypeJSON,
|
|
|
|
IsActive: true,
|
2023-01-01 15:23:15 +00:00
|
|
|
Type: webhook_module.GITEA,
|
2022-11-03 18:23:20 +00:00
|
|
|
}
|
|
|
|
err := hook.SetHeaderAuthorization("Bearer s3cr3t-t0ken")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NoError(t, webhook_model.CreateWebhook(db.DefaultContext, hook))
|
2022-11-23 14:10:04 +00:00
|
|
|
db.GetEngine(db.DefaultContext).NoAutoTime().DB().Logger.ShowSQL(true)
|
2022-11-03 18:23:20 +00:00
|
|
|
|
2023-01-01 15:23:15 +00:00
|
|
|
hookTask := &webhook_model.HookTask{HookID: hook.ID, EventType: webhook_module.HookEventPush, Payloader: &api.PushPayload{}}
|
2022-11-23 14:10:04 +00:00
|
|
|
|
|
|
|
hookTask, err = webhook_model.CreateHookTask(db.DefaultContext, hookTask)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
if !assert.NotNil(t, hookTask) {
|
|
|
|
return
|
|
|
|
}
|
2022-11-03 18:23:20 +00:00
|
|
|
|
|
|
|
assert.NoError(t, Deliver(context.Background(), hookTask))
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
t.Fatal("waited to long for request to happen")
|
|
|
|
}
|
|
|
|
|
|
|
|
assert.True(t, hookTask.IsSucceed)
|
|
|
|
}
|