2021-12-12 16:48:20 +01:00
|
|
|
// 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"
|
|
|
|
|
2022-03-29 21:13:41 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-12 16:48:20 +01:00
|
|
|
"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)
|
2022-03-29 21:13:41 +02:00
|
|
|
repo, err = GetUserFork(db.DefaultContext, repo.ID, 13)
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, repo)
|
|
|
|
|
|
|
|
repo, err = GetRepositoryByID(9)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, repo)
|
2022-03-29 21:13:41 +02:00
|
|
|
repo, err = GetUserFork(db.DefaultContext, repo.ID, 13)
|
2021-12-12 16:48:20 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Nil(t, repo)
|
|
|
|
}
|