61 lines
1.6 KiB
Go
61 lines
1.6 KiB
Go
package common
|
|
|
|
/*
|
|
* This file is part of Autogits.
|
|
*
|
|
* Copyright © 2024 SUSE LLC
|
|
*
|
|
* Autogits is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, either version 2 of the License, or (at your option) any later
|
|
* version.
|
|
*
|
|
* Autogits is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
* PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* Foobar. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
type testLogger struct {
|
|
str string
|
|
}
|
|
|
|
func (s *testLogger) WriteString(str2 string) (int, error) {
|
|
s.str += str2
|
|
return len(s.str), nil
|
|
}
|
|
|
|
func TestRepositoryRequestParsing(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, err := h.parseRepositoryRequest(strings.NewReader(repoCreateJSON))
|
|
if err != nil {
|
|
t.Fatalf("Can't parse struct: %s", err)
|
|
}
|
|
|
|
if json.Action != "created" {
|
|
t.Fatalf("json.action is '%#v'", json)
|
|
}
|
|
|
|
if json.Repository.Full_Name != "autogits/nodejs22" ||
|
|
json.Repository.Parent == nil ||
|
|
json.Repository.Parent.Parent != nil ||
|
|
len(json.Repository.Ssh_Url) < 10 ||
|
|
json.Repository.Default_Branch != "factory" ||
|
|
json.Repository.Object_Format_Name != "sha256" {
|
|
|
|
t.Fatalf("invalid repository parse: %#v", json.Repository)
|
|
}
|
|
})
|
|
}
|