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