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