57 lines
1.0 KiB
Go
57 lines
1.0 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"src.opensuse.org/autogits/common"
|
||
|
)
|
||
|
|
||
|
func TestPRReviewed(t *testing.T) {
|
||
|
testData := []struct {
|
||
|
title string
|
||
|
error error
|
||
|
}{
|
||
|
{
|
||
|
title: "forward project review",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
event := &common.PullRequestWebhookEvent{
|
||
|
Action: "reviewed",
|
||
|
Number: 1,
|
||
|
Pull_Request: &common.PullRequest{
|
||
|
Id: 1,
|
||
|
Base: common.Head{
|
||
|
Ref: "branch",
|
||
|
Sha: "testing",
|
||
|
Repo: &common.Repository{
|
||
|
Name: "testRepo",
|
||
|
Default_Branch: "main1",
|
||
|
},
|
||
|
},
|
||
|
Head: common.Head{
|
||
|
Ref: "branch",
|
||
|
Sha: "testing",
|
||
|
Repo: &common.Repository{
|
||
|
Name: "testRepo",
|
||
|
Default_Branch: "main1",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
Repository: &common.Repository{
|
||
|
Owner: &common.Organization{
|
||
|
Username: "test",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, test := range testData {
|
||
|
t.Run(test.title, func(t *testing.T) {
|
||
|
s := PullRequestReviewed{}
|
||
|
if err := s.Process(event, nil, nil); err != test.error {
|
||
|
t.Error("unexected error:", err, "Expected:", test.error)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|