增加服务之间拷贝配置的API(开源版本只有定义,没有完全实现)

This commit is contained in:
刘祥超
2023-04-09 16:01:23 +08:00
parent 73164de93e
commit 5a93ec0e32
16 changed files with 434 additions and 238 deletions

View File

@@ -0,0 +1,51 @@
// Copyright 2023 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
package utils_test
import (
"github.com/TeaOSLab/EdgeAPI/internal/utils"
"github.com/iwind/TeaGo/logs"
"testing"
)
func TestJSONClone(t *testing.T) {
type user struct {
Name string
Age int
}
var u = &user{
Name: "Jack",
Age: 20,
}
newU, err := utils.JSONClone[*user](u)
if err != nil {
t.Fatal(err)
}
t.Logf("%#v", newU)
}
func TestJSONClone_Slice(t *testing.T) {
type user struct {
Name string
Age int
}
var u = []*user{
{
Name: "Jack",
Age: 20,
},
{
Name: "Lily",
Age: 18,
},
}
newU, err := utils.JSONClone[[]*user](u)
if err != nil {
t.Fatal(err)
}
logs.PrintAsJSON(newU, t)
}