2020-01-25 17:43:02 +00:00
|
|
|
package utils
|
2015-02-03 12:32:18 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestHostDomainAndIP(t *testing.T) {
|
|
|
|
Convey("Test Host File Domain and IP regex", t, func() {
|
|
|
|
Convey("1.1.1.1 should be IP and not domain", func() {
|
2021-04-15 05:04:58 +00:00
|
|
|
So(IsIP("1.1.1.1"), ShouldEqual, true)
|
|
|
|
So(IsDomain("1.1.1.1"), ShouldEqual, false)
|
2015-02-03 12:32:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Convey("2001:470:20::2 should be IP and not domain", func() {
|
2021-04-15 05:04:58 +00:00
|
|
|
So(IsIP("2001:470:20::2"), ShouldEqual, true)
|
|
|
|
So(IsDomain("2001:470:20::2"), ShouldEqual, false)
|
2015-02-03 12:32:18 +00:00
|
|
|
})
|
|
|
|
|
2015-10-13 10:12:09 +00:00
|
|
|
Convey("`host` should not be domain and not IP", func() {
|
2021-04-15 05:04:58 +00:00
|
|
|
So(IsDomain("host"), ShouldEqual, false)
|
|
|
|
So(IsIP("host"), ShouldEqual, false)
|
2015-02-03 12:32:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Convey("`123.test` should be domain and not IP", func() {
|
2021-04-15 05:04:58 +00:00
|
|
|
So(IsDomain("123.test"), ShouldEqual, true)
|
|
|
|
So(IsIP("123.test"), ShouldEqual, false)
|
2015-02-03 12:32:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|