mirror of
https://github.com/alibaba/higress.git
synced 2026-02-24 04:30:51 +08:00
91 lines
2.6 KiB
Go
91 lines
2.6 KiB
Go
// Copyright (c) 2022 Alibaba Group Holding Ltd.
|
|
//
|
|
// 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 test
|
|
|
|
import (
|
|
"flag"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
v1 "k8s.io/api/networking/v1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/config"
|
|
|
|
"github.com/alibaba/higress/test/e2e/conformance/tests"
|
|
"github.com/alibaba/higress/test/e2e/conformance/utils/flags"
|
|
"github.com/alibaba/higress/test/e2e/conformance/utils/suite"
|
|
)
|
|
|
|
var isWasmPluginTest = flag.Bool("isWasmPluginTest", false, "")
|
|
|
|
func TestHigressConformanceTests(t *testing.T) {
|
|
flag.Parse()
|
|
|
|
cfg, err := config.GetConfig()
|
|
require.NoError(t, err)
|
|
|
|
client, err := client.New(cfg, client.Options{})
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, v1.AddToScheme(client.Scheme()))
|
|
|
|
cSuite := suite.New(suite.Options{
|
|
Client: client,
|
|
IngressClassName: *flags.IngressClassName,
|
|
Debug: *flags.ShowDebug,
|
|
CleanupBaseResources: *flags.CleanupBaseResources,
|
|
GatewayAddress: "localhost",
|
|
})
|
|
|
|
cSuite.Setup(t)
|
|
var higressTests []suite.ConformanceTest
|
|
|
|
if *isWasmPluginTest {
|
|
higressTests = []suite.ConformanceTest{
|
|
tests.WasmPluginsRequestBlock,
|
|
}
|
|
} else {
|
|
higressTests = []suite.ConformanceTest{
|
|
tests.HTTPRouteSimpleSameNamespace,
|
|
tests.HTTPRouteHostNameSameNamespace,
|
|
tests.HTTPRouteRewritePath,
|
|
tests.HTTPRouteRewriteHost,
|
|
tests.HTTPRouteCanaryHeader,
|
|
tests.HTTPRouteEnableCors,
|
|
tests.HTTPRouteEnableIgnoreCase,
|
|
tests.HTTPRouteMatchMethods,
|
|
tests.HTTPRouteMatchQueryParams,
|
|
tests.HTTPRouteMatchHeaders,
|
|
tests.HTTPRouteAppRoot,
|
|
tests.HTTPRoutePermanentRedirect,
|
|
tests.HTTPRoutePermanentRedirectCode,
|
|
tests.HTTPRouteTemporalRedirect,
|
|
tests.HTTPRouteSameHostAndPath,
|
|
tests.HTTPRouteCanaryHeaderWithCustomizedHeader,
|
|
tests.HTTPRouteWhitelistSourceRange,
|
|
tests.HTTPRouteCanaryWeight,
|
|
tests.HTTPRouteMatchPath,
|
|
tests.HttpForceRedirectHttps,
|
|
tests.HttpRedirectAsHttps,
|
|
tests.HTTPRouteRequestHeaderControl,
|
|
tests.HTTPRouteDownstreamEncryption,
|
|
tests.HTTPRouteFullPathRegex,
|
|
tests.HTTPRouteHttp2Rpc,
|
|
}
|
|
}
|
|
|
|
cSuite.Run(t, higressTests)
|
|
}
|