Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
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.
28 lines
793 B
28 lines
793 B
// 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 TestEmptyRepo(t *testing.T) { |
|
prepareTestEnv(t) |
|
subpaths := []string{ |
|
"commits/master", |
|
"raw/foo", |
|
"commit/1ae57b34ccf7e18373", |
|
"graph", |
|
} |
|
emptyRepo := models.AssertExistsAndLoadBean(t, &models.Repository{}, models.Cond("is_empty = ?", true)).(*models.Repository) |
|
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: emptyRepo.OwnerID}).(*models.User) |
|
for _, subpath := range subpaths { |
|
req := NewRequestf(t, "GET", "/%s/%s/%s", owner.Name, emptyRepo.Name, subpath) |
|
MakeRequest(t, req, http.StatusNotFound) |
|
} |
|
}
|
|
|