2019-11-02 06:51:22 +08:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-02 06:51:22 +08:00
|
|
|
|
|
|
|
package webhook
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 22:36:47 +08:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-11-04 02:23:20 +08:00
|
|
|
"code.gitea.io/gitea/modules/hostmatcher"
|
2022-04-26 02:03:01 +08:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-12-15 13:39:34 +08:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
2023-09-08 12:51:15 +08:00
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
2019-11-02 06:51:22 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-11-04 02:23:20 +08:00
|
|
|
// for tests, allow only loopback IPs
|
|
|
|
setting.Webhook.AllowedHostList = hostmatcher.MatchBuiltinLoopback
|
2022-04-14 21:58:21 +08:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
2023-05-04 11:55:35 +08:00
|
|
|
SetUp: func() error {
|
|
|
|
setting.LoadQueueSettings()
|
|
|
|
return Init()
|
|
|
|
},
|
2022-04-14 21:58:21 +08:00
|
|
|
})
|
2019-11-02 06:51:22 +08:00
|
|
|
}
|