27 lines
516 B
Go
27 lines
516 B
Go
package test
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestSplit(t *testing.T) {
|
|
drive_id := "/123/456"
|
|
strs := strings.Split(drive_id, "/")
|
|
fmt.Println(strs)
|
|
}
|
|
|
|
func TestPassword(t *testing.T) {
|
|
fullName:="hello.password-xhf"
|
|
index:=strings.Index(fullName,".password-")
|
|
name:=fullName[:index]
|
|
password:=fullName[index+10:]
|
|
fmt.Printf("name:%s, password:%s\n",name,password)
|
|
}
|
|
|
|
func TestDir(t *testing.T) {
|
|
dir,file:=filepath.Split("/root/")
|
|
fmt.Printf("dir:%s\nfile:%s\n",dir,file)
|
|
} |