/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
internal/utils/utils_z_unit_test.go
73 строки
2 KB
John Guo
fix issue #1662
11 мар 2022, 05:24
11 мар 2022, 05:24
d8d9996
Код
Авторство
О чём код?
// 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 utils_test import ( "io/ioutil" "testing" "github.com/gogf/gf/v2/internal/utils" "github.com/gogf/gf/v2/test/gtest" ) func Test_ReadCloser(t *testing.T) { gtest.C(t, func(t *gtest.T) { var ( n int b = make([]byte, 3) body = utils.NewReadCloser([]byte{1, 2, 3, 4}, false) ) n, _ = body.Read(b) t.Assert(b[:n], []byte{1, 2, 3}) n, _ = body.Read(b) t.Assert(b[:n], []byte{4}) n, _ = body.Read(b) t.Assert(b[:n], []byte{}) n, _ = body.Read(b) t.Assert(b[:n], []byte{}) }) gtest.C(t, func(t *gtest.T) { var ( r []byte body = utils.NewReadCloser([]byte{1, 2, 3, 4}, false) ) r, _ = ioutil.ReadAll(body) t.Assert(r, []byte{1, 2, 3, 4}) r, _ = ioutil.ReadAll(body) t.Assert(r, []byte{}) }) gtest.C(t, func(t *gtest.T) { var ( n int r []byte b = make([]byte, 3) body = utils.NewReadCloser([]byte{1, 2, 3, 4}, true) ) n, _ = body.Read(b) t.Assert(b[:n], []byte{1, 2, 3}) n, _ = body.Read(b) t.Assert(b[:n], []byte{4}) n, _ = body.Read(b) t.Assert(b[:n], []byte{1, 2, 3}) n, _ = body.Read(b) t.Assert(b[:n], []byte{4}) r, _ = ioutil.ReadAll(body) t.Assert(r, []byte{1, 2, 3, 4}) r, _ = ioutil.ReadAll(body) t.Assert(r, []byte{1, 2, 3, 4}) }) } func Test_RemoveSymbols(t *testing.T) { gtest.C(t, func(t *gtest.T) { t.Assert(utils.RemoveSymbols(`-a-b._a c1!@#$%^&*()_+:";'.,'01`), `abac101`) t.Assert(utils.RemoveSymbols(`-a-b我._a c1!@#$%^&*是()_+:帅";'.,哥'01`), `ab我ac1是帅哥01`) }) }