mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +08:00
Some checks are pending
Test / test (1.20, macos-13) (push) Waiting to run
Test / test (1.20, macos-latest) (push) Waiting to run
Test / test (1.20, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.20, ubuntu-latest) (push) Waiting to run
Test / test (1.20, windows-latest) (push) Waiting to run
Test / test (1.21, macos-13) (push) Waiting to run
Test / test (1.21, macos-latest) (push) Waiting to run
Test / test (1.21, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.21, ubuntu-latest) (push) Waiting to run
Test / test (1.21, windows-latest) (push) Waiting to run
Test / test (1.22, macos-13) (push) Waiting to run
Test / test (1.22, macos-latest) (push) Waiting to run
Test / test (1.22, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.22, ubuntu-latest) (push) Waiting to run
Test / test (1.22, windows-latest) (push) Waiting to run
Test / test (1.23, macos-13) (push) Waiting to run
Test / test (1.23, macos-latest) (push) Waiting to run
Test / test (1.23, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.23, ubuntu-latest) (push) Waiting to run
Test / test (1.23, windows-latest) (push) Waiting to run
Test / test (1.24, macos-13) (push) Waiting to run
Test / test (1.24, macos-latest) (push) Waiting to run
Test / test (1.24, ubuntu-24.04-arm) (push) Waiting to run
Test / test (1.24, ubuntu-latest) (push) Waiting to run
Test / test (1.24, windows-latest) (push) Waiting to run
Trigger CMFA Update / trigger-CMFA-update (push) Waiting to run
56 lines
1.6 KiB
Go
56 lines
1.6 KiB
Go
package logic_test
|
|
|
|
import (
|
|
// https://github.com/golang/go/wiki/CodeReviewComments#import-dot
|
|
. "github.com/metacubex/mihomo/rules/logic"
|
|
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"github.com/metacubex/mihomo/rules"
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
var ParseRule = rules.ParseRule
|
|
|
|
func TestAND(t *testing.T) {
|
|
and, err := NewAND("((DOMAIN,baidu.com),(NETWORK,TCP),(DST-PORT,10001-65535))", "DIRECT", ParseRule)
|
|
assert.Equal(t, nil, err)
|
|
assert.Equal(t, "DIRECT", and.Adapter())
|
|
m, _ := and.Match(&C.Metadata{
|
|
Host: "baidu.com",
|
|
NetWork: C.TCP,
|
|
DstPort: 20000,
|
|
}, C.RuleMatchHelper{})
|
|
assert.Equal(t, true, m)
|
|
|
|
and, err = NewAND("(DOMAIN,baidu.com),(NETWORK,TCP),(DST-PORT,10001-65535))", "DIRECT", ParseRule)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
and, err = NewAND("((AND,(DOMAIN,baidu.com),(NETWORK,TCP)),(NETWORK,TCP),(DST-PORT,10001-65535))", "DIRECT", ParseRule)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestNOT(t *testing.T) {
|
|
not, err := NewNOT("((DST-PORT,6000-6500))", "REJECT", ParseRule)
|
|
assert.Equal(t, nil, err)
|
|
m, _ := not.Match(&C.Metadata{
|
|
DstPort: 6100,
|
|
}, C.RuleMatchHelper{})
|
|
assert.Equal(t, false, m)
|
|
|
|
_, err = NewNOT("((DST-PORT,5600-6666),(DOMAIN,baidu.com))", "DIRECT", ParseRule)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
_, err = NewNOT("(())", "DIRECT", ParseRule)
|
|
assert.NotEqual(t, nil, err)
|
|
}
|
|
|
|
func TestOR(t *testing.T) {
|
|
or, err := NewOR("((DOMAIN,baidu.com),(NETWORK,TCP),(DST-PORT,10001-65535))", "DIRECT", ParseRule)
|
|
assert.Equal(t, nil, err)
|
|
m, _ := or.Match(&C.Metadata{
|
|
NetWork: C.TCP,
|
|
}, C.RuleMatchHelper{})
|
|
assert.Equal(t, true, m)
|
|
}
|