Add some bench and little test
This commit is contained in:
parent
7635ba9038
commit
c1768c5b64
|
@ -5,13 +5,13 @@
|
||||||
package integrations
|
package integrations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
api "code.gitea.io/sdk/gitea"
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
"fmt"
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,13 @@ package models
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"html/template"
|
"html/template"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/modules/log"
|
||||||
|
|
||||||
dmp "github.com/sergi/go-diff/diffmatchpatch"
|
dmp "github.com/sergi/go-diff/diffmatchpatch"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func assertEqual(t *testing.T, s1 string, s2 template.HTML) {
|
func assertEqual(t *testing.T, s1 string, s2 template.HTML) {
|
||||||
|
@ -34,3 +38,72 @@ func TestDiffToHTML(t *testing.T) {
|
||||||
{Type: dmp.DiffEqual, Text: " biz"},
|
{Type: dmp.DiffEqual, Text: " biz"},
|
||||||
}, DiffLineDel))
|
}, DiffLineDel))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func benchParsePatch(b *testing.B, diffStr string) {
|
||||||
|
log.DelLogger("console")
|
||||||
|
log.DelLogger("file")
|
||||||
|
b.ResetTimer() //Disable logger for becnh
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
ParsePatch(1000, 5000, 100, strings.NewReader(diffStr))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkParsePatchSimple(b *testing.B) {
|
||||||
|
benchParsePatch(b, `diff --git a/integrations/api_issue_test.go b/integrations/api_issue_test.go
|
||||||
|
index 74436ffe9..ff316cec3 100644
|
||||||
|
--- a/integrations/api_issue_test.go
|
||||||
|
+++ b/integrations/api_issue_test.go
|
||||||
|
@@ -5,13 +5,13 @@
|
||||||
|
package integrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
+ "fmt"
|
||||||
|
"net/http"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/models"
|
||||||
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
|
- "fmt"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
`)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestParsePatch(t *testing.T) {
|
||||||
|
testCases := []struct {
|
||||||
|
result error
|
||||||
|
files int
|
||||||
|
addition int
|
||||||
|
deletion int
|
||||||
|
diff string
|
||||||
|
}{
|
||||||
|
{nil, 1, 1, 1,
|
||||||
|
`diff --git a/integrations/api_issue_test.go b/integrations/api_issue_test.go
|
||||||
|
index 74436ffe9..ff316cec3 100644
|
||||||
|
--- a/integrations/api_issue_test.go
|
||||||
|
+++ b/integrations/api_issue_test.go
|
||||||
|
@@ -5,13 +5,13 @@
|
||||||
|
package integrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
+ "fmt"
|
||||||
|
"net/http"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/models"
|
||||||
|
api "code.gitea.io/sdk/gitea"
|
||||||
|
|
||||||
|
- "fmt"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
`},
|
||||||
|
}
|
||||||
|
for _, tc := range testCases {
|
||||||
|
diff, err := ParsePatch(1000, 5000, 100, strings.NewReader(tc.diff))
|
||||||
|
assert.Equal(t, tc.result, err)
|
||||||
|
assert.Equal(t, tc.files, diff.NumFiles())
|
||||||
|
assert.Equal(t, tc.addition, diff.TotalAddition)
|
||||||
|
assert.Equal(t, tc.deletion, diff.TotalDeletion)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user