2021-11-18 17:42:27 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-18 17:42:27 +00:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
2022-03-29 06:29:02 +00:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-18 17:42:27 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-18 17:42:27 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-11-18 17:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeleteOrganization(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 02:22:25 +00:00
|
|
|
org := unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 6})
|
2021-11-18 17:42:27 +00:00
|
|
|
assert.NoError(t, DeleteOrganization(org))
|
2022-03-29 06:29:02 +00:00
|
|
|
unittest.AssertNotExistsBean(t, &organization.Organization{ID: 6})
|
|
|
|
unittest.AssertNotExistsBean(t, &organization.OrgUser{OrgID: 6})
|
|
|
|
unittest.AssertNotExistsBean(t, &organization.Team{OrgID: 6})
|
2021-11-18 17:42:27 +00:00
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
org = unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 3})
|
2021-11-18 17:42:27 +00:00
|
|
|
err := DeleteOrganization(org)
|
|
|
|
assert.Error(t, err)
|
|
|
|
assert.True(t, models.IsErrUserOwnRepos(err))
|
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &organization.Organization{ID: 5})
|
2021-11-18 17:42:27 +00:00
|
|
|
assert.Error(t, DeleteOrganization(user))
|
2022-03-29 06:29:02 +00:00
|
|
|
unittest.CheckConsistencyFor(t, &user_model.User{}, &organization.Team{})
|
2021-11-18 17:42:27 +00:00
|
|
|
}
|