You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.4 KiB
74 lines
1.4 KiB
package third
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestLogMatch(t *testing.T) {
|
|
|
|
filenames := []string{
|
|
"log1.txt",
|
|
"log2.log",
|
|
"log3.log.txt",
|
|
"log4.log.2022-01-01",
|
|
"log5.log.2022-01-01.txt",
|
|
"log20230918.log",
|
|
"OpenIM.CronTask.log.all.2023-09-18", "OpenIM.log.all.2023-09-18",
|
|
}
|
|
|
|
expected := []string{
|
|
"OpenIM.CronTask.log.all.2023-09-18", "OpenIM.log.all.2023-09-18",
|
|
}
|
|
|
|
var actual []string
|
|
for _, filename := range filenames {
|
|
if checkLogPath(filename) {
|
|
actual = append(actual, filename)
|
|
}
|
|
}
|
|
|
|
if len(actual) != len(expected) {
|
|
t.Errorf("Expected %d matches, but got %d", len(expected), len(actual))
|
|
}
|
|
|
|
for i := range expected {
|
|
if actual[i] != expected[i] {
|
|
t.Errorf("Expected match %d to be %q, but got %q", i, expected[i], actual[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestName(t *testing.T) {
|
|
dir := `C:\Users\openIM\Desktop\testlog`
|
|
|
|
dirs, err := os.ReadDir(dir)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
for _, entry := range dirs {
|
|
if !entry.IsDir() {
|
|
info, err := entry.Info()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(entry.Name(), info.Size(), info.ModTime())
|
|
}
|
|
}
|
|
|
|
if true {
|
|
return
|
|
}
|
|
|
|
files := []string{
|
|
//filepath.Join(dir, "open-im-sdk-core.2023-10-13"),
|
|
filepath.Join(dir, "open-im-sdk-core.2023-11-15"),
|
|
//filepath.Join(dir, "open-im-sdk-core.2023-11-17"),
|
|
}
|
|
|
|
if err := zipFiles(filepath.Join(dir, "test1.zip"), files); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|