21 lines
490 B
Go
21 lines
490 B
Go
package frame
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAuthenticationAckFrame(t *testing.T) {
|
|
f := NewAuthenticationRespFrame(false, "aabbcc")
|
|
|
|
bytes := f.Encode()
|
|
assert.Equal(t, []byte{0x91, 0xb, 0x12, 0x1, 0x0, 0x13, 0x6, 0x61, 0x61, 0x62, 0x62, 0x63, 0x63}, bytes)
|
|
|
|
got, err := DecodeToAuthenticationRespFrame(bytes)
|
|
assert.Equal(t, f, got)
|
|
assert.NoError(t, err)
|
|
assert.EqualValues(t, false, f.OK())
|
|
assert.EqualValues(t, "aabbcc", f.Reason())
|
|
}
|