mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
// Copyright 2017 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package repository |
|
|
|
import ( |
|
"testing" |
|
|
|
"code.gitea.io/gitea/models/perm" |
|
repo_model "code.gitea.io/gitea/models/repo" |
|
"code.gitea.io/gitea/models/unittest" |
|
user_model "code.gitea.io/gitea/models/user" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestRepository_AddCollaborator(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
testSuccess := func(repoID, userID int64) { |
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: repoID}) |
|
assert.NoError(t, repo.LoadOwner(t.Context())) |
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: userID}) |
|
assert.NoError(t, AddOrUpdateCollaborator(t.Context(), repo, user, perm.AccessModeWrite)) |
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repoID}, &user_model.User{ID: userID}) |
|
} |
|
testSuccess(1, 4) |
|
testSuccess(1, 4) |
|
testSuccess(3, 4) |
|
} |
|
|
|
func TestRepository_DeleteCollaboration(t *testing.T) { |
|
assert.NoError(t, unittest.PrepareTestDatabase()) |
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 4}) |
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 4}) |
|
|
|
assert.NoError(t, repo.LoadOwner(t.Context())) |
|
assert.NoError(t, DeleteCollaboration(t.Context(), repo, user)) |
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: user.ID}) |
|
|
|
assert.NoError(t, DeleteCollaboration(t.Context(), repo, user)) |
|
unittest.AssertNotExistsBean(t, &repo_model.Collaboration{RepoID: repo.ID, UserID: user.ID}) |
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{ID: repo.ID}) |
|
}
|
|
|