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