mirror of https://github.com/authelia/authelia.git
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package handlers
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/authelia/authelia/v4/internal/mocks"
|
|
)
|
|
|
|
type LogoutSuite struct {
|
|
suite.Suite
|
|
|
|
mock *mocks.MockAutheliaCtx
|
|
}
|
|
|
|
func (s *LogoutSuite) SetupTest() {
|
|
s.mock = mocks.NewMockAutheliaCtx(s.T())
|
|
provider, err := s.mock.Ctx.GetSessionProvider()
|
|
s.Assert().NoError(err)
|
|
|
|
userSession, err := provider.GetSession(s.mock.Ctx.RequestCtx)
|
|
s.Assert().NoError(err)
|
|
|
|
userSession.Username = testUsername
|
|
s.Assert().NoError(provider.SaveSession(s.mock.Ctx.RequestCtx, userSession))
|
|
}
|
|
|
|
func (s *LogoutSuite) TearDownTest() {
|
|
s.mock.Close()
|
|
}
|
|
|
|
func (s *LogoutSuite) TestShouldDestroySession() {
|
|
LogoutPOST(s.mock.Ctx)
|
|
b := s.mock.Ctx.Response.Header.PeekCookie("authelia_session")
|
|
|
|
// Reset the cookie, meaning it resets the value and expires the cookie by setting
|
|
// date to one minute in the past.
|
|
assert.True(s.T(), strings.HasPrefix(string(b), "authelia_session=;"))
|
|
}
|
|
|
|
func TestRunLogoutSuite(t *testing.T) {
|
|
s := new(LogoutSuite)
|
|
suite.Run(t, s)
|
|
}
|