1
0
Fork 0
forked from forgejo/forgejo

Fix bare-repo bugs (#2199)

* Fix bare-repo bugs

* Integration tests

* Unused import
This commit is contained in:
Ethan Koenig 2017-07-27 02:23:38 -07:00 committed by Lauris BH
parent aff11bc65e
commit fd45a032a7
23 changed files with 575 additions and 2 deletions

View file

@ -0,0 +1,28 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package integrations
import (
"net/http"
"testing"
"code.gitea.io/gitea/models"
)
func TestBareRepo(t *testing.T) {
prepareTestEnv(t)
subpaths := []string{
"commits/master",
"raw/foo",
"commit/1ae57b34ccf7e18373",
"graph",
}
bareRepo := models.AssertExistsAndLoadBean(t, &models.Repository{}, models.Cond("is_bare = ?", true)).(*models.Repository)
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: bareRepo.OwnerID}).(*models.User)
for _, subpath := range subpaths {
req := NewRequestf(t, "GET", "/%s/%s/%s", owner.Name, bareRepo.Name, subpath)
MakeRequest(t, req, http.StatusNotFound)
}
}