Files
EdgeNode/internal/iplibrary/action_iptables_test.go

70 lines
1.4 KiB
Go
Raw Permalink Normal View History

2021-02-06 17:34:33 +08:00
package iplibrary
import (
2024-07-27 15:42:50 +08:00
"testing"
"time"
2021-02-06 17:34:33 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
2024-01-21 11:13:30 +08:00
executils "github.com/TeaOSLab/EdgeNode/internal/utils/exec"
2021-02-06 17:34:33 +08:00
)
func TestIPTablesAction_AddItem(t *testing.T) {
2024-01-21 11:13:30 +08:00
_, lookupErr := executils.LookPath("iptables")
if lookupErr != nil {
return
}
var action = NewIPTablesAction()
2021-02-06 17:34:33 +08:00
action.config = &firewallconfigs.FirewallActionIPTablesConfig{
Path: "/usr/bin/iptables",
}
{
err := action.AddItem(IPListTypeWhite, &pb.IPItem{
Type: "ipv4",
Id: 1,
IpFrom: "192.168.1.100",
ExpiredAt: time.Now().Unix() + 30,
})
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}
{
err := action.AddItem(IPListTypeBlack, &pb.IPItem{
Type: "ipv4",
Id: 1,
IpFrom: "192.168.1.100",
ExpiredAt: time.Now().Unix() + 30,
})
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}
}
func TestIPTablesAction_DeleteItem(t *testing.T) {
2024-01-21 11:13:30 +08:00
_, lookupErr := executils.LookPath("firewalld")
if lookupErr != nil {
return
}
var action = NewIPTablesAction()
2021-02-06 17:34:33 +08:00
action.config = &firewallconfigs.FirewallActionIPTablesConfig{
Path: "/usr/bin/firewalld",
}
err := action.DeleteItem(IPListTypeWhite, &pb.IPItem{
Type: "ipv4",
Id: 1,
IpFrom: "192.168.1.100",
ExpiredAt: time.Now().Unix() + 30,
})
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}