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