2021-06-21 04:12:19 +02:00
// Copyright 2021 The Gitea Authors. All rights reserved.
2022-11-27 19:20:29 +01:00
// SPDX-License-Identifier: MIT
2021-06-21 04:12:19 +02:00
package webhook
import (
2024-03-07 23:18:38 +01:00
"context"
2021-06-21 04:12:19 +02:00
"testing"
2024-03-07 23:18:38 +01:00
webhook_model "code.gitea.io/gitea/models/webhook"
"code.gitea.io/gitea/modules/json"
2021-06-21 04:12:19 +02:00
api "code.gitea.io/gitea/modules/structs"
2023-01-01 16:23:15 +01:00
webhook_module "code.gitea.io/gitea/modules/webhook"
2021-06-21 04:12:19 +02:00
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestFeishuPayload ( t * testing . T ) {
2024-03-07 23:18:38 +01:00
fc := feishuConvertor { }
2021-06-21 04:12:19 +02:00
t . Run ( "Create" , func ( t * testing . T ) {
p := createTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Create ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , ` [test/repo] branch test created ` , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Delete" , func ( t * testing . T ) {
p := deleteTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Delete ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , ` [test/repo] branch test deleted ` , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Fork" , func ( t * testing . T ) {
p := forkTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Fork ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , ` test/repo2 is forked to test/repo ` , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Push" , func ( t * testing . T ) {
p := pushTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Push ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo:test] \r\n[2020558](http://localhost:3000/test/repo/commit/2020558fe2e34debb818a514715839cabd25e778) commit message - user1\r\n[2020558](http://localhost:3000/test/repo/commit/2020558fe2e34debb818a514715839cabd25e778) commit message - user1" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Issue" , func ( t * testing . T ) {
p := issueTestPayload ( )
p . Action = api . HookIssueOpened
2024-03-07 23:18:38 +01:00
pl , err := fc . Issue ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[Issue-test/repo #2]: opened\ncrash\nhttp://localhost:3000/test/repo/issues/2\nIssue by user1\nOperator: user1\nAssignees: user1\n\nissue body" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
p . Action = api . HookIssueClosed
2024-03-07 23:18:38 +01:00
pl , err = fc . Issue ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[Issue-test/repo #2]: closed\ncrash\nhttp://localhost:3000/test/repo/issues/2\nIssue by user1\nOperator: user1\nAssignees: user1\n\nissue body" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "IssueComment" , func ( t * testing . T ) {
p := issueCommentTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . IssueComment ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[Comment-test/repo #2]: created\ncrash\nhttp://localhost:3000/test/repo/issues/2\nIssue by user1\nOperator: user1\n\nmore info needed" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "PullRequest" , func ( t * testing . T ) {
p := pullRequestTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . PullRequest ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[PullRequest-test/repo #12]: opened\nFix bug\nhttp://localhost:3000/test/repo/pulls/12\nPullRequest by user1\nOperator: user1\nAssignees: user1\n\nfixes bug #2" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "PullRequestComment" , func ( t * testing . T ) {
p := pullRequestCommentTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . IssueComment ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[Comment-test/repo #12]: created\nFix bug\nhttp://localhost:3000/test/repo/pulls/12\nPullRequest by user1\nOperator: user1\n\nchanges requested" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Review" , func ( t * testing . T ) {
p := pullRequestTestPayload ( )
p . Action = api . HookIssueReviewed
2024-03-07 23:18:38 +01:00
pl , err := fc . Review ( p , webhook_module . HookEventPullRequestReviewApproved )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] Pull request review approved : #12 Fix bug\r\n\r\ngood job" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
t . Run ( "Repository" , func ( t * testing . T ) {
p := repositoryTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Repository ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] Repository created" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
2023-11-17 12:17:33 +01:00
t . Run ( "Package" , func ( t * testing . T ) {
p := packageTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Package ( p )
2023-11-17 12:17:33 +01:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "Package created: GiteaContainer:latest by user1" , pl . Content . Text )
2023-11-17 12:17:33 +01:00
} )
2022-09-04 21:54:23 +02:00
t . Run ( "Wiki" , func ( t * testing . T ) {
p := wikiTestPayload ( )
p . Action = api . HookWikiCreated
2024-03-07 23:18:38 +01:00
pl , err := fc . Wiki ( p )
2022-09-04 21:54:23 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] New wiki page 'index' (Wiki change comment) by user1" , pl . Content . Text )
2022-09-04 21:54:23 +02:00
p . Action = api . HookWikiEdited
2024-03-07 23:18:38 +01:00
pl , err = fc . Wiki ( p )
2022-09-04 21:54:23 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] Wiki page 'index' edited (Wiki change comment) by user1" , pl . Content . Text )
2022-09-04 21:54:23 +02:00
p . Action = api . HookWikiDeleted
2024-03-07 23:18:38 +01:00
pl , err = fc . Wiki ( p )
2022-09-04 21:54:23 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] Wiki page 'index' deleted by user1" , pl . Content . Text )
2022-09-04 21:54:23 +02:00
} )
2021-06-21 04:12:19 +02:00
t . Run ( "Release" , func ( t * testing . T ) {
p := pullReleaseTestPayload ( )
2024-03-07 23:18:38 +01:00
pl , err := fc . Release ( p )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo] Release created: v1.0 by user1" , pl . Content . Text )
2021-06-21 04:12:19 +02:00
} )
}
func TestFeishuJSONPayload ( t * testing . T ) {
p := pushTestPayload ( )
2024-03-07 23:18:38 +01:00
data , err := p . JSONPayload ( )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
hook := & webhook_model . Webhook {
RepoID : 3 ,
IsActive : true ,
Type : webhook_module . FEISHU ,
URL : "https://feishu.example.com/" ,
Meta : ` { } ` ,
HTTPMethod : "POST" ,
}
task := & webhook_model . HookTask {
HookID : hook . ID ,
EventType : webhook_module . HookEventPush ,
PayloadContent : string ( data ) ,
PayloadVersion : 2 ,
}
2024-03-20 15:44:01 +01:00
req , reqBody , err := feishuHandler { } . NewRequest ( context . Background ( ) , hook , task )
2024-03-07 23:18:38 +01:00
require . NotNil ( t , req )
require . NotNil ( t , reqBody )
2021-06-21 04:12:19 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "POST" , req . Method )
assert . Equal ( t , "https://feishu.example.com/" , req . URL . String ( ) )
assert . Equal ( t , "sha256=" , req . Header . Get ( "X-Hub-Signature-256" ) )
assert . Equal ( t , "application/json" , req . Header . Get ( "Content-Type" ) )
var body FeishuPayload
err = json . NewDecoder ( req . Body ) . Decode ( & body )
2024-07-30 21:41:10 +02:00
require . NoError ( t , err )
2024-03-07 23:18:38 +01:00
assert . Equal ( t , "[test/repo:test] \r\n[2020558](http://localhost:3000/test/repo/commit/2020558fe2e34debb818a514715839cabd25e778) commit message - user1\r\n[2020558](http://localhost:3000/test/repo/commit/2020558fe2e34debb818a514715839cabd25e778) commit message - user1" , body . Content . Text )
2021-06-21 04:12:19 +02:00
}