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