2018-04-29 00:21:33 -06:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-29 00:21:33 -06:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-09 22:13:16 -07:00
|
|
|
"code.gitea.io/gitea/models/webhook"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/contexttest"
|
2018-04-29 00:21:33 -06:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTestHook(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
unittest.PrepareTestEnv(t)
|
2018-04-29 00:21:33 -06:00
|
|
|
|
2023-09-01 05:26:07 -06:00
|
|
|
ctx, _ := contexttest.MockAPIContext(t, "user2/repo1/wiki/_pages")
|
2024-06-18 16:32:45 -06:00
|
|
|
ctx.SetPathParam(":id", "1")
|
2023-09-01 05:26:07 -06:00
|
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
|
|
contexttest.LoadRepoCommit(t, ctx)
|
|
|
|
contexttest.LoadUser(t, ctx, 2)
|
2023-05-20 19:50:53 -06:00
|
|
|
TestHook(ctx)
|
2018-04-29 00:21:33 -06:00
|
|
|
assert.EqualValues(t, http.StatusNoContent, ctx.Resp.Status())
|
|
|
|
|
2021-11-16 01:53:21 -07:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &webhook.HookTask{
|
2018-04-29 00:21:33 -06:00
|
|
|
HookID: 1,
|
2021-11-16 01:53:21 -07:00
|
|
|
}, unittest.Cond("is_delivered=?", false))
|
2018-04-29 00:21:33 -06:00
|
|
|
}
|