36 lines
912 B
Go
36 lines
912 B
Go
package common
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestPushRequestParsing(t *testing.T) {
|
|
t.Run("parsing repo creation message", func(t *testing.T) {
|
|
var h RequestHandler
|
|
|
|
h.StdLogger, h.ErrLogger = CreateStdoutLogger(os.Stdout, os.Stdout)
|
|
json := h.parsePushRequest(strings.NewReader(examplePushJSON))
|
|
if json == nil {
|
|
t.Fatalf("failed to parser push request: %v", h.Error)
|
|
}
|
|
if h.HasError() {
|
|
t.Fatalf("Can't parse struct: %s", h.Error.Error())
|
|
}
|
|
|
|
if json.Total_Commits < 1 || json.Total_Commits != len(json.Commits) {
|
|
t.Fatalf("push without commits? '%#v'", json)
|
|
}
|
|
|
|
if json.Repository.Full_Name != "autogits/_ObsPrj" ||
|
|
json.Repository.Parent != nil ||
|
|
len(json.Repository.Ssh_Url) < 10 ||
|
|
json.Repository.Default_Branch != "main" ||
|
|
json.Repository.Object_Format_Name != "sha256" {
|
|
|
|
t.Fatalf("invalid repository parse: %#v", json.Repository)
|
|
}
|
|
})
|
|
}
|