2019-01-18 01:50:10 +00:00
|
|
|
// Copyright 2019 the Kilo authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package iptables
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var rules = []Rule{
|
2020-03-12 14:48:01 +00:00
|
|
|
NewIPv4Rule("filter", "FORWARD", "-s", "10.4.0.0/16", "-j", "ACCEPT"),
|
|
|
|
NewIPv4Rule("filter", "FORWARD", "-d", "10.4.0.0/16", "-j", "ACCEPT"),
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestSet(t *testing.T) {
|
|
|
|
for _, tc := range []struct {
|
2019-09-25 11:23:18 +00:00
|
|
|
name string
|
|
|
|
sets [][]Rule
|
|
|
|
out []Rule
|
2020-02-20 11:24:52 +00:00
|
|
|
actions []func(Client) error
|
2019-01-18 01:50:10 +00:00
|
|
|
}{
|
|
|
|
{
|
2019-09-25 11:23:18 +00:00
|
|
|
name: "empty",
|
2019-01-18 01:50:10 +00:00
|
|
|
},
|
|
|
|
{
|
2019-09-25 11:23:18 +00:00
|
|
|
name: "single",
|
|
|
|
sets: [][]Rule{
|
|
|
|
{rules[0]},
|
|
|
|
},
|
|
|
|
out: []Rule{rules[0]},
|
2019-01-18 01:50:10 +00:00
|
|
|
},
|
|
|
|
{
|
2019-09-25 11:23:18 +00:00
|
|
|
name: "two rules",
|
|
|
|
sets: [][]Rule{
|
|
|
|
{rules[0], rules[1]},
|
|
|
|
},
|
|
|
|
out: []Rule{rules[0], rules[1]},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "multiple",
|
|
|
|
sets: [][]Rule{
|
|
|
|
{rules[0], rules[1]},
|
|
|
|
{rules[1]},
|
|
|
|
},
|
|
|
|
out: []Rule{rules[1]},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "re-add",
|
|
|
|
sets: [][]Rule{
|
|
|
|
{rules[0], rules[1]},
|
|
|
|
},
|
|
|
|
out: []Rule{rules[0], rules[1]},
|
2020-02-20 11:24:52 +00:00
|
|
|
actions: []func(c Client) error{
|
|
|
|
func(c Client) error {
|
|
|
|
return rules[0].Delete(c)
|
2019-09-25 11:23:18 +00:00
|
|
|
},
|
2020-02-20 11:24:52 +00:00
|
|
|
func(c Client) error {
|
|
|
|
return rules[1].Delete(c)
|
2019-09-25 11:23:18 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "order",
|
|
|
|
sets: [][]Rule{
|
|
|
|
{rules[0], rules[1]},
|
|
|
|
},
|
|
|
|
out: []Rule{rules[0], rules[1]},
|
2020-02-20 11:24:52 +00:00
|
|
|
actions: []func(c Client) error{
|
|
|
|
func(c Client) error {
|
|
|
|
return rules[0].Delete(c)
|
2019-09-25 11:23:18 +00:00
|
|
|
},
|
|
|
|
},
|
2019-01-18 01:50:10 +00:00
|
|
|
},
|
|
|
|
} {
|
2019-09-25 11:23:18 +00:00
|
|
|
client := &fakeClient{}
|
2021-02-22 12:07:00 +00:00
|
|
|
controller, err := New(WithClients(client, client))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("test case %q: got unexpected error instantiating controller: %v", tc.name, err)
|
|
|
|
}
|
2019-09-25 11:23:18 +00:00
|
|
|
for i := range tc.sets {
|
|
|
|
if err := controller.Set(tc.sets[i]); err != nil {
|
|
|
|
t.Fatalf("test case %q: got unexpected error seting rule set %d: %v", tc.name, i, err)
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
2019-09-25 11:23:18 +00:00
|
|
|
for i, f := range tc.actions {
|
2020-03-12 14:48:01 +00:00
|
|
|
if err := f(controller.v4); err != nil {
|
2019-09-25 11:23:18 +00:00
|
|
|
t.Fatalf("test case %q action %d: got unexpected error %v", tc.name, i, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := controller.reconcile(); err != nil {
|
|
|
|
t.Fatalf("test case %q: got unexpected error %v", tc.name, err)
|
|
|
|
}
|
|
|
|
if len(tc.out) != len(client.storage) {
|
|
|
|
t.Errorf("test case %q: expected %d rules in storage, got %d", tc.name, len(tc.out), len(client.storage))
|
|
|
|
} else {
|
|
|
|
for i := range tc.out {
|
|
|
|
if tc.out[i].String() != client.storage[i].String() {
|
|
|
|
t.Errorf("test case %q: expected rule %d in storage to be equal: expected %v, got %v", tc.name, i, tc.out[i], client.storage[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(tc.out) != len(controller.rules) {
|
|
|
|
t.Errorf("test case %q: expected %d rules in controller, got %d", tc.name, len(tc.out), len(controller.rules))
|
|
|
|
} else {
|
|
|
|
for i := range tc.out {
|
|
|
|
if tc.out[i].String() != controller.rules[i].String() {
|
|
|
|
t.Errorf("test case %q: expected rule %d in controller to be equal: expected %v, got %v", tc.name, i, tc.out[i], controller.rules[i])
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCleanUp(t *testing.T) {
|
|
|
|
for _, tc := range []struct {
|
|
|
|
name string
|
|
|
|
rules []Rule
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "empty",
|
|
|
|
rules: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "single",
|
|
|
|
rules: []Rule{rules[0]},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "multiple",
|
|
|
|
rules: []Rule{rules[0], rules[1]},
|
|
|
|
},
|
|
|
|
} {
|
2019-09-25 11:23:18 +00:00
|
|
|
client := &fakeClient{}
|
2021-02-22 12:07:00 +00:00
|
|
|
controller, err := New(WithClients(client, client))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("test case %q: got unexpected error instantiating controller: %v", tc.name, err)
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
if err := controller.Set(tc.rules); err != nil {
|
|
|
|
t.Fatalf("test case %q: Set should not fail: %v", tc.name, err)
|
|
|
|
}
|
2019-09-25 11:23:18 +00:00
|
|
|
if len(client.storage) != len(tc.rules) {
|
|
|
|
t.Errorf("test case %q: expected %d rules in storage, got %d rules", tc.name, len(tc.rules), len(client.storage))
|
|
|
|
}
|
2019-01-18 01:50:10 +00:00
|
|
|
if err := controller.CleanUp(); err != nil {
|
|
|
|
t.Errorf("test case %q: got unexpected error: %v", tc.name, err)
|
|
|
|
}
|
2019-09-25 11:23:18 +00:00
|
|
|
if len(client.storage) != 0 {
|
|
|
|
t.Errorf("test case %q: expected storage to be empty, got %d rules", tc.name, len(client.storage))
|
2019-01-18 01:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|