You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.9 KiB
77 lines
1.9 KiB
8 years ago
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
5 years ago
|
package gitgraph
|
||
8 years ago
|
|
||
|
import (
|
||
6 years ago
|
"fmt"
|
||
8 years ago
|
"testing"
|
||
|
|
||
6 years ago
|
"code.gitea.io/gitea/modules/git"
|
||
8 years ago
|
)
|
||
|
|
||
|
func BenchmarkGetCommitGraph(b *testing.B) {
|
||
|
|
||
|
currentRepo, err := git.OpenRepository(".")
|
||
|
if err != nil {
|
||
|
b.Error("Could not open repository")
|
||
|
}
|
||
5 years ago
|
defer currentRepo.Close()
|
||
8 years ago
|
|
||
8 years ago
|
for i := 0; i < b.N; i++ {
|
||
5 years ago
|
graph, err := GetCommitGraph(currentRepo, 1)
|
||
8 years ago
|
if err != nil {
|
||
|
b.Error("Could get commit graph")
|
||
|
}
|
||
|
|
||
|
if len(graph) < 100 {
|
||
|
b.Error("Should get 100 log lines.")
|
||
|
}
|
||
8 years ago
|
}
|
||
|
}
|
||
|
|
||
|
func BenchmarkParseCommitString(b *testing.B) {
|
||
|
testString := "* DATA:||4e61bacab44e9b4730e44a6615d04098dd3a8eaf|2016-12-20 21:10:41 +0100|Kjell Kvinge|kjell@kvinge.biz|4e61bac|Add route for graph"
|
||
|
|
||
8 years ago
|
for i := 0; i < b.N; i++ {
|
||
|
graphItem, err := graphItemFromString(testString, nil)
|
||
|
if err != nil {
|
||
|
b.Error("could not parse teststring")
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
if graphItem.Author != "Kjell Kvinge" {
|
||
|
b.Error("Did not get expected data")
|
||
|
}
|
||
8 years ago
|
}
|
||
|
}
|
||
6 years ago
|
|
||
|
func TestCommitStringParsing(t *testing.T) {
|
||
|
dataFirstPart := "* DATA:||4e61bacab44e9b4730e44a6615d04098dd3a8eaf|2016-12-20 21:10:41 +0100|Author|user@mail.something|4e61bac|"
|
||
|
tests := []struct {
|
||
|
shouldPass bool
|
||
|
testName string
|
||
|
commitMessage string
|
||
|
}{
|
||
|
{true, "normal", "not a fancy message"},
|
||
|
{true, "extra pipe", "An extra pipe: |"},
|
||
|
{true, "extra 'Data:'", "DATA: might be trouble"},
|
||
|
}
|
||
|
|
||
|
for _, test := range tests {
|
||
|
|
||
|
t.Run(test.testName, func(t *testing.T) {
|
||
|
testString := fmt.Sprintf("%s%s", dataFirstPart, test.commitMessage)
|
||
|
graphItem, err := graphItemFromString(testString, nil)
|
||
|
if err != nil && test.shouldPass {
|
||
|
t.Errorf("Could not parse %s", testString)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if test.commitMessage != graphItem.Subject {
|
||
|
t.Errorf("%s does not match %s", test.commitMessage, graphItem.Subject)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|