-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathserializer_test.go
46 lines (36 loc) · 1.46 KB
/
serializer_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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 ionhash
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestEscape(t *testing.T) {
// Null case.
assert.Nil(t, escape(nil))
// Happy cases.
var empty []byte
assert.Equal(t, empty, escape(empty))
bytes := []byte{0x10, 0x11, 0x12, 0x13}
assert.Equal(t, bytes, escape(bytes))
// Escape cases.
assert.Equal(t, []byte{escapeByte, 0x0B}, escape([]byte{0x0B}))
assert.Equal(t, []byte{escapeByte, 0x0E}, escape([]byte{0x0E}))
assert.Equal(t, []byte{escapeByte, 0x0C}, escape([]byte{0x0C}))
assert.Equal(t, []byte{escapeByte, 0x0B, escapeByte, 0x0E, escapeByte, 0x0C}, escape([]byte{0x0B, 0x0E, 0x0C}))
assert.Equal(t, []byte{escapeByte, 0x0C, escapeByte, 0x0C}, escape([]byte{0x0C, 0x0C}))
assert.Equal(t, []byte{escapeByte, 0x0C, 0x10, escapeByte, 0x0C, 0x11, escapeByte, 0x0C, 0x12, escapeByte, 0x0C},
escape([]byte{0x0C, 0x10, 0x0C, 0x11, 0x0C, 0x12, 0x0C}))
}