mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
18 lines
511 B
Go
18 lines
511 B
Go
package protocol
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestEncryptionLevelNonZeroValue(t *testing.T) {
|
|
require.NotZero(t, EncryptionInitial*EncryptionHandshake*Encryption0RTT*Encryption1RTT)
|
|
}
|
|
|
|
func TestEncryptionLevelStringRepresentation(t *testing.T) {
|
|
require.Equal(t, "Initial", EncryptionInitial.String())
|
|
require.Equal(t, "Handshake", EncryptionHandshake.String())
|
|
require.Equal(t, "0-RTT", Encryption0RTT.String())
|
|
require.Equal(t, "1-RTT", Encryption1RTT.String())
|
|
}
|