Fetch the repository succeeded.
This action will force synchronization from Ascend/mind-cluster, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/* Copyright(C) 2023. Huawei Technologies Co.,Ltd. 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.
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 utils provides the util func
package utils
import (
"testing"
"github.com/smartystreets/goconvey/convey"
)
const byteLength = 32
func TestReplacePrefix(t *testing.T) {
convey.Convey("relative path", t, func() {
path := ReplacePrefix("./testdata/cert/ca.crt", "****")
convey.So(path, convey.ShouldEqual, "****testdata/cert/ca.crt")
})
convey.Convey("abconvey.Solute path", t, func() {
path := ReplacePrefix("/testdata/cert/ca.crt", "****")
convey.So(path, convey.ShouldEqual, "****estdata/cert/ca.crt")
})
convey.Convey("path length less than 2", t, func() {
path := ReplacePrefix("/", "****")
convey.So(path, convey.ShouldEqual, "****")
})
convey.Convey("empty string", t, func() {
path := ReplacePrefix("", "****")
convey.So(path, convey.ShouldEqual, "****")
})
}
func TestMaskPrefix(t *testing.T) {
convey.Convey("relative path", t, func() {
path := MaskPrefix("./testdata/cert/ca.crt")
convey.So(path, convey.ShouldEqual, "****testdata/cert/ca.crt")
})
convey.Convey("abconvey.Solute path", t, func() {
path := MaskPrefix("/testdata/cert/ca.crt")
convey.So(path, convey.ShouldEqual, "****estdata/cert/ca.crt")
})
convey.Convey("path length less than 2", t, func() {
path := MaskPrefix("/")
convey.So(path, convey.ShouldEqual, "****")
})
convey.Convey("empty string", t, func() {
path := MaskPrefix("")
convey.So(path, convey.ShouldEqual, "****")
})
}
func TestGetSha256Code(t *testing.T) {
convey.Convey("test sha256", t, func() {
hashs := GetSha256Code([]byte("this is a test sentence"))
convey.So(len(hashs), convey.ShouldEqual, byteLength)
})
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。