123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package sarama
- import (
- "testing"
- )
- var (
- describeConfigsResponseEmpty = []byte{
- 0, 0, 0, 0, //throttle
- 0, 0, 0, 0, // no configs
- }
- describeConfigsResponsePopulatedv0 = []byte{
- 0, 0, 0, 0, //throttle
- 0, 0, 0, 1, // response
- 0, 0, //errorcode
- 0, 0, //string
- 2, // topic
- 0, 3, 'f', 'o', 'o',
- 0, 0, 0, 1, //configs
- 0, 10, 's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
- 0, 4, '1', '0', '0', '0',
- 0, // ReadOnly
- 0, // Default
- 0, // Sensitive
- }
- describeConfigsResponsePopulatedv1 = []byte{
- 0, 0, 0, 0, //throttle
- 0, 0, 0, 1, // response
- 0, 0, //errorcode
- 0, 0, //string
- 2, // topic
- 0, 3, 'f', 'o', 'o',
- 0, 0, 0, 1, //configs
- 0, 10, 's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
- 0, 4, '1', '0', '0', '0',
- 0, // ReadOnly
- 4, // Source
- 0, // Sensitive
- 0, 0, 0, 0, // No Synonym
- }
- describeConfigsResponseWithSynonymv1 = []byte{
- 0, 0, 0, 0, //throttle
- 0, 0, 0, 1, // response
- 0, 0, //errorcode
- 0, 0, //string
- 2, // topic
- 0, 3, 'f', 'o', 'o',
- 0, 0, 0, 1, //configs
- 0, 10, 's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
- 0, 4, '1', '0', '0', '0',
- 0, // ReadOnly
- 4, // Source
- 0, // Sensitive
- 0, 0, 0, 1, // 1 Synonym
- 0, 14, 'l', 'o', 'g', '.', 's', 'e', 'g', 'm', 'e', 'n', 't', '.', 'm', 's',
- 0, 4, '1', '0', '0', '0',
- 4, // Source
- }
- )
- func TestDescribeConfigsResponsev0(t *testing.T) {
- var response *DescribeConfigsResponse
- response = &DescribeConfigsResponse{
- Resources: []*ResourceResponse{},
- }
- testVersionDecodable(t, "empty", response, describeConfigsResponseEmpty, 0)
- if len(response.Resources) != 0 {
- t.Error("Expected no groups")
- }
- response = &DescribeConfigsResponse{
- Version: 0, Resources: []*ResourceResponse{
- {
- ErrorCode: 0,
- ErrorMsg: "",
- Type: TopicResource,
- Name: "foo",
- Configs: []*ConfigEntry{
- {
- Name: "segment.ms",
- Value: "1000",
- ReadOnly: false,
- Default: false,
- Sensitive: false,
- },
- },
- },
- },
- }
- testResponse(t, "response with error", response, describeConfigsResponsePopulatedv0)
- }
- func TestDescribeConfigsResponsev1(t *testing.T) {
- var response *DescribeConfigsResponse
- response = &DescribeConfigsResponse{
- Resources: []*ResourceResponse{},
- }
- testVersionDecodable(t, "empty", response, describeConfigsResponseEmpty, 0)
- if len(response.Resources) != 0 {
- t.Error("Expected no groups")
- }
- response = &DescribeConfigsResponse{
- Version: 1,
- Resources: []*ResourceResponse{
- {
- ErrorCode: 0,
- ErrorMsg: "",
- Type: TopicResource,
- Name: "foo",
- Configs: []*ConfigEntry{
- {
- Name: "segment.ms",
- Value: "1000",
- ReadOnly: false,
- Source: SourceStaticBroker,
- Sensitive: false,
- Synonyms: []*ConfigSynonym{},
- },
- },
- },
- },
- }
- testResponse(t, "response with error", response, describeConfigsResponsePopulatedv1)
- }
- func TestDescribeConfigsResponseWithSynonym(t *testing.T) {
- var response *DescribeConfigsResponse
- response = &DescribeConfigsResponse{
- Resources: []*ResourceResponse{},
- }
- testVersionDecodable(t, "empty", response, describeConfigsResponseEmpty, 0)
- if len(response.Resources) != 0 {
- t.Error("Expected no groups")
- }
- response = &DescribeConfigsResponse{
- Version: 1,
- Resources: []*ResourceResponse{
- {
- ErrorCode: 0,
- ErrorMsg: "",
- Type: TopicResource,
- Name: "foo",
- Configs: []*ConfigEntry{
- {
- Name: "segment.ms",
- Value: "1000",
- ReadOnly: false,
- Source: SourceStaticBroker,
- Sensitive: false,
- Synonyms: []*ConfigSynonym{
- {
- ConfigName: "log.segment.ms",
- ConfigValue: "1000",
- Source: SourceStaticBroker,
- },
- },
- },
- },
- },
- },
- }
- testResponse(t, "response with error", response, describeConfigsResponseWithSynonymv1)
- }
|