blob: 689a64fdd6a7bf60b300b8d6b74ec0ba3e1c0880 (
plain) (
tree)
|
|
package tests
import (
"testing"
"github.com/git-bug/git-bug/entities/bug"
"github.com/git-bug/git-bug/misc/random_bugs"
"github.com/git-bug/git-bug/repository"
)
func TestReadBugs(t *testing.T) {
repo := repository.CreateGoGitTestRepo(t, false)
random_bugs.FillRepoWithSeed(repo, 15, 42)
bugs := bug.ReadAll(repo)
for b := range bugs {
if b.Err != nil {
t.Fatal(b.Err)
}
}
}
func benchmarkReadBugs(bugNumber int, t *testing.B) {
repo := repository.CreateGoGitTestRepo(t, false)
random_bugs.FillRepoWithSeed(repo, bugNumber, 42)
t.ResetTimer()
for n := 0; n < t.N; n++ {
bugs := bug.ReadAll(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) }
|