Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package encoding_test
 
import (
    "testing"
 
    "github.com/google/go-cmp/cmp"
    "github.com/stretchr/testify/assert"
 
    "github.com/v2fly/v2ray-core/v5/common"
    "github.com/v2fly/v2ray-core/v5/common/buf"
    "github.com/v2fly/v2ray-core/v5/common/protocol"
    "github.com/v2fly/v2ray-core/v5/common/uuid"
    . "github.com/v2fly/v2ray-core/v5/proxy/vmess/encoding"
)
 
func TestSwitchAccount(t *testing.T) {
    sa := &protocol.CommandSwitchAccount{
        Port:     1234,
        ID:       uuid.New(),
        AlterIds: 1024,
        Level:    128,
        ValidMin: 16,
    }
 
    buffer := buf.New()
    common.Must(MarshalCommand(sa, buffer))
 
    cmd, err := UnmarshalCommand(1, buffer.BytesFrom(2))
    common.Must(err)
 
    sa2, ok := cmd.(*protocol.CommandSwitchAccount)
    if !ok {
        t.Fatal("failed to convert command to CommandSwitchAccount")
    }
    if r := cmp.Diff(sa2, sa); r != "" {
        t.Error(r)
    }
}
 
func TestSwitchAccountBugOffByOne(t *testing.T) {
    sa := &protocol.CommandSwitchAccount{
        Port:     1234,
        ID:       uuid.New(),
        AlterIds: 1024,
        Level:    128,
        ValidMin: 16,
    }
 
    buffer := buf.New()
    csaf := CommandSwitchAccountFactory{}
    common.Must(csaf.Marshal(sa, buffer))
 
    Payload := buffer.Bytes()
 
    cmd, err := csaf.Unmarshal(Payload[:len(Payload)-1])
    assert.Error(t, err)
    assert.Nil(t, cmd)
}