mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
62 lines
2.5 KiB
Go
62 lines
2.5 KiB
Go
// Copyright 2019 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// go test *.go -bench=".*"
|
|
|
|
package gstr_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/test/gtest"
|
|
"github.com/gogf/gf/text/gstr"
|
|
)
|
|
|
|
func Test_IsSubDomain(t *testing.T) {
|
|
gtest.Case(t, func() {
|
|
main := "goframe.org"
|
|
gtest.Assert(gstr.IsSubDomain("goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org:8080", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.johng.cn", main), false)
|
|
})
|
|
gtest.Case(t, func() {
|
|
main := "*.goframe.org"
|
|
gtest.Assert(gstr.IsSubDomain("goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.goframe.org:80", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.johng.cn", main), false)
|
|
})
|
|
gtest.Case(t, func() {
|
|
main := "*.*.goframe.org"
|
|
gtest.Assert(gstr.IsSubDomain("goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org:8000", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.s.goframe.org", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.johng.cn", main), false)
|
|
})
|
|
gtest.Case(t, func() {
|
|
main := "*.*.goframe.org:8080"
|
|
gtest.Assert(gstr.IsSubDomain("goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.goframe.org:8000", main), true)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.s.goframe.org", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.johng.cn", main), false)
|
|
gtest.Assert(gstr.IsSubDomain("s.s.johng.cn", main), false)
|
|
})
|
|
}
|