diff options
author | Ethan Koenig <ethantkoenig@gmail.com> | 2018-04-28 23:21:33 -0700 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2018-04-29 14:21:33 +0800 |
commit | 7ea4bfc56172faf588142ee5637f35c0344f7534 (patch) | |
tree | f4d47e2d4209b90d340dead5e3abb7b4a02cb475 /routers/api/v1/repo/hook_test.go | |
parent | 5a62eb30df3a04e76e465824f525b4ffd920b562 (diff) | |
download | gitea-7ea4bfc56172faf588142ee5637f35c0344f7534.tar.gz gitea-7ea4bfc56172faf588142ee5637f35c0344f7534.zip |
API endpoint for testing webhook (#3550)
* API endpoint for testing webhook
* Empty commit to rerun CI
Diffstat (limited to 'routers/api/v1/repo/hook_test.go')
-rw-r--r-- | routers/api/v1/repo/hook_test.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/routers/api/v1/repo/hook_test.go b/routers/api/v1/repo/hook_test.go new file mode 100644 index 0000000000..8ed4bc4b0c --- /dev/null +++ b/routers/api/v1/repo/hook_test.go @@ -0,0 +1,33 @@ +// 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" + "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/test" + + "github.com/stretchr/testify/assert" +) + +func TestTestHook(t *testing.T) { + models.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()) + + models.AssertExistsAndLoadBean(t, &models.HookTask{ + RepoID: 1, + HookID: 1, + }, models.Cond("is_delivered=?", false)) +} |