mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			793 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			793 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2018 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
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{
 | 
						|
		HookID: 1,
 | 
						|
	}, unittest.Cond("is_delivered=?", false))
 | 
						|
}
 |