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