12345678910111213141516171819202122 |
- package sarama
- import "testing"
- var (
- saslHandshakeResponse = []byte{
- 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x01,
- 0x00, 0x03, 'f', 'o', 'o',
- }
- )
- func TestSaslHandshakeResponse(t *testing.T) {
- 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)
- }
- }
|