2016-12-07 11:32:40 -05:00
|
|
|
package encoding_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"testing"
|
|
|
|
|
2019-02-01 08:38:14 -05:00
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
. "github.com/v2fly/v2ray-core/v5/proxy/vmess/encoding"
|
2016-12-07 11:32:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFnvAuth(t *testing.T) {
|
|
|
|
fnvAuth := new(FnvAuthenticator)
|
|
|
|
|
|
|
|
expectedText := make([]byte, 256)
|
2017-07-25 16:28:48 -04:00
|
|
|
_, err := rand.Read(expectedText)
|
|
|
|
common.Must(err)
|
2016-12-07 11:32:40 -05:00
|
|
|
|
|
|
|
buffer := make([]byte, 512)
|
2016-12-08 05:08:46 -05:00
|
|
|
b := fnvAuth.Seal(buffer[:0], nil, expectedText, nil)
|
2017-07-25 16:28:48 -04:00
|
|
|
b, err = fnvAuth.Open(buffer[:0], nil, b, nil)
|
2019-02-01 08:38:14 -05:00
|
|
|
common.Must(err)
|
|
|
|
if r := cmp.Diff(b, expectedText); r != "" {
|
|
|
|
t.Error(r)
|
|
|
|
}
|
2016-12-07 11:32:40 -05:00
|
|
|
}
|