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