Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FV test for deleting an iptables insert rule. #10100

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions felix/fv/iptables_disruption_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
// Copyright (c) 2023 Tigera, Inc. All rights reserved.
//
// 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.

//go:build fvtests

package fv_test

import (
"fmt"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
client "github.com/projectcalico/calico/libcalico-go/lib/clientv3"
"strings"

"github.com/projectcalico/calico/felix/fv/connectivity"
"github.com/projectcalico/calico/felix/fv/infrastructure"
"github.com/projectcalico/calico/felix/fv/workload"
"github.com/projectcalico/calico/libcalico-go/lib/apiconfig"
)

var _ = infrastructure.DatastoreDescribe("iptables disruption tests", []apiconfig.DatastoreType{apiconfig.Kubernetes}, func(getInfra infrastructure.InfraFactory) {
var (
tc infrastructure.TopologyContainers
infra infrastructure.DatastoreInfra
client client.Interface
w [3]*workload.Workload
cc *connectivity.Checker
)

BeforeEach(func() {
if NFTMode() {
Skip("This test is not yet supported in NFT mode")
}

infra = getInfra()
opts := infrastructure.DefaultTopologyOptions()
opts.ExtraEnvVars["FELIX_IptablesRefreshInterval"] = "15"
tc, client = infrastructure.StartNNodeTopology(1, opts, infra)
_ = client
for i := range w {
w[i] = workload.Run(
tc.Felixes[0],
fmt.Sprintf("w%d", i),
"default",
fmt.Sprintf("10.65.0.%d", i+2),
"8080",
"tcp",
)
w[i].ConfigureInInfra(infra)
}
cc = &connectivity.Checker{}
_ = cc
})

It("should restore a deleted iptables insert rule", func() {
var iptablesRule string
findRule := func() string {
for _, rule := range tc.Felixes[0].IPTablesChains("nat")["POSTROUTING"] {
if strings.Contains(rule, "cali-POSTROUTING") {
iptablesRule = rule
return rule
}
}
return ""
}
Eventually(findRule, "10s", "100ms").Should(Not(BeEmpty()))

// Delete the rule
parts := strings.Split(iptablesRule, " ")
for i, part := range parts {
parts[i] = strings.Trim(part, `"`)
}
parts = append([]string{"iptables", "-t", "nat", "-D"}, parts[1:]...)
tc.Felixes[0].Exec(parts...)
Expect(findRule()).To(BeEmpty())

Eventually(findRule, "20s", "100ms").Should(Not(BeEmpty()))
})

AfterEach(func() {
if CurrentGinkgoTestDescription().Failed {
for _, felix := range tc.Felixes {
if NFTMode() {
logNFTDiags(felix)
} else {
_ = felix.ExecMayFail("iptables-save", "-c")
_ = felix.ExecMayFail("ipset", "list")
}
}
}
tc.Stop()
if CurrentGinkgoTestDescription().Failed {
infra.DumpErrorData()
}
infra.Stop()
})
})