| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package json
- import (
- "testing"
- v2net "github.com/v2ray/v2ray-core/common/net"
- v2nettesting "github.com/v2ray/v2ray-core/common/net/testing"
- "github.com/v2ray/v2ray-core/testing/unit"
- )
- func TestDomainMatching(t *testing.T) {
- assert := unit.Assert(t)
- rule := &FieldRule{
- Domain: "v2ray.com",
- }
- dest := v2net.NewTCPDestination(v2net.DomainAddress("www.v2ray.com", 80))
- assert.Bool(rule.Apply(dest)).IsTrue()
- }
- func TestPortMatching(t *testing.T) {
- assert := unit.Assert(t)
- rule := &FieldRule{
- Port: &v2nettesting.PortRange{
- FromValue: 0,
- ToValue: 100,
- },
- }
- dest := v2net.NewTCPDestination(v2net.DomainAddress("www.v2ray.com", 80))
- assert.Bool(rule.Apply(dest)).IsTrue()
- }
- func TestIPMatching(t *testing.T) {
- assert := unit.Assert(t)
- rawJson := `{
- "type": "field",
- "ip": "10.0.0.0/8",
- "tag": "test"
- }`
- rule := parseRule([]byte(rawJson))
- dest := v2net.NewTCPDestination(v2net.IPAddress([]byte{10, 0, 0, 1}, 80))
- assert.Bool(rule.Apply(dest)).IsTrue()
- }
- func TestPortNotMatching(t *testing.T) {
- assert := unit.Assert(t)
- rawJson := `{
- "type": "field",
- "port": "80-100",
- "tag": "test"
- }`
- rule := parseRule([]byte(rawJson))
- dest := v2net.NewTCPDestination(v2net.IPAddress([]byte{10, 0, 0, 1}, 79))
- assert.Bool(rule.Apply(dest)).IsFalse()
- }
- func TestDomainNotMatching(t *testing.T) {
- assert := unit.Assert(t)
- rawJson := `{
- "type": "field",
- "domain": "google.com",
- "tag": "test"
- }`
- rule := parseRule([]byte(rawJson))
- dest := v2net.NewTCPDestination(v2net.IPAddress([]byte{10, 0, 0, 1}, 79))
- assert.Bool(rule.Apply(dest)).IsFalse()
- }
|