2017-05-20 14:18:22 +05:30
|
|
|
// 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 integrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDeleteUser(t *testing.T) {
|
|
|
|
prepareTestEnv(t)
|
|
|
|
|
2017-06-17 10:19:45 +05:30
|
|
|
session := loginUser(t, "user1")
|
2017-05-20 14:18:22 +05:30
|
|
|
|
2017-07-08 01:06:47 +05:30
|
|
|
csrf := GetCSRF(t, session, "/admin/users/8")
|
|
|
|
req := NewRequestWithValues(t, "POST", "/admin/users/8/delete", map[string]string{
|
|
|
|
"_csrf": csrf,
|
2017-06-17 10:19:45 +05:30
|
|
|
})
|
2017-07-08 01:06:47 +05:30
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
2017-05-20 14:18:22 +05:30
|
|
|
|
|
|
|
models.AssertNotExistsBean(t, &models.User{ID: 8})
|
|
|
|
models.CheckConsistencyFor(t, &models.User{})
|
|
|
|
}
|