Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
878 B
34 lines
878 B
// Copyright 2018 The Gitea Authors. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package repo |
|
|
|
import ( |
|
"net/http" |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/unittest" |
|
"code.gitea.io/gitea/models/webhook" |
|
"code.gitea.io/gitea/modules/context" |
|
"code.gitea.io/gitea/modules/test" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestTestHook(t *testing.T) { |
|
unittest.PrepareTestEnv(t) |
|
|
|
ctx := test.MockContext(t, "user2/repo1/wiki/_pages") |
|
ctx.SetParams(":id", "1") |
|
test.LoadRepo(t, ctx, 1) |
|
test.LoadRepoCommit(t, ctx) |
|
test.LoadUser(t, ctx, 2) |
|
TestHook(&context.APIContext{Context: ctx, Org: nil}) |
|
assert.EqualValues(t, http.StatusNoContent, ctx.Resp.Status()) |
|
|
|
unittest.AssertExistsAndLoadBean(t, &webhook.HookTask{ |
|
RepoID: 1, |
|
HookID: 1, |
|
}, unittest.Cond("is_delivered=?", false)) |
|
}
|
|
|