2018-08-19 22:27:10 +03:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
2019-02-16 15:48:46 +03:00
|
|
|
"github.com/MichaelMure/git-bug/misc/random_bugs"
|
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
2018-08-19 22:27:10 +03:00
|
|
|
)
|
|
|
|
|
2019-05-27 22:14:55 +03:00
|
|
|
func TestReadBugs(t *testing.T) {
|
|
|
|
repo := repository.CreateTestRepo(false)
|
|
|
|
defer repository.CleanupTestRepos(t, repo)
|
2019-02-16 15:48:46 +03:00
|
|
|
|
2019-05-27 22:14:55 +03:00
|
|
|
random_bugs.FillRepoWithSeed(repo, 15, 42)
|
2019-02-16 15:48:46 +03:00
|
|
|
|
2018-08-19 22:27:10 +03:00
|
|
|
bugs := bug.ReadAllLocalBugs(repo)
|
|
|
|
for b := range bugs {
|
|
|
|
if b.Err != nil {
|
|
|
|
t.Fatal(b.Err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func benchmarkReadBugs(bugNumber int, t *testing.B) {
|
2019-05-27 22:14:55 +03:00
|
|
|
repo := repository.CreateTestRepo(false)
|
|
|
|
defer repository.CleanupTestRepos(t, repo)
|
|
|
|
|
|
|
|
random_bugs.FillRepoWithSeed(repo, bugNumber, 42)
|
2018-08-19 22:27:10 +03:00
|
|
|
t.ResetTimer()
|
|
|
|
|
|
|
|
for n := 0; n < t.N; n++ {
|
|
|
|
bugs := bug.ReadAllLocalBugs(repo)
|
|
|
|
for b := range bugs {
|
|
|
|
if b.Err != nil {
|
|
|
|
t.Fatal(b.Err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkReadBugs5(b *testing.B) { benchmarkReadBugs(5, b) }
|
|
|
|
func BenchmarkReadBugs25(b *testing.B) { benchmarkReadBugs(25, b) }
|
|
|
|
func BenchmarkReadBugs150(b *testing.B) { benchmarkReadBugs(150, b) }
|