2017-02-24 07:07:38 +05:30
|
|
|
// Copyright 2017 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 models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2017-02-24 07:07:38 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepository_DeleteCollaboration(t *testing.T) {
|
2021-11-12 20:06:47 +05:30
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-24 07:07:38 +05:30
|
|
|
|
2022-08-16 07:52:25 +05:30
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 4})
|
2021-12-10 06:57:50 +05:30
|
|
|
assert.NoError(t, repo.GetOwner(db.DefaultContext))
|
|
|
|
assert.NoError(t, DeleteCollaboration(repo, 4))
|
2022-05-11 15:39:36 +05:30
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: 4})
|
2017-02-24 07:07:38 +05:30
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
assert.NoError(t, DeleteCollaboration(repo, 4))
|
2022-05-11 15:39:36 +05:30
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: 4})
|
2017-02-24 07:07:38 +05:30
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repo.ID})
|
2017-02-24 07:07:38 +05:30
|
|
|
}
|