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