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