aboutsummaryrefslogtreecommitdiff
path: root/hotline/user_test.go
blob: 24290096db87ae6f26f26b69aefc8f7ab7380584 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package hotline

import (
	"bytes"
	"github.com/stretchr/testify/assert"
	"testing"
)

func TestReadUser(t *testing.T) {
	type args struct {
		b []byte
	}
	tests := []struct {
		name    string
		args    args
		want    *User
		wantErr bool
	}{
		{
			name: "returns expected User struct",
			args: args{
				b: []byte{
					0x00, 0x01,
					0x07, 0xd0,
					0x00, 0x01,
					0x00, 0x03,
					0x61, 0x61, 0x61,
				},
			},
			want: &User{
				ID: [2]byte{
					0x00, 0x01,
				},
				Icon: []byte{
					0x07, 0xd0,
				},
				Flags: []byte{
					0x00, 0x01,
				},
				Name: "aaa",
			},
			wantErr: false,
		},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			var user User
			_, err := user.Write(tt.args.b)
			if (err != nil) != tt.wantErr {
				t.Errorf("ReadUser() error = %v, wantErr %v", err, tt.wantErr)
				return
			}
			if !assert.Equal(t, tt.want, &user) {
				t.Errorf("ReadUser() got = %v, want %v", user, tt.want)
			}
		})
	}
}

func TestNegatedUserString(t *testing.T) {
	type args struct {
		encodedString []byte
	}
	tests := []struct {
		name string
		args args
		want []byte
	}{
		{
			name: "encodes bytes to expected string",
			args: args{
				encodedString: []byte("guest"),
			},
			want: []byte{0x98, 0x8a, 0x9a, 0x8c, 0x8b},
		},
		{
			name: "encodes bytes with numerals to expected string",
			args: args{
				encodedString: []byte("foo1"),
			},
			want: []byte{0x99, 0x90, 0x90, 0xce},
		},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := EncodeString(tt.args.encodedString); !bytes.Equal(got, tt.want) {
				t.Errorf("NegatedUserString() = %x, want %x", got, tt.want)
			}
		})
	}
}