Apply .gitignore rules

This commit is contained in:
皮蛋13361098506
2025-01-06 16:21:36 +08:00
parent 1b77f62820
commit ccd2c530cf
580 changed files with 69806 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
package xmlUtil
import (
"fmt"
"strings"
"testing"
)
// 测试从文件加载
func TestLoadFromFile(t *testing.T) {
root, errMsg := LoadFromFile("sample.xml")
if errMsg != nil {
t.Error("文件加载失败:", errMsg)
t.Fail()
return
}
node := root.SelectElement("html/head/title")
if node == nil {
t.Error("读取节点失败:", "html/head/title")
}
fmt.Println("节点值:", strings.TrimSpace(node.InnerText()))
}
// 测试从字符串加载
func TestLoadFromString(t *testing.T) {
var xml string = `
<html lang="en">
<head>
<title>Hello</title>
<meta name="language" content="en"/>
</head>
<body>
<h1> This is a H1 </h1>
<ul>
<li><a id="1" href="/">Home</a></li>
<li><a id="2" href="/about">about</a></li>
<li><a id="3" href="/account">login</a></li>
<li></li>
</ul>
<p>
Hello,This is an example for gxpath.
</p>
<footer>footer script</footer>
</body>
</html>
`
root, errMsg := LoadFromString(xml)
if errMsg != nil {
t.Error("文件加载失败:", errMsg)
t.Fail()
return
}
node := root.SelectElement("html/head/title")
if node == nil {
t.Error("读取节点失败:", "html/head/title")
}
fmt.Println("节点值:", strings.TrimSpace(node.InnerText()))
}

View File

@@ -0,0 +1,29 @@
package timeUtil
import (
"fmt"
"testing"
"time"
)
func TestFormat(t *testing.T) {
now := time.Date(2015, 9, 11, 10, 10, 10, 0, time.Local)
expectedString := "2015/09/11"
result := Format(now, "yyyy/MM/dd")
if result != expectedString {
t.Errorf("Format Error, expected %s, Got %s", expectedString, result)
}
expectedString = "2015-09-11 %d:%s:%d"
minutes := ""
if now.Minute() >= 10 {
minutes = fmt.Sprintf("%d", now.Minute())
} else {
minutes = fmt.Sprintf("0%d", now.Minute())
}
expectedString = fmt.Sprintf(expectedString, now.Hour(), minutes, now.Second())
result = Format(now, "yyyy-MM-dd HH:mm:ss")
if result != expectedString {
t.Errorf("Format Error, expected %s, Got %s", expectedString, result)
}
}