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.

repo_branch_test.go 967B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2018 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package git
  5. import (
  6. "path/filepath"
  7. "testing"
  8. "github.com/stretchr/testify/assert"
  9. )
  10. func TestRepository_GetBranches(t *testing.T) {
  11. bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
  12. bareRepo1, err := OpenRepository(bareRepo1Path)
  13. assert.NoError(t, err)
  14. defer bareRepo1.Close()
  15. branches, err := bareRepo1.GetBranches()
  16. assert.NoError(t, err)
  17. assert.Len(t, branches, 3)
  18. assert.ElementsMatch(t, []string{"branch1", "branch2", "master"}, branches)
  19. }
  20. func BenchmarkRepository_GetBranches(b *testing.B) {
  21. bareRepo1Path := filepath.Join(testReposDir, "repo1_bare")
  22. bareRepo1, err := OpenRepository(bareRepo1Path)
  23. if err != nil {
  24. b.Fatal(err)
  25. }
  26. defer bareRepo1.Close()
  27. for i := 0; i < b.N; i++ {
  28. _, err := bareRepo1.GetBranches()
  29. if err != nil {
  30. b.Fatal(err)
  31. }
  32. }
  33. }