Skip to content

Commit

Permalink
Merge pull request #754 from glazychev-art/ipsec_test
Browse files Browse the repository at this point in the history
Add ipsec tests
  • Loading branch information
denis-tingaikin authored Dec 15, 2022
2 parents 52bc4d7 + 1d76c0d commit 3afc7f9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
echo CLUSTER_CIDR="172.18.1.128/25" >> $GITHUB_ENV
- name: Integration tests
run: |
go test -count 1 -timeout 2h10m -race -v ./tests_single
go test -count 1 -timeout 2h30m -race -v ./tests_single
env:
ARTIFACTS_DIR: ${{ matrix.image }}-logs/${{ matrix.image }}
working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }}
Expand Down
29 changes: 29 additions & 0 deletions tests_single/ipsec_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright (c) 2022 Cisco and/or its affiliates.
//
// SPDX-License-Identifier: Apache-2.0
//
// 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 single

import (
"testing"

"github.com/stretchr/testify/suite"

"github.com/networkservicemesh/integration-tests/suites/ipsec_mechanism"
)

func TestRunIpsecSuite(t *testing.T) {
suite.Run(t, new(ipsec_mechanism.Suite))
}

0 comments on commit 3afc7f9

Please sign in to comment.