Платформа ЦРНП "Мирокод" для разработки проектов
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.
32 lines
748 B
32 lines
748 B
// Copyright 2021 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 repo |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/unittest" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestGetUserFork(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
// User13 has repo 11 forked from repo10 |
|
repo, err := GetRepositoryByID(10) |
|
assert.NoError(t, err) |
|
assert.NotNil(t, repo) |
|
repo, err = GetUserFork(repo.ID, 13) |
|
assert.NoError(t, err) |
|
assert.NotNil(t, repo) |
|
|
|
repo, err = GetRepositoryByID(9) |
|
assert.NoError(t, err) |
|
assert.NotNil(t, repo) |
|
repo, err = GetUserFork(repo.ID, 13) |
|
assert.NoError(t, err) |
|
assert.Nil(t, repo) |
|
}
|
|
|