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