policy: reject unsupported fields (#2764)
This commit is contained in:
parent
1b1c989268
commit
2938d03878
10 changed files with 1177 additions and 133 deletions
|
|
@ -1885,7 +1885,7 @@ func TestPolicyBrokenConfigCommand(t *testing.T) {
|
|||
policyFilePath,
|
||||
},
|
||||
)
|
||||
assert.ErrorContains(t, err, "compiling filter rules: invalid action")
|
||||
assert.ErrorContains(t, err, `invalid action "unknown-action"`)
|
||||
|
||||
// The new policy was invalid, the old one should still be in place, which
|
||||
// is none.
|
||||
|
|
|
|||
|
|
@ -1481,7 +1481,7 @@ func TestSubnetRouteACL(t *testing.T) {
|
|||
wantClientFilter := []filter.Match{
|
||||
{
|
||||
IPProto: views.SliceOf([]ipproto.Proto{
|
||||
ipproto.TCP, ipproto.UDP, ipproto.ICMPv4, ipproto.ICMPv6,
|
||||
ipproto.TCP, ipproto.UDP,
|
||||
}),
|
||||
Srcs: []netip.Prefix{
|
||||
netip.MustParsePrefix("100.64.0.1/32"),
|
||||
|
|
@ -1513,7 +1513,7 @@ func TestSubnetRouteACL(t *testing.T) {
|
|||
wantSubnetFilter := []filter.Match{
|
||||
{
|
||||
IPProto: views.SliceOf([]ipproto.Proto{
|
||||
ipproto.TCP, ipproto.UDP, ipproto.ICMPv4, ipproto.ICMPv6,
|
||||
ipproto.TCP, ipproto.UDP,
|
||||
}),
|
||||
Srcs: []netip.Prefix{
|
||||
netip.MustParsePrefix("100.64.0.1/32"),
|
||||
|
|
@ -1535,7 +1535,7 @@ func TestSubnetRouteACL(t *testing.T) {
|
|||
},
|
||||
{
|
||||
IPProto: views.SliceOf([]ipproto.Proto{
|
||||
ipproto.TCP, ipproto.UDP, ipproto.ICMPv4, ipproto.ICMPv6,
|
||||
ipproto.TCP, ipproto.UDP,
|
||||
}),
|
||||
Srcs: []netip.Prefix{
|
||||
netip.MustParsePrefix("100.64.0.1/32"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue