1 Star 0 Fork 0

皮豪/pilib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pack_test.go 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
皮豪 提交于 2024-03-30 08:26 . init
package pglib
import (
"log"
"os/exec"
"testing"
"github.com/spf13/viper"
"github.com/stretchr/testify/assert"
)
func TestPkg(t *testing.T) {
// viper.SetDefault()
}
func TestViper(t *testing.T) {
v := viper.New()
v.SetConfigName("config")
v.SetConfigType("toml")
v.SetConfigFile("testpkg/pkg.toml")
err := v.ReadInConfig()
if err != nil {
panic(err)
}
Conf := Config{}
if err := v.Unmarshal(&Conf); err != nil {
log.Fatal(err, "Unmarshal")
}
log.Print(v.Get("PkgConfig.Name"))
log.Printf("%+v", Conf)
}
func TestLoadConfigFile(t *testing.T) {
t.Run("test load config File", func(t *testing.T) {
a := assert.New(t)
cfg, err := LoadPackageConfig("./testpkg/pkg.toml")
if err != nil {
t.Fatal(err)
}
if a.NotNil(cfg, "config never load nil") {
t.Logf("load config succeed! \n%+v", cfg)
}
})
}
func TestCmd(t *testing.T) {
bs, _ := exec.Command("ls").Output()
log.Printf("\n%s", bs)
}
func TestPack(t *testing.T) {
cfg, _ := LoadPackageConfig("./testpkg/pkg.toml")
PackPkg(cfg, "testpkg")
}
func TestPackPiguardPakcage(t *testing.T) {
a := assert.New(t)
err := PackPiguardPackage("./ggg")
a.Nil(err, "package exception", err)
}
func TestUnpackPkg(t *testing.T) {
UnpackPkg("./ggg.pkg", "./gg123")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pphboy/pilib.git
git@gitee.com:pphboy/pilib.git
pphboy
pilib
pilib
master

搜索帮助