2017-02-23 20:37:38 -05:00
|
|
|
// 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 07:49:59 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 09:36:47 -05:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 07:34:35 -05:00
|
|
|
|
2017-02-23 20:37:38 -05:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepository_AddCollaborator(t *testing.T) {
|
2021-11-12 09:36:47 -05:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-23 20:37:38 -05:00
|
|
|
|
|
|
|
testSuccess := func(repoID, userID int64) {
|
2022-08-15 22:22:25 -04:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: repoID})
|
2021-12-09 20:27:50 -05:00
|
|
|
assert.NoError(t, repo.GetOwner(db.DefaultContext))
|
2022-08-15 22:22:25 -04:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: userID})
|
2021-12-09 20:27:50 -05:00
|
|
|
assert.NoError(t, AddCollaborator(repo, user))
|
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repoID}, &user_model.User{ID: userID})
|
2017-02-23 20:37:38 -05:00
|
|
|
}
|
|
|
|
testSuccess(1, 4)
|
|
|
|
testSuccess(1, 4)
|
|
|
|
testSuccess(3, 4)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepository_DeleteCollaboration(t *testing.T) {
|
2021-11-12 09:36:47 -05:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-02-23 20:37:38 -05:00
|
|
|
|
2022-08-15 22:22:25 -04:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 4})
|
2021-12-09 20:27:50 -05:00
|
|
|
assert.NoError(t, repo.GetOwner(db.DefaultContext))
|
|
|
|
assert.NoError(t, DeleteCollaboration(repo, 4))
|
2022-05-11 06:09:36 -04:00
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: 4})
|
2017-02-23 20:37:38 -05:00
|
|
|
|
2021-12-09 20:27:50 -05:00
|
|
|
assert.NoError(t, DeleteCollaboration(repo, 4))
|
2022-05-11 06:09:36 -04:00
|
|
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: 4})
|
2017-02-23 20:37:38 -05:00
|
|
|
|
2021-12-09 20:27:50 -05:00
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repo.ID})
|
2017-02-23 20:37:38 -05:00
|
|
|
}
|