mirror of
https://github.com/nxtrace/nali
synced 2024-11-23 02:38:11 +00:00
6bc863cc69
Signed-off-by: zu1k <i@lgf.im>
16 lines
372 B
Go
16 lines
372 B
Go
package entity
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestParse(t *testing.T) {
|
|
fmt.Println(ParseLine("2001:0db8:85a3:0000:0000:8a2e:0370:7334 baidu.com 1.2.3.4 baidu.com"))
|
|
fmt.Println(ParseLine("a.cn.b.com.c.org d.com"))
|
|
}
|
|
|
|
func TestColorPrint(t *testing.T) {
|
|
fmt.Println(ParseLine("2001:0db8:85a3:0000:0000:8a2e:0370:7334 baidu.com 1.2.3.4 baidu.com").ColorString())
|
|
}
|