2020-04-05 06:20:50 +00:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 18:20:29 +00:00
// SPDX-License-Identifier: MIT
2020-04-05 06:20:50 +00:00
2019-03-27 09:33:00 +00:00
package git
import (
2021-06-06 23:44:58 +00:00
"context"
2019-03-27 09:33:00 +00:00
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
2022-01-20 17:46:10 +00:00
const (
2022-01-29 12:41:44 +00:00
testReposDir = "tests/repos/"
2022-01-20 17:46:10 +00:00
)
2019-03-27 09:33:00 +00:00
2022-09-04 15:14:53 +00:00
func cloneRepo ( tb testing . TB , url string ) ( string , error ) {
repoDir := tb . TempDir ( )
2022-01-29 12:41:44 +00:00
if err := Clone ( DefaultContext , url , repoDir , CloneRepoOptions {
2019-03-27 09:33:00 +00:00
Mirror : false ,
Bare : false ,
Quiet : true ,
Timeout : 5 * time . Minute ,
2022-01-29 12:41:44 +00:00
} ) ; err != nil {
return "" , err
}
return repoDir , nil
2019-03-27 09:33:00 +00:00
}
func testGetCommitsInfo ( t * testing . T , repo1 * Repository ) {
// these test case are specific to the repo1 test repo
testCases := [ ] struct {
2019-07-22 12:03:15 +00:00
CommitID string
Path string
ExpectedIDs map [ string ] string
ExpectedTreeCommit string
2019-03-27 09:33:00 +00:00
} {
{ "8d92fc957a4d7cfd98bc375f0b7bb189a0d6c9f2" , "" , map [ string ] string {
"file1.txt" : "95bb4d39648ee7e325106df01a621c530863a653" ,
"file2.txt" : "8d92fc957a4d7cfd98bc375f0b7bb189a0d6c9f2" ,
2019-07-22 12:03:15 +00:00
} , "8d92fc957a4d7cfd98bc375f0b7bb189a0d6c9f2" } ,
2019-03-27 09:33:00 +00:00
{ "2839944139e0de9737a044f78b0e4b40d989a9e3" , "" , map [ string ] string {
"file1.txt" : "2839944139e0de9737a044f78b0e4b40d989a9e3" ,
"branch1.txt" : "9c9aef8dd84e02bc7ec12641deb4c930a7c30185" ,
2019-07-22 12:03:15 +00:00
} , "2839944139e0de9737a044f78b0e4b40d989a9e3" } ,
2019-03-27 09:33:00 +00:00
{ "5c80b0245c1c6f8343fa418ec374b13b5d4ee658" , "branch2" , map [ string ] string {
"branch2.txt" : "5c80b0245c1c6f8343fa418ec374b13b5d4ee658" ,
2019-07-22 12:03:15 +00:00
} , "5c80b0245c1c6f8343fa418ec374b13b5d4ee658" } ,
{ "feaf4ba6bc635fec442f46ddd4512416ec43c2c2" , "" , map [ string ] string {
"file1.txt" : "95bb4d39648ee7e325106df01a621c530863a653" ,
"file2.txt" : "8d92fc957a4d7cfd98bc375f0b7bb189a0d6c9f2" ,
"foo" : "37991dec2c8e592043f47155ce4808d4580f9123" ,
} , "feaf4ba6bc635fec442f46ddd4512416ec43c2c2" } ,
2019-03-27 09:33:00 +00:00
}
for _ , testCase := range testCases {
commit , err := repo1 . GetCommit ( testCase . CommitID )
2022-01-29 12:41:44 +00:00
if err != nil {
assert . NoError ( t , err , "Unable to get commit: %s from testcase due to error: %v" , testCase . CommitID , err )
// no point trying to do anything else for this test.
continue
}
2020-12-17 14:00:47 +00:00
assert . NotNil ( t , commit )
assert . NotNil ( t , commit . Tree )
assert . NotNil ( t , commit . Tree . repo )
2019-03-27 09:33:00 +00:00
tree , err := commit . Tree . SubTree ( testCase . Path )
2022-01-29 12:41:44 +00:00
if err != nil {
assert . NoError ( t , err , "Unable to get subtree: %s of commit: %s from testcase due to error: %v" , testCase . Path , testCase . CommitID , err )
// no point trying to do anything else for this test.
continue
}
2020-12-17 14:00:47 +00:00
assert . NotNil ( t , tree , "tree is nil for testCase CommitID %s in Path %s" , testCase . CommitID , testCase . Path )
assert . NotNil ( t , tree . repo , "repo is nil for testCase CommitID %s in Path %s" , testCase . CommitID , testCase . Path )
2019-03-27 09:33:00 +00:00
entries , err := tree . ListEntries ( )
2022-01-29 12:41:44 +00:00
if err != nil {
assert . NoError ( t , err , "Unable to get entries of subtree: %s in commit: %s from testcase due to error: %v" , testCase . Path , testCase . CommitID , err )
// no point trying to do anything else for this test.
continue
}
// FIXME: Context.TODO() - if graceful has started we should use its Shutdown context otherwise use install signals in TestMain.
2022-07-25 15:39:42 +00:00
commitsInfo , treeCommit , err := entries . GetCommitsInfo ( context . TODO ( ) , commit , testCase . Path )
2022-01-29 12:41:44 +00:00
assert . NoError ( t , err , "Unable to get commit information for entries of subtree: %s in commit: %s from testcase due to error: %v" , testCase . Path , testCase . CommitID , err )
2020-12-17 14:00:47 +00:00
if err != nil {
t . FailNow ( )
}
assert . Equal ( t , testCase . ExpectedTreeCommit , treeCommit . ID . String ( ) )
2019-03-27 09:33:00 +00:00
assert . Len ( t , commitsInfo , len ( testCase . ExpectedIDs ) )
for _ , commitInfo := range commitsInfo {
2020-12-17 14:00:47 +00:00
entry := commitInfo . Entry
commit := commitInfo . Commit
2019-03-27 09:33:00 +00:00
expectedID , ok := testCase . ExpectedIDs [ entry . Name ( ) ]
if ! assert . True ( t , ok ) {
continue
}
assert . Equal ( t , expectedID , commit . ID . String ( ) )
}
}
}
func TestEntries_GetCommitsInfo ( t * testing . T ) {
bareRepo1Path := filepath . Join ( testReposDir , "repo1_bare" )
2022-03-29 19:13:41 +00:00
bareRepo1 , err := openRepositoryWithDefaultContext ( bareRepo1Path )
2019-03-27 09:33:00 +00:00
assert . NoError ( t , err )
2019-11-13 07:01:19 +00:00
defer bareRepo1 . Close ( )
2019-03-27 09:33:00 +00:00
testGetCommitsInfo ( t , bareRepo1 )
2022-09-04 15:14:53 +00:00
clonedPath , err := cloneRepo ( t , bareRepo1Path )
2022-01-29 12:41:44 +00:00
if err != nil {
assert . NoError ( t , err )
}
2022-03-29 19:13:41 +00:00
clonedRepo1 , err := openRepositoryWithDefaultContext ( clonedPath )
2022-01-29 12:41:44 +00:00
if err != nil {
assert . NoError ( t , err )
}
2019-11-13 07:01:19 +00:00
defer clonedRepo1 . Close ( )
2019-03-27 09:33:00 +00:00
testGetCommitsInfo ( t , clonedRepo1 )
}
func BenchmarkEntries_GetCommitsInfo ( b * testing . B ) {
2022-01-29 12:41:44 +00:00
type benchmarkType struct {
2019-03-27 09:33:00 +00:00
url string
name string
2022-01-29 12:41:44 +00:00
}
benchmarks := [ ] benchmarkType {
2019-03-27 09:33:00 +00:00
{ url : "https://github.com/go-gitea/gitea.git" , name : "gitea" } ,
{ url : "https://github.com/ethantkoenig/manyfiles.git" , name : "manyfiles" } ,
{ url : "https://github.com/moby/moby.git" , name : "moby" } ,
{ url : "https://github.com/golang/go.git" , name : "go" } ,
{ url : "https://github.com/torvalds/linux.git" , name : "linux" } ,
}
2022-01-29 12:41:44 +00:00
doBenchmark := func ( benchmark benchmarkType ) {
2019-03-27 09:33:00 +00:00
var commit * Commit
var entries Entries
2019-11-13 07:01:19 +00:00
var repo * Repository
2022-09-04 15:14:53 +00:00
repoPath , err := cloneRepo ( b , benchmark . url )
2022-01-29 12:41:44 +00:00
if err != nil {
2019-03-27 09:33:00 +00:00
b . Fatal ( err )
2022-01-29 12:41:44 +00:00
}
2022-03-29 19:13:41 +00:00
if repo , err = openRepositoryWithDefaultContext ( repoPath ) ; err != nil {
2019-03-27 09:33:00 +00:00
b . Fatal ( err )
2022-01-29 12:41:44 +00:00
}
defer repo . Close ( )
if commit , err = repo . GetBranchCommit ( "master" ) ; err != nil {
2019-03-27 09:33:00 +00:00
b . Fatal ( err )
} else if entries , err = commit . Tree . ListEntries ( ) ; err != nil {
b . Fatal ( err )
}
entries . Sort ( )
b . ResetTimer ( )
b . Run ( benchmark . name , func ( b * testing . B ) {
for i := 0 ; i < b . N ; i ++ {
2022-07-25 15:39:42 +00:00
_ , _ , err := entries . GetCommitsInfo ( context . Background ( ) , commit , "" )
2019-03-27 09:33:00 +00:00
if err != nil {
b . Fatal ( err )
}
}
} )
2022-01-29 12:41:44 +00:00
}
for _ , benchmark := range benchmarks {
doBenchmark ( benchmark )
2019-03-27 09:33:00 +00:00
}
}