mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
35 lines
911 B
Go
35 lines
911 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gcompress_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/encoding/gcompress"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
)
|
|
|
|
func Test_Zlib_UnZlib(t *testing.T) {
|
|
gtest.C(t, func(t *gtest.T) {
|
|
src := "hello, world\n"
|
|
dst := []byte{120, 156, 202, 72, 205, 201, 201, 215, 81, 40, 207, 47, 202, 73, 225, 2, 4, 0, 0, 255, 255, 33, 231, 4, 147}
|
|
data, _ := gcompress.Zlib([]byte(src))
|
|
t.Assert(data, dst)
|
|
|
|
data, _ = gcompress.UnZlib(dst)
|
|
t.Assert(data, []byte(src))
|
|
|
|
data, _ = gcompress.Zlib(nil)
|
|
t.Assert(data, nil)
|
|
data, _ = gcompress.UnZlib(nil)
|
|
t.Assert(data, nil)
|
|
|
|
data, _ = gcompress.UnZlib(dst[1:])
|
|
t.Assert(data, nil)
|
|
})
|
|
}
|