mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
bc3b0fda35
This adds additional logging to the authentication logs such as type, remote IP, request method, redirect URL, and if the attempt was done during a ban. This also means we log attempts that occur when the attempt was blocked by the regulator for record keeping purposes, as well as record 2FA attempts which can be used to inform admins and later to regulate based on other factors. Fixes #116, Fixes #1293.
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package session
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/fasthttp/session/v2"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestShouldEncryptAndDecrypt(t *testing.T) {
|
|
payload := session.Dict{}
|
|
payload.Set("key", "value")
|
|
|
|
dst, err := payload.MarshalMsg(nil)
|
|
require.NoError(t, err)
|
|
|
|
serializer := NewEncryptingSerializer("asecret")
|
|
encryptedDst, err := serializer.Encode(payload)
|
|
require.NoError(t, err)
|
|
|
|
assert.NotEqual(t, dst, encryptedDst)
|
|
|
|
decodedPayload := session.Dict{}
|
|
err = serializer.Decode(&decodedPayload, encryptedDst)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, "value", decodedPayload.Get("key"))
|
|
}
|
|
|
|
func TestShouldNotSupportUnencryptedSessionForBackwardCompatibility(t *testing.T) {
|
|
payload := session.Dict{}
|
|
payload.Set("key", "value")
|
|
|
|
dst, err := payload.MarshalMsg(nil)
|
|
require.NoError(t, err)
|
|
|
|
serializer := NewEncryptingSerializer("asecret")
|
|
|
|
decodedPayload := session.Dict{}
|
|
err = serializer.Decode(&decodedPayload, dst)
|
|
assert.EqualError(t, err, "unable to decrypt session: cipher: message authentication failed")
|
|
}
|