hysteria/extras/outbounds/acl/parse_test.go
2023-08-13 22:04:21 -07:00

70 lines
1.5 KiB
Go

package acl
import (
"reflect"
"testing"
)
func TestParseTextRules(t *testing.T) {
tests := []struct {
name string
text string
want []TextRule
wantErr bool
}{
{
name: "empty",
text: "",
want: []TextRule{},
wantErr: false,
},
{
name: "ok",
text: `
# just a comment
# another comment
direct(1.1.1.1)
direct(8.8.8.0/24)
reject(all, udp/443) # inline comment
reject(geoip:cn)
reject(*.v2ex.com)
my_custom_outbound1(9.9.9.9,*, 8.8.8.8) # bebop
my_custom_outbound2(all)
`,
want: []TextRule{
{Outbound: "direct", Address: "1.1.1.1"},
{Outbound: "direct", Address: "8.8.8.0/24"},
{Outbound: "reject", Address: "all", ProtoPort: "udp/443"},
{Outbound: "reject", Address: "geoip:cn"},
{Outbound: "reject", Address: "*.v2ex.com"},
{Outbound: "my_custom_outbound1", Address: "9.9.9.9", ProtoPort: "*", HijackAddress: "8.8.8.8"},
{Outbound: "my_custom_outbound2", Address: "all"},
},
wantErr: false,
},
{
name: "fail 1",
text: `boom()`,
want: nil,
wantErr: true,
},
{
name: "fail 2",
text: `lol(1,1,1,1)`,
want: nil,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := ParseTextRules(tt.text)
if (err != nil) != tt.wantErr {
t.Errorf("ParseTextRules() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParseTextRules() got = %v, want %v", got, tt.want)
}
})
}
}