Skip to content

Commit

Permalink
Merge pull request #28658 from pperiyasamy/ipsec-e2e-tests
Browse files Browse the repository at this point in the history
SDN-4168: Add IPsec e2e tests
  • Loading branch information
openshift-merge-bot[bot] committed May 7, 2024
2 parents 75f7e06 + 06e240d commit 539491f
Show file tree
Hide file tree
Showing 81 changed files with 11,132 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ require (
golang.org/x/crypto v0.16.0
golang.org/x/net v0.19.0
golang.org/x/oauth2 v0.10.0
golang.org/x/sync v0.5.0
google.golang.org/grpc v1.58.3
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.4.0
Expand Down Expand Up @@ -251,7 +252,6 @@ require (
go.uber.org/zap v1.24.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
Expand Down
14 changes: 14 additions & 0 deletions pkg/testsuites/standard_suites.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,20 @@ var staticSuites = []ginkgo.TestSuite{
return strings.Contains(name, "External Storage [Driver:") && !strings.Contains(name, "[Disruptive]")
},
},
{
Name: "openshift/network/ipsec",
Description: templates.LongDesc(`
This test suite performs IPsec e2e tests covering control plane and data plane for east west and north south traffic scenarios.
`),
Matches: func(name string) bool {
if isDisabled(name) {
return false
}
return strings.Contains(name, "[Suite:openshift/network/ipsec")
},
Parallelism: 1,
TestTimeout: 60 * time.Minute,
},
{
Name: "openshift/network/stress",
Description: templates.LongDesc(`
Expand Down

0 comments on commit 539491f

Please sign in to comment.