mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-12 22:10:25 +00:00
- Delete blocked users entries. - Organization cannot get blocked, it can block other people however. - Delete following entries. - Organization cannot follow, it can be followed by users. - Resolves forgejo/forgejo#11416 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11699 Reviewed-by: Mathieu Fenniak <mfenniak@noreply.codeberg.org> Reviewed-by: 0ko <0ko@noreply.codeberg.org> Reviewed-by: Andreas Ahlenstorf <aahlenst@noreply.codeberg.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package org
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/models"
|
|
"forgejo.org/models/actions"
|
|
"forgejo.org/models/db"
|
|
"forgejo.org/models/organization"
|
|
"forgejo.org/models/unittest"
|
|
user_model "forgejo.org/models/user"
|
|
"forgejo.org/modules/optional"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m)
|
|
}
|
|
|
|
func TestDeleteOrganization(t *testing.T) {
|
|
defer unittest.OverrideFixtures("services/org/TestDeleteOrganization")()
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
org := unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 6})
|
|
require.NoError(t, DeleteOrganization(db.DefaultContext, org, false))
|
|
unittest.AssertNotExistsBean(t, &organization.Organization{ID: 6})
|
|
unittest.AssertNotExistsBean(t, &organization.OrgUser{OrgID: 6})
|
|
unittest.AssertNotExistsBean(t, &organization.Team{OrgID: 6})
|
|
unittest.AssertNotExistsBean(t, &actions.ActionRunnerToken{OwnerID: optional.Some[int64](6)})
|
|
unittest.AssertNotExistsBean(t, &user_model.Follow{FollowID: 6})
|
|
unittest.AssertNotExistsBean(t, &user_model.BlockedUser{UserID: 6})
|
|
|
|
org = unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 3})
|
|
err := DeleteOrganization(db.DefaultContext, org, false)
|
|
require.Error(t, err)
|
|
assert.True(t, models.IsErrUserOwnRepos(err))
|
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 5})
|
|
require.Error(t, DeleteOrganization(db.DefaultContext, user, false))
|
|
unittest.CheckConsistencyFor(t, &user_model.User{}, &organization.Team{})
|
|
|
|
assert.Zero(t, unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1001}).NumFollowing)
|
|
}
|