mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-21 23:53:14 +01:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package test
|
|
|
|
import (
|
|
"net/netip"
|
|
|
|
firewall "github.com/netbirdio/netbird/client/firewall/manager"
|
|
)
|
|
|
|
var (
|
|
InsertRuleTestCases = []struct {
|
|
Name string
|
|
InputPair firewall.RouterPair
|
|
}{
|
|
{
|
|
Name: "Insert Forwarding IPV4 Rule",
|
|
InputPair: firewall.RouterPair{
|
|
ID: "zxa",
|
|
Source: netip.MustParsePrefix("100.100.100.1/32"),
|
|
Destination: netip.MustParsePrefix("100.100.200.0/24"),
|
|
Masquerade: false,
|
|
},
|
|
},
|
|
{
|
|
Name: "Insert Forwarding And Nat IPV4 Rules",
|
|
InputPair: firewall.RouterPair{
|
|
ID: "zxa",
|
|
Source: netip.MustParsePrefix("100.100.100.1/32"),
|
|
Destination: netip.MustParsePrefix("100.100.200.0/24"),
|
|
Masquerade: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
RemoveRuleTestCases = []struct {
|
|
Name string
|
|
InputPair firewall.RouterPair
|
|
IpVersion string
|
|
}{
|
|
{
|
|
Name: "Remove Forwarding And Nat IPV4 Rules",
|
|
InputPair: firewall.RouterPair{
|
|
ID: "zxa",
|
|
Source: netip.MustParsePrefix("100.100.100.1/32"),
|
|
Destination: netip.MustParsePrefix("100.100.200.0/24"),
|
|
Masquerade: true,
|
|
},
|
|
},
|
|
}
|
|
)
|