2017-11-12 13:29:07 +08:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-11-12 13:29:07 +08:00
|
|
|
|
2022-09-03 03:18:23 +08:00
|
|
|
package integration
|
2017-11-12 13:29:07 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
2022-09-03 03:18:23 +08:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/tests"
|
2017-11-12 13:29:07 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestSignOut(t *testing.T) {
|
2022-09-03 03:18:23 +08:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2017-11-12 13:29:07 +08:00
|
|
|
|
|
|
|
session := loginUser(t, "user2")
|
|
|
|
|
2020-03-03 12:50:31 +08:00
|
|
|
req := NewRequest(t, "POST", "/user/logout")
|
2023-06-27 03:36:10 +08:00
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
2017-11-12 13:29:07 +08:00
|
|
|
|
|
|
|
// try to view a private repo, should fail
|
2021-12-22 18:39:28 +08:00
|
|
|
req = NewRequest(t, "GET", "/user2/repo2")
|
2017-11-12 13:29:07 +08:00
|
|
|
session.MakeRequest(t, req, http.StatusNotFound)
|
|
|
|
}
|