123456789101112131415161718192021222324 |
- package sarama
- import "testing"
- var (
- saslHandshakeResponse = []byte{
- 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01,
- 0x00, 0x03, 'f', 'o', 'o',
- }
- )
- func TestSaslHandshakeResponse(t *testing.T) {
- var response *SaslHandshakeResponse
- response = new(SaslHandshakeResponse)
- testVersionDecodable(t, "no error", response, saslHandshakeResponse, 0)
- if response.Err != ErrNoError {
- t.Error("Decoding error failed: no error expected but found", response.Err)
- }
- if response.EnabledMechanisms[0] != "foo" {
- t.Error("Decoding error failed: expected 'foo' but found", response.EnabledMechanisms)
- }
- }
|