Skip to content

Commit

Permalink
add collection ut (#570)
Browse files Browse the repository at this point in the history
add 1.2.0 change log (#567)

* add 1.2.0 change log

Co-authored-by: Yuecai Liu <38887641+luky116@users.noreply.github.com>
  • Loading branch information
jasondeng1997 and luky116 committed Jun 5, 2023
1 parent 12a63fa commit 456373f
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions pkg/util/collection/collection_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package collection

import (
"reflect"
"testing"
)

func TestEncodeDecodeMap(t *testing.T) {
testCases := []struct {
name string
dataMap map[string]string
expected map[string]string
}{
{
name: "test case 1",
dataMap: map[string]string{
"key1": "value1",
"key2": "value2",
},
expected: map[string]string{
"key1": "value1",
"key2": "value2",
},
},
{
name: "test case 2",
dataMap: nil,
expected: nil,
},
}

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
encoded := EncodeMap(tc.dataMap)
decoded := DecodeMap(encoded)

if !reflect.DeepEqual(decoded, tc.expected) {
t.Errorf("DecodeMap(%v) = %v, expected %v", encoded, decoded, tc.expected)
}
})
}
}

0 comments on commit 456373f

Please sign in to comment.