Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package kcp_test
 
import (
    "testing"
 
    "github.com/google/go-cmp/cmp"
 
    "github.com/v2fly/v2ray-core/v5/common"
    . "github.com/v2fly/v2ray-core/v5/transport/internet/kcp"
)
 
func TestSimpleAuthenticator(t *testing.T) {
    cache := make([]byte, 512)
 
    payload := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}
 
    auth := NewSimpleAuthenticator()
    b := auth.Seal(cache[:0], nil, payload, nil)
    c, err := auth.Open(cache[:0], nil, b, nil)
    common.Must(err)
    if r := cmp.Diff(c, payload); r != "" {
        t.Error(r)
    }
}
 
func TestSimpleAuthenticator2(t *testing.T) {
    cache := make([]byte, 512)
 
    payload := []byte{'a', 'b'}
 
    auth := NewSimpleAuthenticator()
    b := auth.Seal(cache[:0], nil, payload, nil)
    c, err := auth.Open(cache[:0], nil, b, nil)
    common.Must(err)
    if r := cmp.Diff(c, payload); r != "" {
        t.Error(r)
    }
}