2023-01-13 19:36:10 +08:00
|
|
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
|
|
|
|
|
|
|
|
package firewallconfigs_test
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"fmt"
|
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
|
|
|
|
|
|
"strings"
|
|
|
|
|
|
"testing"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
func TestRuleCheckpoint_Markdown(t *testing.T) {
|
|
|
|
|
|
var result = []string{}
|
|
|
|
|
|
for _, def := range firewallconfigs.AllCheckpoints {
|
|
|
|
|
|
def.Description = strings.ReplaceAll(def.Description, "<code-label>", "`")
|
|
|
|
|
|
def.Description = strings.ReplaceAll(def.Description, "</code-label>", "`")
|
|
|
|
|
|
|
|
|
|
|
|
var row = "## " + def.Name + "\n"
|
|
|
|
|
|
row += "* 名称:" + def.Name + "\n"
|
|
|
|
|
|
row += "* 代号:`${" + def.Prefix + "}`\n"
|
|
|
|
|
|
row += "* 描述:" + def.Description + "\n"
|
2023-12-24 10:03:01 +08:00
|
|
|
|
if len(def.Version) > 0 {
|
|
|
|
|
|
row += "* 版本:v" + def.Version + "\n"
|
|
|
|
|
|
}
|
2023-01-13 19:36:10 +08:00
|
|
|
|
result = append(result, row)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fmt.Print(strings.Join(result, "\n") + "\n")
|
|
|
|
|
|
}
|