mirror of
https://github.com/zu1k/nali.git
synced 2025-01-22 21:29:02 +08:00
24 lines
387 B
Go
24 lines
387 B
Go
package re
|
||
|
||
import (
|
||
"fmt"
|
||
"testing"
|
||
)
|
||
|
||
var domainList = []string{
|
||
"a.a.qiniudns.com",
|
||
"a.com.qiniudns.com",
|
||
"a.com.cn.qiniudns.com",
|
||
"看这里:a.com.cn.qiniudns.com行不行",
|
||
}
|
||
|
||
func TestDomainRe(t *testing.T) {
|
||
for _, domain := range domainList {
|
||
if !DomainRe.MatchString(domain) {
|
||
t.Error(domain)
|
||
t.Fail()
|
||
}
|
||
fmt.Println(DomainRe.FindAllString(domain, -1))
|
||
}
|
||
}
|