2017-02-24 09:37:38 +08:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-02-24 09:37:38 +08:00
|
|
|
|
2023-09-09 05:09:23 +08:00
|
|
|
package repository
|
2017-02-24 09:37:38 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 19:49:59 +08:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 09:27:50 +08:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 22:36:47 +08:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2024-03-04 16:16:03 +08:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 20:34:35 +08:00
|
|
|
|
2017-02-24 09:37:38 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepository_DeleteCollaboration(t *testing.T) {
|
2021-11-12 22:36:47 +08:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-24 09:37:38 +08:00
|
|
|
|
2024-03-04 16:16:03 +08:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 4})
|
2022-08-16 10:22:25 +08:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 4})
|
2024-03-04 16:16:03 +08:00
|
|
|
|
2023-02-18 20:11:03 +08:00
|
|
|
assert.NoError(t, repo.LoadOwner(db.DefaultContext))
|
2024-03-04 16:16:03 +08:00
|
|
|
assert.NoError(t, DeleteCollaboration(db.DefaultContext, repo, user))
|
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: user.ID})
|
2017-02-24 09:37:38 +08:00
|
|
|
|
2024-03-04 16:16:03 +08:00
|
|
|
assert.NoError(t, DeleteCollaboration(db.DefaultContext, repo, user))
|
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: user.ID})
|
2017-02-24 09:37:38 +08:00
|
|
|
|
2021-12-10 09:27:50 +08:00
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repo.ID})
|
2017-02-24 09:37:38 +08:00
|
|
|
}
|