File: match_test.go

package info (click to toggle)
golang-github-google-nftables 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 756 kB
  • sloc: makefile: 8
file content (56 lines) | stat: -rw-r--r-- 1,193 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package expr

import (
	"encoding/binary"
	"reflect"
	"testing"

	"github.com/google/nftables/xt"
	"github.com/mdlayher/netlink"
	"golang.org/x/sys/unix"
)

func TestMatch(t *testing.T) {
	t.Parallel()
	payload := xt.Unknown([]byte{0xb0, 0x1d, 0xca, 0xfe, 0x00})
	tests := []struct {
		name string
		mtch Match
	}{
		{
			name: "Unmarshal Target case",
			mtch: Match{
				Name: "foobar",
				Rev:  1234567890,
				Info: &payload,
			},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			ntgt := Match{}
			data, err := tt.mtch.marshal(0 /* don't care in this test */)
			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 {
					if err := ntgt.unmarshal(0 /* don't care in this test */, ad.Bytes()); err != nil {
						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)
			}
		})
	}
}