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