2022-05-12 10:33:22 -05:00
|
|
|
package expr
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/binary"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2022-05-14 11:49:27 -05:00
|
|
|
"github.com/google/nftables/xt"
|
2022-05-12 10:33:22 -05:00
|
|
|
"github.com/mdlayher/netlink"
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMatch(t *testing.T) {
|
|
|
|
t.Parallel()
|
2022-05-14 11:49:27 -05:00
|
|
|
payload := xt.Unknown([]byte{0xb0, 0x1d, 0xca, 0xfe, 0x00})
|
2022-05-12 10:33:22 -05:00
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
mtch Match
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "Unmarshal Target case",
|
|
|
|
mtch: Match{
|
|
|
|
Name: "foobar",
|
|
|
|
Rev: 1234567890,
|
2022-05-14 11:49:27 -05:00
|
|
|
Info: &payload,
|
2022-05-12 10:33:22 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
ntgt := Match{}
|
2022-05-14 11:45:18 -05:00
|
|
|
data, err := tt.mtch.marshal(0 /* don't care in this test */)
|
2022-05-12 10:33:22 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("marshal error: %+v", err)
|
|
|
|
|
|
|
|
}
|
|
|
|
ad, err := netlink.NewAttributeDecoder(data)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("NewAttributeDecoder() error: %+v", err)
|
|
|
|
}
|
|
|
|
ad.ByteOrder = binary.BigEndian
|
|
|
|
for ad.Next() {
|
|
|
|
if ad.Type() == unix.NFTA_EXPR_DATA {
|
2022-05-14 11:45:18 -05:00
|
|
|
if err := ntgt.unmarshal(0 /* don't care in this test */, ad.Bytes()); err != nil {
|
2022-05-12 10:33:22 -05:00
|
|
|
t.Errorf("unmarshal error: %+v", err)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(tt.mtch, ntgt) {
|
|
|
|
t.Fatalf("original %+v and recovered %+v Match structs are different", tt.mtch, ntgt)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|