mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-19 09:16:36 +00:00
Fixes #11919. ## Checklist The [contributor guide](https://forgejo.org/docs/next/contributor/) contains information that will be helpful to first time contributors. All work and communication must conform to Forgejo's [AI Agreement](https://codeberg.org/forgejo/governance/src/branch/main/AIAgreement.md). There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). ### Tests for Go changes - I added test coverage for Go changes... - [x] in their respective `*_test.go` for unit tests. - [ ] in the `tests/integration` directory if it involves interactions with a live Forgejo server. - I ran... - [ ] `make pr-go` before pushing ### Documentation - [ ] I created a pull request [to the documentation](https://codeberg.org/forgejo/docs) to explain to Forgejo users how to use this change. - [x] I did not document these changes and I do not expect someone else to do it. ### Release notes - [ ] This change will be noticed by a Forgejo user or admin (feature, bug fix, performance, etc.). I suggest to include a release note for this change. - [x] This change is not visible to a Forgejo user or admin (refactor, dependency upgrade, etc.). I think there is no need to add a release note for this change. - Will be a fix before the feature is released, therefore not "visible to users". Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11927 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Reviewed-by: Antonin Delpeuch <wetneb@noreply.codeberg.org> Co-authored-by: Mathieu Fenniak <mathieu@fenniak.net> Co-committed-by: Mathieu Fenniak <mathieu@fenniak.net>
81 lines
2.6 KiB
Go
81 lines
2.6 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repository
|
|
|
|
import (
|
|
"testing"
|
|
|
|
auth_model "forgejo.org/models/auth"
|
|
"forgejo.org/models/db"
|
|
repo_model "forgejo.org/models/repo"
|
|
"forgejo.org/models/unit"
|
|
"forgejo.org/models/unittest"
|
|
user_model "forgejo.org/models/user"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestLinkedRepository(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
testCases := []struct {
|
|
name string
|
|
attachID int64
|
|
expectedRepo *repo_model.Repository
|
|
expectedUnitType unit.Type
|
|
}{
|
|
{"LinkedIssue", 1, &repo_model.Repository{ID: 1}, unit.TypeIssues},
|
|
{"LinkedComment", 3, &repo_model.Repository{ID: 1}, unit.TypePullRequests},
|
|
{"LinkedRelease", 9, &repo_model.Repository{ID: 1}, unit.TypeReleases},
|
|
{"Notlinked", 10, nil, -1},
|
|
}
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
attach, err := repo_model.GetAttachmentByID(db.DefaultContext, tc.attachID)
|
|
require.NoError(t, err)
|
|
repo, unitType, err := LinkedRepository(db.DefaultContext, attach)
|
|
require.NoError(t, err)
|
|
if tc.expectedRepo != nil {
|
|
assert.Equal(t, tc.expectedRepo.ID, repo.ID)
|
|
}
|
|
assert.Equal(t, tc.expectedUnitType, unitType)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestConvertMirrorToNormalRepo(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
|
repo.IsMirror = true
|
|
err := repo_model.UpdateRepositoryCols(db.DefaultContext, repo, "is_mirror")
|
|
|
|
require.NoError(t, err)
|
|
|
|
err = ConvertMirrorToNormalRepo(db.DefaultContext, repo)
|
|
require.NoError(t, err)
|
|
assert.False(t, repo.IsMirror)
|
|
}
|
|
|
|
func TestDeleteRepository(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
|
|
require.NoError(t, DeleteRepository(t.Context(), doer, repo, false))
|
|
}
|
|
|
|
func TestDeleteRepositoryWithReferences(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
|
|
|
token1 := unittest.AssertExistsAndLoadBean(t, &auth_model.AccessToken{ID: 1})
|
|
err := db.Insert(t.Context(), &auth_model.AccessTokenResourceRepo{
|
|
TokenID: token1.ID,
|
|
RepoID: repo.ID,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
|
|
require.NoError(t, DeleteRepository(t.Context(), doer, repo, false))
|
|
}
|