2017-11-12 05:29:07 +00:00
|
|
|
// 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"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSignOut(t *testing.T) {
|
2019-11-25 23:21:37 +00:00
|
|
|
defer 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")
|
2017-11-12 05:29:07 +00:00
|
|
|
session.MakeRequest(t, req, http.StatusFound)
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
|
|
|
// invalidate cached cookies for user2, for subsequent tests
|
|
|
|
delete(loginSessionCache, "user2")
|
|
|
|
}
|